@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

body { 
	margin: 0;
	padding: 0;
	font-family: "Lora", serif;
	font-size: 14px;
	color: #1d2020;
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

body.loading {
    height: 100vh;
    overflow-y: scroll;
    position: fixed;
    width: 100%;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a { 
	outline: none; 
	text-decoration: none;
}
a:active {
    outline: none;
}

input {
	outline: none;
    margin: 0;
    padding: 0;
}
img {
    display: block;
    max-width: 100%;
}
img, img a {
	border: none;
}
a:hover {
	text-decoration: none;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.border-radius {
    border-radius: 10px;
}
h1 {
    color: #fff;
	font-size: 50px;
    text-align: center;
    text-transform: uppercase;
	padding: 0;
	margin: 0 auto;
    max-width: 700px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);	
}
.home-page-title {
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .home-page-title {
        white-space: normal;
    }
}
h2 {
	color: #95c93f;
    font-size: 44px;
    font-weight: bold;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
    line-height: 1.5;
}
.text-center {
    text-align: center;
}

.wrapper {
	position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-wrapper {
    padding-top: 70px;
}
.scroll-top {
	cursor: pointer;
    font-size: 24px;
	position: fixed;
	right: 20px;
  	bottom: 20px;
  	opacity: 0;
	z-index: 9999;
}
.scroll-top.fadeIn {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease-in-out;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 0.5s ease-in-out 3s forwards;
}

.loading-text {
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%) scale(0);
    font-size: 60px;
    color: #fff;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    will-change: transform;
    animation: growText 2s ease-in-out forwards, 
               fadeOutText 0.5s ease-in-out 2.5s forwards;
}

@keyframes growText {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes fadeOutText {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loading-logo {
    width: 0;
    height: 0;
    opacity: 0;
    animation: growLogo 2s ease-in-out forwards;
}

@keyframes growLogo {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    100% {
        width: 350px;
        height: auto;
        opacity: 1;
    }
}


/* Header */
header {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    height: 100px;
    padding: 15px 0 5px 0;
    z-index: 9999;
}
.logo {
    float: left;
    margin-top: 0;
}
.logo img {
    width: 200px;       
}
nav {
    float: right;
    margin-top: 25px;
}
nav li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
    position: relative;
}
nav li a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
nav li a:hover, nav li a.active {
    color: #95c93f;
}

/* nav sub-menu */
nav li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 10px 0;
}

nav li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

nav li .sub-menu li {
    display: block;
    margin: 0;
    padding: 8px 15px;
}

nav li .sub-menu li a {
    font-size: 14px;
    color: #fff;
    display: block;
    white-space: nowrap;
}

nav li .sub-menu li a:hover, nav li .sub-menu li a.active {
    color: #95c93f;
}

/* Add indicator for dropdown menu items */
nav li.has-dropdown > a:after {
    content: "\f107"; /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.mobile-menu-button {
    display: none;
    position: absolute;
    text-indent: -9999px;
    background: url('../images/mobile_menu_icon.png') 0 0 no-repeat;
    background-size: contain;
    width: 23px;
    height: 19px;
    top: 25px;
    right: 20px;
}
.mobile-menu-button.close {
    background: url('../images/mobile_menu_icon_close.png') 0 0 no-repeat;
    background-size: contain;
}

/* Home page */
.hero-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    text-align: center;
}
.hero-area-container {
    position: relative;
}
.hero-area-container:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-area-container.half-screen li {
    height: 60vh;
}
.btn {
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 3px;
    color: #95c93f;
    font-size: 20px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    margin-top: 20px;
    transition: all .3s ease;
}
.btn:hover {
    background-color: #95c93f;
    color: #fff;
}
.hero-area-container li {
    position: relative;
    height: 100vh;
}
.hero-area-container li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.intro {
    background-color: #95c93f;
    padding: 40px 0;
}
.intro h2 {
    color: #fff;
    font-size: 26px;
    margin: 0;
    text-align: center;
    text-transform: none;
}

.home-texts {
    font-size: 18px;
    padding: 50px 0;
}
.home-texts-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.texts {
    max-width: 60%;
}

.biography {
    background-color: #f5f8ed;
    padding: 50px 0 10px;
}
.biography p {
    font-size: 16px;
}

.about-texts {
    background-color: #f5f8ed;
    padding: 75px 0;
}
.about-texts .flex-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.about-texts .flex-row {
    display: flex;
    align-items: center;
    gap: 30px;
}
.about-texts .flex-row.reverse {
    flex-direction: row-reverse;
}
.about-texts .flex-item.image {
    flex: 0 0 40%; 
}
.about-texts .flex-item.text {
    flex: 1;
}
.about-texts p {
    font-size: 16px;
}
.about-texts img {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 100%;
}
.about-texts h3 {
    font-size: 22px;
    margin: 50px 0 0;
    text-align: center;
}

/* advantages */
.colored-section {
    background-color: #f5f8ed;
    padding: 50px 0;	
}
p.big-centered {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

/* Details page */
.details-page {
    padding: 75px 0;
}
.details-page h3 {
    margin-top: 40px;
}
.details-page li {
    margin-bottom: 10px;
}
.details-page li:last-child {
    margin-bottom: 0;
}
.details-page img {
    border-radius: 10px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
h3.details-title {
    margin-top: 16px;
}

/* FAQ Accordion Styles */
.accordion-container {
    margin: 30px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-question {
    background-color: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background-color 0.3s ease;
}

.accordion-question:hover {
    background-color: #eaeaea;
}

.accordion-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
}

.accordion-item.active .accordion-question::after {
    content: '−';
}

.accordion-answer {
    background-color: #fff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.accordion-item.active .accordion-answer {
    padding: 15px 20px;
    max-height: 1000px;
    opacity: 1;
}

.accordion-answer p {
    margin-top: 0;
}

.accordion-answer ul {
    padding-left: 20px;
}

.accordion-answer li {
    margin-bottom: 8px;
    list-style-type: disc;
}


/* Footer */
footer {
    border-top: 1px #000 solid;
    background-color: #95c93f;
}
footer ul {
    margin: 30px 0;
}
footer ul li {
    margin: 10px 0;
}
footer ul li a {
    color: #000;
}
footer ul li a:hover, footer ul li a.active {
    color: #fff;
}
.footer-list-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.first-list {
    max-width: 300px;
}
.footer-logo {
    display: inline-block;
    width: 200px;
}
.slogan {
    color: #fff;
    font-style: italic;
    text-align: center;
}

.allrights {
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 20px 0;
}

/* Contacts */
.contacts {
    background-color: #f5f8ed;
    padding: 50px 0;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 2;
    min-width: 400px;
}

.contact-info h3, .contact-form h3, .map-container h3 {
    color: #95c93f;
    font-size: 24px;
    margin-bottom: 20px;
}
.contact-info h4 {
    font-size: 16px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    width: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group label a {
    color: #95c93f;
    text-decoration: underline;
}
.form-group label a:hover {
    text-decoration: none;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.form-group input[type="checkbox"] + label {
    display: inline;
    font-size: 14px;
}

.treatment-options .form-check {
    margin-bottom: 5px;
}
.treatment-options .form-check:first-child {
    margin-top: 10px;
}
.treatment-options .form-check:last-child {
    margin-bottom: 0;
}

.btn {
    background-color: #95c93f;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #27ae60;
}

#formStatus {
    margin-top: 15px;
}

#formStatus .success {
    color: #27ae60;
}

#formStatus .error {
    color: #e74c3c;
}

#formStatus .processing {
    color: #f39c12;
}

.map {
    margin-top: 30px;
}
.map iframe {
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    height: 400px;
}

/* Three Squares Section */
.three-squares-section {
    padding: 75px 0;
    background-color: #f5f8ed;
}

.three-squares-section h2 {
    margin-top: 0;
    text-align: center;
}

.squares-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.square {
    flex: 1;
    min-width: 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.square .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.square:hover .overlay {
    opacity: 1;
}

.square:hover img {
    transform: scale(1.1);
}

.square .overlay h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.square .overlay .btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.square .overlay .btn:hover {
    background-color: #45a049;
}

/* Additional Services Section */
.additional-services-section {
    padding: 75px 0;
    background-color: #f9f9f9;
}
.additional-services-section  h2 {
    margin-top: 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 32px;
    color: #4CAF50;
    margin-bottom: 15px;
    display: block;
}

.service-item h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.more-services {
    background-color: #4CAF50;
}

.more-services i, .more-services h3 {
    color: white;
}

/* Parallax image */
.parallax-window {
    background: transparent;
    display: flex;
    align-items: center;
    min-height: 500px;
    position: relative;
}
.parallax-window:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.parallax-window .wrapper {
    position: relative;
    z-index: 2;
}
.parallax-content h2 {
    color: #fff;
    font-size: 36px;
}
.parallax-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: normal;
    margin: 0;
} 

/* Pricing Page Styles */
.prices-page {
    padding: 60px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.pricing-header .subtitle {
    font-size: 22px;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-header .description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Lawn Size Selector */
.lawn-size-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.size-option {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.size-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.size-icon {
    font-size: 32px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.size-option h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.size-option p {
    color: #666;
    font-size: 16px;
}

/* Service Highlight */
.service-highlight {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.highlight-content {
    text-align: center;
}

.highlight-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.highlight-content .price {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.highlight-content .price span {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
}

.highlight-content ul {
    list-style: none;
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
}

.highlight-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #555;
}

.highlight-content ul li:last-child {
    border-bottom: none;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    margin: 15px auto 0;
}

/* Pricing Plans */
.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-plan {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-plan.featured {
    transform: scale(1.05);
    border: 2px solid #4CAF50;
    z-index: 1;
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.plan-price {
    font-size: 18px;
    color: #4CAF50;
    font-weight: 700;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
    color: #888;
}

.plan-features {
    padding: 30px 20px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.plan-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.plan-features ul li:last-child {
    border-bottom: none;
}

.plan-footer {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    height: 100%;
}

.plan-footer .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-footer .btn:hover {
    background-color: #3d8b40;
}
.pricing-notes {
    text-align: center;
}

/* Terms */
.terms {
    padding: 120px 0 80px;
    background-color: #f9f9f9;
}

.terms .page-title {
    font-size: 36px;
    color: #2e7d32;
    text-align: center;
    margin: 40px auto;
    font-weight: 700;
}

.terms-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.last-updated {
    color: #757575;
    font-style: italic;
    margin-bottom: 30px;
    text-align: right;
    font-size: 14px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.terms-section {
    margin-bottom: 30px;
}
.terms-section h2 {
    color: #2e7d32;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.terms-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.terms-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.terms-section li:before {
    content: "•";
    color: #2e7d32;
    position: absolute;
    left: 0;
}

.terms-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.terms-footer .contact-info {
    margin-top: 25px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
}

.terms-footer .company-name {
    font-weight: 700;
    color: #2e7d32;
    margin: 10px 0;
}

.terms-footer .contact-info a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-footer.contact-info a:hover {
    color: #1b5e20;
    text-decoration: underline;
}


/* Responsive */
@media screen and (max-width: 1600px) { 
    h1 {
        font-size: 3.5vw;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lawn-size-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
}

@media screen and (max-width: 991px) {
    .logo {
        display: inline-block;
        float: none;
    }
    header {
        height: 100px;
    }
    nav {
        display: block;
        float: none;
        background-color: #000;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    nav.nav-open {
        height: calc(100vh - 80px);
        opacity: 1;
    }
    nav ul li {
        border-bottom: 1px solid #ccc;
        float: none;
        display: block;
        margin: 20px;
        padding-bottom: 10px;
    }
    nav ul li:last-child {
        border-bottom: none;
    }
    nav li .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        display: none;
        padding: 0;
        margin-top: 10px;
        margin-left: 15px;
    }
    
    nav li.has-dropdown > a:after {
        content: "\f105";
        float: right;
    }
    
    nav li.has-dropdown.open > a:after {
        content: "\f107";
    }
    
    nav li.has-dropdown.open .sub-menu {
        display: block;
    }
    
    nav li .sub-menu li {
        padding: 8px 0;
    }
    
    nav li .sub-menu li:last-child {
        padding-bottom: 0;
    }
    .mobile-menu-button {
        display: block;
    }
    .hero-container {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 28px;
    }
    .home-texts-container {
        flex-direction: column;
        gap: 20px;
    }
    .texts {
        max-width: 100%;
    }
    .about-texts .flex-row, .about-texts .flex-row.reverse {
        flex-direction: column;
    }
    .about-texts.flex-item.image {
        flex: 0 0 100%;
    }
    .flex-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    footer ul {
        margin: 10px 0;
    }
    .footer-list-container {
        flex-direction: column;
        padding-bottom: 10px;
    }
    .footer-info ul li {
        display: block;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-form, .contact-info {
        min-width: 100%;
    }
    .squares-container {
        flex-direction: column;
    }
    .square {
        flex: auto;
        min-height: auto;
        margin-bottom: 20px;
    }
    .square .overlay {
        opacity: 1;
    }
    
    .square img {
        transform: scale(1.1);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lawn-size-selector {
        grid-template-columns: 1fr;
    }
    .terms {
        padding: 100px 0 60px;
    }
    .terms .page-title {
        font-size: 28px;
    }
    
    .terms-content {
        padding: 25px;
    }
    
    .terms-section h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-info {
        float: none;
        margin-left: 0;
    }
    .footer-info ul {
        margin-top: 0;
    }
}