:root {
    --primary-green: #7BC342;
    --dark-teal: #1a4d4d;
    --cream: #faf8f5;
    --white: #ffffff;
    --dark-gray: #2c3e50;
    --medium-gray: #6c757d;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
    opacity: 1 !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6ba838;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f5e0 0%, #f5f7f6 100%);
    color: var(--dark-gray);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 195, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--dark-gray);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
    color: var(--medium-gray);
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.postcode-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background: white;
    transition: border-color 0.3s ease;
}

.postcode-input:focus {
    border-color: var(--primary-green);
}

.btn-cta {
    background: var(--primary-green);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #6ba838;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 195, 66, 0.3);
}

.hero-note {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Postcode Message */
.postcode-message {
    margin-top: 20px;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: slideDown 0.4s ease;
}

.postcode-message.success {
    background: rgba(123, 195, 66, 0.15);
    border: 2px solid var(--primary-green);
    color: var(--dark-gray);
}

.postcode-message.error {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    color: var(--dark-gray);
}

.postcode-message strong {
    font-weight: 600;
    color: var(--primary-green);
}

.postcode-message.error strong {
    color: #ff6b6b;
}

.postcode-message a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
    display: block !important;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 20px 0;
}

.feature-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.feature-description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-benefit {
    font-size: 16px;
    color: var(--dark-gray);
    background: rgba(123, 195, 66, 0.1);
    padding: 16px 20px;
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-benefit strong {
    color: var(--primary-green);
    font-weight: 600;
}

.feature-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-link:hover {
    transform: translateX(5px);
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: block !important;
}

.feature-image:hover img {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* Services Grid */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
}

.service-image-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-image-circle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.service-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    display: block !important;
}

.service-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

/* Cleaning Highlight Section */
.cleaning-highlight {
    padding: 100px 0;
    background: var(--white);
}

.cleaning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cleaning-text {
    padding-right: 20px;
}

.cleaning-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.cleaning-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cleaning-features li {
    font-size: 16px;
    color: var(--dark-gray);
    padding: 12px 0 12px 32px;
    position: relative;
    line-height: 1.6;
}

.cleaning-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 20px;
}

.cleaning-gain {
    margin-top: 32px;
    font-size: 17px;
    color: var(--dark-gray);
    background: rgba(123, 195, 66, 0.15);
    padding: 20px 24px;
    border-left: 4px solid var(--primary-green);
    border-radius: 4px;
    line-height: 1.7;
}

.cleaning-gain strong {
    color: var(--primary-green);
    font-weight: 600;
}

.cleaning-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.cleaning-image-main {
    grid-column: 1 / -1;
}

.cleaning-image-main img,
.cleaning-image-secondary img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: block !important;
}

.cleaning-image-main:hover img,
.cleaning-image-secondary:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cleaning-image-secondary {
    grid-column: 1 / -1;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(123, 195, 66, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-label {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-type {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

.pricing-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
}

.price-period {
    font-size: 18px;
    color: var(--medium-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--dark-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 12px;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #6ba838;
    transform: translateY(-2px);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    margin-top: 60px;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.guarantee-text p {
    color: var(--medium-gray);
    font-size: 15px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-quote::before {
    content: '"';
    font-size: 40px;
    color: var(--primary-green);
    line-height: 0;
}

.author-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: var(--medium-gray);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-green);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 16px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--cream);
}

.final-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-size: 48px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-cta-large {
    background: var(--primary-green);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
}

.btn-cta-large:hover {
    background: #6ba838;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(123, 195, 66, 0.3);
}

.cta-features {
    margin-top: 20px;
    font-size: 14px;
    color: var(--medium-gray);
}

.cta-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 1 !important;
    display: block !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 80px 0 0;
    border-top: 4px solid #7ED957;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Brand Section */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    object-fit: contain;
    opacity: 1 !important;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Quick Contact in Brand Section */
.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 18px;
    filter: grayscale(1) brightness(2);
}

.contact-link {
    color: #7ED957 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer Headings */
.footer-heading {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #7ED957;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #7ED957;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Address Section */
.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer-address p {
    margin: 4px 0;
}

.footer-address strong {
    color: #ffffff;
    font-weight: 600;
}

/* Social Section */
.footer-social {
    margin-top: 30px;
}

.social-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #7ED957;
    border-color: #7ED957;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin: 0 -50vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.6;
}

.footer-legal strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .feature-card,
    .final-cta .container,
    .cleaning-content {
        grid-template-columns: 1fr;
    }

    .feature-card.reverse {
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cleaning-images {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .feature-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .service-image-circle {
        width: 120px;
        height: 120px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure all images are visible */
img {
    opacity: 1 !important;
    display: block;
}

.feature-card,
.service-item,
.pricing-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}
