 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background-color: #1a1a1a;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
            color: white;
            padding: .5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #90c690;
        }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background-image: 
                linear-gradient(rgba(45, 90, 45, 0.6), rgba(74, 124, 74, 0.6)),
                url('https://palmettolawns.com/assets/hero.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            text-align: center;
            padding: 140px 0 100px;
            margin-top: 70px;
            position: relative;
            min-height: 60vh;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(144,198,144,0.25)" d="M0 400c200-50 400-50 600 0s400 50 600 0v200H0z"/></svg>');
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Impact', 'Arial Black', 'Trebuchet MS', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            line-height: 1.1;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

        .hero p {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
            line-height: 1.5;
        }

        .cta-button {
            background: linear-gradient(135deg, #90c690 0%, #4a7c4a 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #7bb37b 0%, #2d5a2d 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(144, 198, 144, 0.4);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #242424;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #90c690;
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: #2d2d2d;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            border: 2px solid #3a5a3a;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(144, 198, 144, 0.2);
            border-color: #90c690;
        }

        .service-card h3 {
            color: #90c690;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card .price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #4a7c4a;
            margin-bottom: 1rem;
        }

        .service-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #404040;
            color: #d0d0d0;
        }

        .service-list li:before {
            content: "✅";
            margin-right: 10px;
        }

        .addon-services {
            background: #1f1f1f;
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
            border: 1px solid #3a5a3a;
        }

        .addon-services h3 {
            color: #90c690;
            margin-bottom: 1rem;
        }

        .addon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .addon-item {
            background: #2d2d2d;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #90c690;
        }

        .addon-item strong {
            color: #90c690;
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: linear-gradient(to right, rgba(31, 31, 31, 0.95) 0%, rgba(31, 31, 31, 0.7) 50%, rgba(31, 31, 31, 0.3) 80%, transparent 100%), 
                        url('/assets/about.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0d0d0;
        }

        .about-text h2 {
            color: #90c690;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .about-image {
            text-align: center;
            display: flex;
			height: 450px; 
			width: auto;
            align-items: center;
            justify-content: center;
        }

        .about-image img {
            height: 450px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        /* Service Areas */
        .service-areas {
            padding: 80px 0;
            background: #242424;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .service-areas::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path fill="rgba(144,198,144,0.1)" d="M0 200c300-100 600 100 1200 0v200H0z"/></svg>');
            background-size: cover;
            background-position: center;
            pointer-events: none;
        }

        .service-areas .container {
            position: relative;
            z-index: 2;
        }

        .service-areas h2 {
            color: #90c690;
            margin-bottom: 1rem;
        }

        .service-areas p {
            color: #d0d0d0;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .areas-hero {
            background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .areas-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(144,198,144,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .areas-hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(74,124,74,0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        .areas-hero-content {
            position: relative;
            z-index: 2;
        }

        .areas-hero h3 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .areas-hero p {
            color: #e0e0e0;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .area-card {
            background: linear-gradient(145deg, #2d2d2d 0%, #1f1f1f 100%);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #3a5a3a;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .area-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(144,198,144,0.1), transparent);
            transition: left 0.5s ease;
        }

        .area-card:hover::before {
            left: 100%;
        }

        .area-card:hover {
            background: linear-gradient(145deg, #3a5a3a 0%, #2d5a2d 100%);
            border-color: #90c690;
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(144,198,144,0.2);
        }

        .area-card .area-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .area-card h4 {
            color: #90c690;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .area-card p {
            color: #b0b0b0;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.4;
        }

        .coverage-note {
            background: linear-gradient(135deg, #1f1f1f 0%, #2d2d2d 100%);
            color: #90c690;
            font-style: italic;
            margin-top: 2rem;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #3a5a3a;
            position: relative;
            overflow: hidden;
        }

        .coverage-note::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #90c690, #4a7c4a, #2d5a2d, #4a7c4a, #90c690);
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .coverage-note strong {
            color: white;
            font-size: 1.1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
            color: white;
            overflow: hidden;
        }

        .testimonials-carousel {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            margin-top: 3rem;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 2rem;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            max-width: 800px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.3rem;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: bold;
            color: #90c690;
            font-size: 1.1rem;
        }

        .testimonial-rating {
            color: #ffd700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 2rem;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #90c690;
            transform: scale(1.2);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 2.5rem;
            padding: 15px 20px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(144,198,144,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-prev {
            left: -80px;
        }

        .carousel-next {
            right: -80px;
        }

        @media (max-width: 768px) {
            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-card p {
                font-size: 1.1rem;
            }

            .carousel-nav {
                display: none;
            }

            .testimonial-slide {
                padding: 0 1rem;
            }
			    .nav-links {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
			flex-direction: column;
			padding: 1rem 0;
			box-shadow: 0 5px 15px rgba(0,0,0,0.3);
			border-radius: 0 0 15px 15px;
			gap: 0;
		}
		
		.nav-links.mobile-open {
			display: flex;
		}
		
		.nav-links li {
			margin: 0;
			border-bottom: 1px solid rgba(255,255,255,0.1);
		}
		
		.nav-links li:last-child {
			border-bottom: none;
		}
		
		.nav-links a {
			display: block;
			padding: 1rem 2rem;
			transition: background 0.3s;
		}
		
		.nav-links a:hover {
			background: rgba(255,255,255,0.1);
		}
		    
			/* Customer Portal button mobile styling */
		.nav-links li:last-child a {
			background: #90c690 !important;
			color: #2d5a2d !important;
			padding: 6px 12px !important; /* Much smaller padding */
			border-radius: 15px !important; /* Smaller border radius */
			font-weight: 600 !important;
			font-size: 0.9rem !important; /* Slightly smaller text */
			text-align: center;
			margin: 0 auto;

			width: auto !important;
		}
    
    .nav-links li:last-child a:hover {
        background: #7bb37b !important;
    }
		
		/* Make sure nav container has relative positioning */
		nav {
			position: relative;
		}
        }

        /* Contact Form */
        .contact {
            padding: 80px 0;
            background: #1f1f1f;
        }

        .contact h2 {
            color: #90c690;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            background: #2d2d2d;
            padding: 2.5rem;
            border-radius: 15px;
            border: 2px solid #3a5a3a;
            height: fit-content;
        }

        .contact-info h3 {
            color: #90c690;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }

        .contact-info p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #d0d0d0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #1f1f1f;
            border-radius: 8px;
            border-left: 4px solid #90c690;
            text-align: left;
        }

        .contact-item-icon {
            font-size: 1.5rem;
            color: #90c690;
            flex-shrink: 0;
            min-width: 30px;
            text-align: center;
        }

        .contact-item div {
            flex: 1;
            min-width: 0;
        }

        .contact-form {
            background: #2d2d2d;
            padding: 2.5rem;
            border-radius: 15px;
            border: 2px solid #3a5a3a;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #90c690;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #404040;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: #1f1f1f;
            color: #e0e0e0;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #90c690;
            background: #242424;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .services-dropdown {
            position: relative;
        }

        .services-toggle {
            width: 100%;
            padding: 12px;
            border: 2px solid #404040;
            border-radius: 8px;
            background: #1f1f1f;
            color: #e0e0e0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: border-color 0.3s;
        }

        .services-toggle:hover,
        .services-toggle.active {
            border-color: #90c690;
        }

        .services-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #2d2d2d;
            border: 2px solid #90c690;
            border-top: none;
            border-radius: 0 0 8px 8px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            z-index: 10;
        }

        .services-options.active {
            max-height: 300px;
        }

        .services-options-inner {
            padding: 1rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            max-height: 250px;
            overflow-y: auto;
        }

        .services-options label {
            font-weight: normal !important;
            color: #d0d0d0 !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .services-options label:hover {
            background: #1f1f1f;
        }

        .services-options input[type="checkbox"] {
            width: auto !important;
            margin: 0;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #4a7c4a 0%, #90c690 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(144, 198, 144, 0.3);
        }

        /* Footer */
        footer {
            background: #2d5a2d;
            color: white;
            text-align: center;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #90c690;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #90c690;
        }

        .footer-bottom {
            border-top: 1px solid #4a7c4a;
            padding-top: 2rem;
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .logo img {
                height: 35px;
            }

            .hero {
                padding: 120px 0 80px;
                min-height: 50vh;
            }

            .hero h1 {
                font-size: 2.8rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }

            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

		   .about {
				padding: 60px 0; /* Reduce top/bottom padding */
			}
			
			.about-content {
				grid-template-columns: 1fr;
				text-align: center;
				padding: 0 1rem; /* Add horizontal padding */
			}
			
			.about-text {
				font-size: 1rem; /* Slightly smaller font */
				line-height: 1.6; /* Tighter line height */
				padding: 0 0.5rem; /* Extra padding for text */
				max-width: 100%; /* Ensure it doesn't exceed container */
				word-wrap: break-word; /* Break long words if needed */
			}
			
			.about-text h2 {
				font-size: 1.8rem; /* Smaller heading */
				margin-bottom: 1rem;
				padding: 0 0.5rem; /* Padding for heading too */
			}
			
			.about-text p {
				margin-bottom: 1rem;
				padding: 0; /* Remove any inherited padding */
			}
			
			.about-image {
				margin-top: 2rem;
				height: 250px;
			}
			
			.about-image img {
				height: 250px; /* Smaller image on mobile */
				max-width: 90%; /* Ensure image doesn't overflow */
			}
			
			/* Ensure container has proper mobile padding */
			.about .container {
				padding: 0 1rem;
				max-width: 100%;
				overflow-x: hidden; /* Prevent horizontal scroll */
			}

            .contact-content {
                grid-template-columns: 1fr;
            }

            .contact-info {
                margin-bottom: 2rem;
                padding: 2rem 1rem;
                text-align: left;
            }

            .contact-form {
                padding: 2rem 1rem;
            }

            .contact-item {
                padding: 1rem;
                text-align: left;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .contact-item-icon {
                font-size: 1.3rem;
                margin-top: 2px;
                min-width: 25px;
            }

            .contact-item div {
                text-align: left;
            }

            .contact-item strong {
                display: block;
                margin-bottom: 0.2rem;
            }

            .areas-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .areas-container, .areas-hero {
                padding: 2rem 1rem;
            }

            .area-card {
                text-align: center;
                padding: 1.5rem;
            }

            .area-card .area-icon {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .area-card h4 {
                font-size: 1.2rem;
                margin-bottom: 0.5rem;
            }

            .area-card p {
                font-size: 0.9rem;
            }

            .addon-grid {
                grid-template-columns: 1fr;
            }

            .services-options-inner {
                grid-template-columns: 1fr;
            }

            .coverage-note {
                text-align: center;
                padding: 1.5rem;
            }

            .areas-hero h3 {
                font-size: 1.8rem;
                text-align: center;
            }

            .areas-hero p {
                font-size: 1rem;
                text-align: center;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Success message */
        .success-message {
            background: #2d5a2d;
            color: #90c690;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
            border: 1px solid #90c690;
        }