@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  /* Colors */
  --primary-color: #b5c99a;
  --primary-hover: #d8f6b1;
  --secondary-color: #092519;
  --bg-color: #fcfdfd;
  --text-heading: #101828;
  --text-body: #707070;
  --accent-overlay: rgba(181, 201, 154, 0.5);
  --white: #ffffff;

  /* Typography */
  --font-main: "Figtree", sans-serif;

  /* Layout */
  --container-max-width: 1304px;
  --section-padding: 100px;
  --border-radius: 5px;
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding) 0;
}

/* Glassmorphism utility */
.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Button styles */
.btn-main {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 14px 34px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-main:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(181, 201, 154, 0.3);
}

/* Basic Layout Components */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background-color: transparent;
}

header.header-scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

body:not(.homepage) header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 9px;
    font-weight: 400;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 1px;
}

header.header-scrolled .brand-name,
body:not(.homepage) header .brand-name {
    color: var(--secondary-color);
}

header.header-scrolled .brand-tagline,
body:not(.homepage) header .brand-tagline {
    color: var(--secondary-color);
}

header.header-scrolled .logo img {
    height: 40px;
}

header.header-scrolled .nav-links a,
body:not(.homepage) header .nav-links a {
    color: var(--secondary-color);
}

.nav-links a.active {
    color: var(--primary-color) !important;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-header,
.mobile-menu-footer {
    display: none;
}

.nav-links a,
.nav-list a {
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

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

.menu-toggle {
    display: none;
}

.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(9, 37, 25, 0.6), rgba(9, 37, 25, 0.6)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&q=80&w=2000")
      center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

/* Featured Project Section */
.featured-project {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px;
    border-radius: 20px;
    margin-top: 50px;
}

.fp-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

.fp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-content {
    flex: 1;
}

.fp-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.fp-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 5px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about h3 { color: var(--white); margin-bottom: 25px; }
.footer-links h4 { color: var(--white); margin-bottom: 25px; }
.footer-contact h4 { color: var(--white); margin-bottom: 25px; }

.footer-links ul li { margin-bottom: 15px; }
.footer-links ul li a { color: rgba(255, 255, 255, 0.7); }
.footer-links ul li a:hover { color: var(--primary-color); }

.footer-contact p { margin-bottom: 15px; color: rgba(255, 255, 255, 0.7); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* About Page Specific Styles */
.about-stats {
    background-color: var(--white);
    padding: 60px 0;
}

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

.stat-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-5px); }
.stat-card i { font-size: 32px; color: var(--secondary-color); margin-bottom: 20px; display: block; }
.stat-card h3 { font-size: 36px; color: var(--text-heading); margin-bottom: 10px; }
.stat-card p { font-weight: 500; color: var(--text-heading); }
.stat-card span { font-size: 14px; color: var(--text-body); }

.about-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.who-we-are-card {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.mission-vision-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
}

.mission-card { background-color: #0d3b24; }
.vision-card { background-color: #8a9a7a; }

.mv-card h3 { color: var(--white); margin-bottom: 15px; }

.values-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value-card-light {
    background: #fffaf0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}
/* Policy Page Specifics */
.policy-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.policy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.policy-header i {
    font-size: 24px;
    color: var(--primary-color);
}

.policy-header h2 {
    font-size: 24px;
    margin: 0;
}

.policy-body p {
    color: var(--text-body);
    font-size: 16px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.policy-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
}

/* Contact Page Specifics */
.contact-hero {
    padding: 150px 0 50px;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

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

.contact-info-card i {
    font-size: 28px;
    color: var(--white);
    background: var(--secondary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.contact-msg-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-sidebar-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.contact-sidebar-item.dark {
    background: var(--secondary-color);
    color: var(--white);
}

.contact-sidebar-item.sage {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.contact-sidebar-item h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-sidebar-item i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-sidebar-item.dark i {
    color: var(--primary-color);
}

.btn-sidebar {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--white);
    color: var(--secondary-color);
    text-align: center;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: 600;
}

/* Footer Refinement */
.footer-contact-row {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

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

.footer-contact-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.footer-contact-item h5 {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    margin-bottom: 2px;
}

.footer-contact-item p {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.designer-credit {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    margin-top: 20px;
}

.value-card-light:hover { background: var(--primary-color); }
.value-card-light i { font-size: 24px; color: #0d3b24; margin-bottom: 15px; display: block; }

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-item { text-align: center; color: var(--white); }
.choose-item h4 { color: var(--white); margin-bottom: 15px; font-size: 18px; }
.choose-item p { color: rgba(255, 255, 255, 0.7); font-size: 14px; }

/* Enhanced Split Sections */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-text {
    flex: 1;
}

@media (max-width: 992px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .split-text {
        text-align: center;
    }

    .split-text p, .split-text h2 {
        text-align: center !important;
    }
}

/* --- Mobile Responsiveness (max-width: 768px) --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 30px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .hero {
        height: auto;
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Changed to 100% for full screen menu */
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: space-between; /* Space for header, links, and footer */
        padding: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a,
    .nav-list a {
        color: var(--secondary-color) !important;
        font-size: 24px;
        font-weight: 600;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-header img {
        height: 40px;
    }

    .close-menu {
        font-size: 28px;
        color: var(--secondary-color);
        cursor: pointer;
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding-top: 30px;
        border-top: 1px solid #f0f0f0;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--secondary-color);
        font-size: 14px;
        text-align: center;
    }

    .mobile-contact-item i {
        color: var(--primary-color);
    }

    .mobile-contact-item a {
        font-size: 16px !important;
        font-weight: 500 !important;
    }

    .nav-extra {
        display: none; /* Hide button on mobile in header, or adjust */
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        color: var(--white);
        cursor: pointer;
        z-index: 1002;
    }

    header.header-scrolled .menu-toggle,
    body:not(.homepage) header .menu-toggle {
        color: var(--secondary-color);
    }

    /* Horizontal Carousel for Mobile Cards */
    .stats-grid, 
    .services-grid, 
    .values-grid-4 {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px;
        padding: 20px 0 30px; /* More bottom padding for scrollbar */
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        
        /* Styled Scrollbar as "Sign" */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(0,0,0,0.05);
    }

    .stats-grid::-webkit-scrollbar,
    .services-grid::-webkit-scrollbar,
    .values-grid-4::-webkit-scrollbar {
        height: 4px; /* Thin premium scrollbar */
        display: block;
    }

    .stats-grid::-webkit-scrollbar-track,
    .services-grid::-webkit-scrollbar-track,
    .values-grid-4::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 10px;
    }

    .stats-grid::-webkit-scrollbar-thumb,
    .services-grid::-webkit-scrollbar-thumb,
    .values-grid-4::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .stat-card,
    .service-card,
    .value-card-light {
        flex: 0 0 75%; /* Reduced slightly for better reveal but still readable */
        scroll-snap-align: start;
        margin-bottom: 0 !important;
    }

    .why-choose-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin: 30px 0 0 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .why-choose-grid .choose-item {
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 15px !important;
    }

    .footer-grid, 
    .contact-info-grid, 
    .contact-msg-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .featured-project {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .fp-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-contact-row {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .contact-info-card {
        padding: 20px;
    }
    /* Mission-Vision Vertical Centered */
    .mission-vision-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .mission-vision-wrapper .mv-card {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 32px; }
    
    .btn-main {
        width: 100%;
        text-align: center;
    }

    .split-image {
        border-radius: 10px;
    }
}

/* Edge-to-Edge Visual Showcase (Homely Pixel-Perfect) */
.visual-showcase {
    padding: 100px 0;
    overflow: hidden;
    background-color: #fff;
}

.showcase-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    padding: 0 20px;
}

.visual-showcase .subtitle {
    color: #8cba51; /* Match Homely Green */
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.visual-showcase h2 {
    font-size: 48px;
    color: #0d1b2a; /* Dark Blue/Black */
    font-family: var(--font-main); /* Assuming consistent font */
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: #cddfa0; /* Light Green */
    color: #4a6fa5; /* Dark Icon Color - adjustable */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.carousel-btn:hover {
    background: #b5c99a;
}

.carousel-btn i {
    color: #333; /* Dark arrow color */
}

.showcase-carousel-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.showcase-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px; /* Larger gap */
    padding: 0 40px 40px; /* Side padding for edge visibility */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.showcase-track::-webkit-scrollbar {
    display: none;
}

.showcase-item {
    flex: 0 0 500px; /* Large Card Width */
    height: 400px; /* Fixed Height for consistency */
    scroll-snap-align: center; /* Center alignment */
    border-radius: 30px; /* Larger rounded corners */
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.showcase-text {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .showcase-item { flex: 0 0 400px; height: 320px; }
}

@media (max-width: 768px) {
    .showcase-item { flex: 0 0 300px; height: 250px; }
    .visual-showcase h2 { font-size: 32px; }
    .showcase-header-wrapper { flex-direction: column; align-items: flex-start; gap: 20px; }
    .carousel-controls { align-self: flex-end; }
}

/* Location Highlights Section */
.location-highlights {
    background-color: #dbeed0; /* Match Screenshot Light Green */
    padding: 100px 0;
    color: #333;
}

.location-highlights h2 {
    color: #333;
    opacity: 0.8;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

/* --- Testimonials Section --- */
.testimonial-section {
    padding: 100px 0;
    background-color: #fff; /* White background for section */
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 36px;
    color: #0d3b24; /* Dark Green */
    margin-bottom: 15px;
}

.testimonial-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-track-container {
    overflow: hidden;
    padding: 20px 0 40px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 350px; /* Fixed width for desktop */
    background-color: #fcfbf7; /* Cream/Light Yellow */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    user-select: none;
}

.testimonial-stars {
    color: #f4c150; /* Gold */
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #e0e0e0;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 15px;
    min-height: 100px; /* Uniform height */
}

.testimonial-author h4 {
    color: #0d3b24;
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.project-tag {
    display: inline-block;
    background-color: #e8f0e0;
    color: #5a7a1c;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background-color: #fcfbf7;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-box h3 {
    font-size: 32px;
    color: #0d3b24;
    margin-bottom: 5px;
}

.stat-box p {
    color: #666;
    font-size: 14px;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0 100px;
    background-color: #fcfbf7; /* Consistent Cream Background */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0d3b24;
    font-size: 16px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-toggle {
    font-size: 18px;
    color: #5a7a1c;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-cta-box {
    margin-top: 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.btn-outline {
    border: 2px solid #0d3b24;
    color: #0d3b24;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #0d3b24;
    color: #fff;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 30px; /* Reduced from 60px */
    }

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }

    .hero {
        height: auto;
        padding: 100px 0 60px; /* Reduced padding */
        text-align: center;
    }

    /* Tighter Section Spacing */
    .testimonial-section, 
    .faq-section,
    .location-highlights {
        padding: 40px 0 !important;
    }

    .testimonial-header,
    .section-header {
        margin-bottom: 30px !important; /* Reduced from 60px */
    }
    
    .testimonial-stats {
        margin-top: 30px !important;
        padding: 20px !important;
        gap: 20px;
    }
    
    .faq-cta-box {
        margin-top: 30px !important;
        padding: 25px !important;
    }

    .hero-content {
        margin: 0 auto;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
}

/* --- Dropdown Menu Styles --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-heading);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px; /* Slide effect */
}

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background-color: transparent;
        display: none; /* Hidden by default on mobile */
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 14px;
        color: rgba(255,255,255,0.7);
        border-bottom: none;
    }
    
    .dropdown-menu li a:hover {
        background-color: transparent;
        color: var(--primary-color);
        padding-left: 0;
    }

    /* Fix: Hide Visual Showcase and reduce gaps on mobile */
    .visual-showcase {
        display: none !important;
    }
    
    .values-grid-4 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .mission-vision-wrapper {
        margin-bottom: 30px !important;
    }
}

/* Testimonial Navigation Buttons */
.testimonial-track-container {
    position: relative;
    padding: 0 50px; /* Add padding for buttons */
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #0d3b24;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background-color: #0d3b24;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .testimonial-track-container {
        padding: 0;
    }
    
    /* Ensure buttons remain visible on mobile for scrolling */
    .testimonial-nav {
         width: 35px;
         height: 35px;
         font-size: 14px;
    }
    
    .testimonial-nav.prev {
        left: -10px;
    }
    .testimonial-nav.next {
        right: -10px;
    }
}
