/* ================================
   HABITAT ROOTS AUSTRALIA - STYLES
   Premium Landscaping Website
   ================================ */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette - Logo Colors */
    --primary-green: #1c6b4b;
    --primary-green-rgb: 28, 107, 75;
    --secondary-green: #1b6a4a;
    --accent-eucalyptus: #f6fe8f;
    --light-sage: #E8F3E8;
    --cream: #FAF7F2;
    --sand: #E6DDD2;
    --earth-brown: #1d6b4b;
    --charcoal: #2C2C2C;
    --dark-grey: #4A4A4A;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --gold-accent: #f6fe90;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--primary-green);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.logo-icon {
    font-size: 1.8rem;
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;   /* 👈 reduced corners (premium rectangle) */
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-green);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-green);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--primary-green);
    color: var(--white) !important;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.2);
}

.nav-cta::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Changed from gradient to background image */
    background-image: url('/assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.6); /* Dark green overlay - adjust opacity as needed */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); /* Adds shadow to title */
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--light-sage);
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); /* Adds shadow to subtitle */
}

/* Ensure buttons have good visibility too */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)); /* Shadow for buttons */
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 3; /* Ensure it's above the overlay */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Black shadow for visibility */
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    margin: 0.5rem auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Black shadow for the line */
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-green);
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-link:hover {
    color: var(--primary-green);
    gap: 0.8rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* === SECTIONS === */
section {
    padding: var(--spacing-xl) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-description,
.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    max-width: 700px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

/* === IMAGE PLACEHOLDERS === */
.image-placeholder,
.section-image > div {
    background: linear-gradient(135deg, var(--accent-eucalyptus) 0%, var(--secondary-green) 100%);
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.image-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* === ABOUT PREVIEW === */
.about-preview {
    background: var(--light-sage);
}

/* === ABOUT PAGE IMAGES === */
.about-story-image,
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.about-story-image:hover,
.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* === SERVICE PAGE IMAGES === */
.service-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    display: block;
}

.service-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* === SERVICES SECTION === */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.services-cta {
    text-align: center;
}

/* === FEATURED PROJECTS === */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: var(--light-grey);
}

.project-card.large {
    grid-column: span 2;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--light-sage);
    font-size: 0.95rem;
}

.projects-cta {
    text-align: center;
}

/* === BENEFITS SECTION === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-eucalyptus);
    line-height: 1;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 1rem;
}

/* === FEATURE LIST === */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--light-sage);
    color: var(--primary-green);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 700;
}

.feature-list h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature-list p {
    margin: 0;
    font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-sage);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer {
    background: var(--charcoal);
    color: var(--light-grey);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.footer-tagline {
    color: var(--accent-eucalyptus);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-location {
    font-size: 0.95rem;
    color: var(--light-grey); /* Ensure it's light grey */
}
.footer-location p {
    color: var(--light-grey); /* Override paragraph color */
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-eucalyptus);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--light-grey); /* Light grey for links */
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-eucalyptus); /* Highlight on hover */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--light-grey);
}

.footer-bottom p {
    color: var(--light-grey);
    margin-bottom: 0.5rem;
}

.footer-bottom .designer-link {
    color: var(--accent-eucalyptus);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-bottom .designer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Make sure the pin icon is visible */
.footer-location::before {
    color: var(--accent-eucalyptus);
}

/* If you're using Font Awesome or similar icons, ensure they're visible */
.footer i,
.footer .icon {
    color: var(--accent-eucalyptus);
}

/* === PAGE HEADER === */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--light-sage) 0%, var(--cream) 100%);
    text-align: center;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--dark-grey);
}

/* === SERVICE DETAIL === */
.service-detail {
    padding: var(--spacing-lg) 0;
}

.service-detail.alt {
    background: var(--light-grey);
}

/* === MISSION & VISION === */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mv-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* === VALUES === */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* === APPROACH TIMELINE === */
.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-eucalyptus);
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* === PACKAGES === */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.package-card.featured {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.package-card.featured h3,
.package-card.featured .package-desc {
    color: var(--white);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.package-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.package-features {
    margin: 2rem 0;
    padding: 0;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}

.package-card.featured .package-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* === PORTFOLIO === */
.portfolio-filter {
    padding: 2rem 0;
    background: var(--light-grey);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    background: var(--white);
    border: 2px solid var(--accent-eucalyptus);
    border-radius: 30px;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: var(--transition-smooth);
}

.portfolio-item.large .portfolio-image {
    aspect-ratio: 2/1;
    font-size: 6rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 2rem;
    color: var(--white);
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--light-sage);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
}

/* === CASE STUDY === */
.case-study {
    background: var(--cream);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.case-study-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.case-study-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-top: 0.3rem;
}

/* === BLOG === */
.featured-article {
    padding: 3rem 0 5rem;
    background: var(--light-grey);
}

.article-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.article-image-large {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.article-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold-accent);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-content-large {
    padding: 3rem;
}

.article-date {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.article-content-large h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.article-content-large p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.article-category {
    font-weight: 600;
    color: var(--secondary-green);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.blog-image {
    background: linear-gradient(135deg, var(--accent-eucalyptus), var(--secondary-green));
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.blog-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* === NEWSLETTER === */
.newsletter-section {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.newsletter-text p {
    color: var(--light-sage);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* === BLOG CATEGORIES === */
.blog-categories {
    background: var(--light-grey);
    text-align: center;
}

.blog-categories h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tag {
    padding: 0.7rem 1.5rem;
    background: var(--white);
    border-radius: 25px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.category-tag:hover {
    background: var(--secondary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--sand);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.checkbox-group {
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.service-areas-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--sand);
}

.cta-card {
    background: var(--primary-green);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.2);
}

.cta-card h3,
.cta-card p {
    color: var(--white);
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.cta-card .btn-primary:hover {
    background: var(--light-sage);
    color: var(--primary-green);
    border-color: var(--white);
}

.contact-info-card h3,
.service-areas-card h3,
.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 2rem;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-content a {
    color: var(--secondary-green);
    font-weight: 600;
}

.info-content p {
    font-size: 0.95rem;
    margin: 0;
}

.areas-list {
    columns: 2;
    gap: 1rem;
    margin: 1.5rem 0;
}

.areas-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.areas-list li::before {
    content: '• ';
    color: var(--secondary-green);
    font-weight: 700;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--dark-grey);
}

/* === FAQ === */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
}

/* === MAP === */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: var(--primary-green);
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.map-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--white);
    font-size: 1.1rem;
}

/* === TRUSTPILOT SECTION === */
.trustpilot-section {
    background: var(--cream);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.trustpilot-section .section-header {
    margin-bottom: 3rem;
}

.trustpilot-widget {
    max-width: 900px;
    margin: 0 auto;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .section-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .packages-grid,
    .services-grid,
    .projects-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-title { font-size: 3rem; }
    .page-title { font-size: 2.8rem; }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .services-grid,
    .projects-grid,
    .blog-grid,
    .testimonials-grid,
    .packages-grid,
    .portfolio-grid,
    .benefits-grid,
    .values-grid,
    .mv-grid,
    .faq-grid,
    .case-study-details {
        grid-template-columns: 1fr;
    }

    .project-card.large,
    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }

    .article-featured {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .areas-list {
        columns: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    .hero-title { font-size: 2.2rem; }
    .page-title { font-size: 2rem; }

    .btn {
        padding: 0.8rem 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}
