/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #121212;      /* Charcoal Black */
    --secondary-bg: #FAF9F6;       /* Ivory White */
    --accent-gold: #C5A880;        /* Champagne Gold */
    --accent-gold-hover: #AA8B60;
    --accent-gold-light: #F7F4EF;
    --accent-beige: #EAE0D5;       /* Warm Beige */
    --accent-beige-light: #F4EBE1;
    --accent-green: #2E5A36;       /* Deep Green for Artificial Grass */
    --accent-green-hover: #1E3F20;
    
    /* Text Colors */
    --text-dark: #1E1E1E;          /* Headings */
    --text-muted: #5A5A5A;         /* Body Text */
    --text-light: #888888;         /* Footnotes/Subtle */
    --text-white: #FFFFFF;
    
    /* Fonts */
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(197, 168, 128, 0.08);
    --shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Layout Constants */
    --header-height: 80px;
    --container-width: 1280px;
}

/* ==========================================================================
   Base Styles & Resets
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-bg);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.25;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* ==========================================================================
   Utility Classes & Layout Elements
   ========================================================================== */
.section-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.accent-gold { color: var(--accent-gold); }

/* Sections Styling */
section {
    padding: 7rem 0;
    position: relative;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Common Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: var(--transition-smooth);
}

.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-color);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    border: 1px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.btn-icon {
    margin-right: 8px;
}

.tag-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    border: 1px solid var(--accent-beige);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.site-header.scrolled {
    background-color: var(--secondary-bg);
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* Navigation Menu */
.primary-navigation {
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    height: 100%;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition-fast);
    transform-origin: bottom right;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    color: var(--text-white);
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(197, 168, 128, 0.2);
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}

.badge-icon {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 620px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
}

.badge-accent {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: var(--font-headings);
}

.badge-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Floating Rating Card */
.floating-rating-card {
    background-color: var(--secondary-bg);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent-gold);
    width: 290px;
    justify-self: end;
    transform: translateY(20px);
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 2.2rem;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: var(--secondary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content .section-title {
    font-size: 2.6rem;
}

.about-grid .section-desc {
    margin-left: 0;
    margin-bottom: 2.5rem;
}

.location-highlight {
    display: flex;
    gap: 1.2rem;
    background-color: var(--accent-gold-light);
    border: 1px solid rgba(197, 168, 128, 0.2);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.location-icon {
    flex-shrink: 0;
}

.location-details strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.location-details address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.inclusivity-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Feature Cards */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    background-color: var(--text-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.2);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--text-white);
}

.feature-text {
    flex-grow: 1;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background-color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--secondary-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: var(--text-white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.15);
}

.service-icon-box {
    width: 55px;
    height: 55px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--accent-gold);
    color: var(--text-white);
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Product Collections Section
   ========================================================================== */
.collections-section {
    background-color: var(--secondary-bg);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.collection-card {
    background-color: var(--text-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.collection-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.collection-card:hover .collection-image {
    transform: scale(1.08);
}

.collection-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.collection-title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.collection-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: var(--text-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    background-color: var(--secondary-bg);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
    transition: var(--transition-smooth);
}

.gallery-item.hide {
    display: none;
}

.gallery-image-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
    text-align: center;
    color: var(--text-white);
}

.gallery-zoom-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.8rem;
    transform: translateY(-15px);
    transition: var(--transition-smooth);
}

.gallery-caption {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 600;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image-box img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-zoom-text,
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    background-color: var(--secondary-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
    align-items: center;
}

.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.point-item {
    display: flex;
    gap: 1.2rem;
}

.point-icon {
    width: 28px;
    height: 28px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.point-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.point-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Premium Side Card */
.why-choose-card-wrapper {
    justify-self: end;
    width: 100%;
    max-width: 380px;
}

.why-choose-side-card {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 3.5rem 2.8rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-choose-side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent-gold);
}

.side-card-title {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.side-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.side-card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.8rem;
}

.side-card-footer {
    display: flex;
    align-items: center;
}

.footer-highlight {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 700;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
    background-color: var(--text-white);
}

.timeline-container {
    position: relative;
    margin-top: 5rem;
    padding-bottom: 2rem;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold) 15%, var(--accent-gold) 85%, transparent);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold-hover);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-item:hover .step-number {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.timeline-card {
    background-color: var(--secondary-bg);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.timeline-item:hover .timeline-card {
    background-color: var(--text-white);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.15);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    background-color: var(--secondary-bg);
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Google Rating Board */
.google-rating-board {
    background-color: var(--text-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid #4285F4; /* Google Blue */
}

.google-logo {
    margin-bottom: 1.2rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.google-rating-board .rating-stars {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.review-card {
    background-color: var(--text-white);
    padding: 2.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.reviews-summary-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(197, 168, 128, 0.08);
    border-left: 3px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    padding: 6.5rem 0;
}

.cta-title {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.85);
    max-width: 780px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--text-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--secondary-bg);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.contact-form-wrapper .section-title {
    font-size: 2.2rem;
    margin-bottom: 2.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.required {
    color: var(--accent-gold-hover);
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: var(--text-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
    resize: vertical;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Errors */
.error-message {
    color: #cc3333;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: none;
    font-weight: 500;
}

.form-group.has-error .form-control {
    border-color: #cc3333;
    background-color: #fff8f8;
}

.form-group.has-error .error-message {
    display: block;
}

/* Contact Info Column */
.contact-info-wrapper {
    padding-top: 1rem;
}

.contact-info-wrapper .section-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.info-description {
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 3.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.info-link:hover {
    color: var(--accent-gold);
}

.quick-actions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 2rem 0;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.brand-col {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-col-title {
    color: var(--text-white);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.footer-detail-item {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-detail-item strong {
    color: var(--text-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    font-size: 0.85rem;
}

/* ==========================================================================
   Fixed WhatsApp Sidebar Button
   ========================================================================== */
.whatsapp-sidebar-btn {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 999;
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.whatsapp-btn-content {
    background-color: #25D366; /* Official WA Green */
    display: flex;
    align-items: center;
    height: 52px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    padding: 0 1.2rem;
    z-index: 2;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.whatsapp-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    margin-left: 0.6rem;
    transition: var(--transition-smooth);
}

/* Floating green pulse ring */
.whatsapp-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background-color: #25D366;
    opacity: 0.4;
    z-index: 1;
    animation: whatsappPulse 2.2s infinite ease-out;
}

/* Pulse animation keyframe */
@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

/* Desktop Sidebar Styling (Right Side Tab) */
@media (min-width: 992px) {
    .whatsapp-sidebar-btn {
        right: 0;
        bottom: auto;
        top: 40%;
        transform: translateY(-50%);
    }
    
    .whatsapp-btn-content {
        height: auto;
        padding: 1.4rem 0.9rem;
        border-radius: var(--radius-md) 0 0 var(--radius-md);
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .whatsapp-btn-text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        margin-left: 0;
        letter-spacing: 0.1em;
        font-size: 0.85rem;
        text-transform: uppercase;
    }
    
    .whatsapp-sidebar-btn:hover {
        transform: translate(-6px, -50%);
    }
    
    .whatsapp-pulse-ring {
        display: none; /* Keep desktop clean */
    }
}

/* Mobile Floating Action Button (FAB) style */
@media (max-width: 991px) {
    .whatsapp-sidebar-btn {
        right: 20px;
        bottom: 25px;
    }
    
    .whatsapp-btn-content {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: var(--radius-full);
    }
    
    .whatsapp-btn-text {
        display: none; /* Hide text on mobile for floating circle */
    }
    
    .whatsapp-sidebar-btn:hover {
        transform: scale(1.05);
    }
}

/* ==========================================================================
   Back To Top Button
   ========================================================================== */
.back-to-top-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    background-color: var(--text-white);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), 
                transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries (Mobile-first)
   ========================================================================== */

/* Tablet & Smaller Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
    .section-container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
        gap: 2rem;
    }
}

/* Medium Devices (max-width: 991px) */
@media (max-width: 991px) {
    section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Sticky Header modifications */
    .site-header {
        height: 70px;
    }
    
    .site-header.scrolled {
        height: 70px;
    }
    
    .header-cta {
        display: none; /* Hide CTA button in mobile header */
    }
    
    .mobile-nav-toggle {
        display: flex; /* Show Hamburger */
    }
    
    /* Mobile Navigation Drawer Overlay */
    .primary-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--secondary-bg);
        z-index: 1000;
        transform: translateY(-110%);
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-md);
        border-top: 1px solid rgba(197, 168, 128, 0.1);
        overflow-y: auto;
    }
    
    .primary-navigation.open {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 2.5rem 2rem;
        height: auto;
    }
    
    .nav-list li {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }
    
    .nav-link::after {
        left: 0;
        right: 0;
        bottom: -2px;
    }
    
    /* Hamburger Animation to 'X' */
    .mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero layout stack */
    .hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .floating-rating-card {
        justify-self: center;
        transform: translateY(0);
        width: 100%;
        max-width: 450px;
        text-align: center;
    }
    
    /* About Stack */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-grid .section-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-highlight {
        text-align: left;
    }
    
    .inclusivity-highlight {
        justify-content: center;
    }
    
    /* Why Choose Us stack */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .why-choose-card-wrapper {
        justify-self: center;
        max-width: 100%;
    }
    
    .why-choose-side-card {
        padding: 3rem 2rem;
    }
    
    /* Process timeline stack */
    .timeline-line {
        display: none;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .timeline-card {
        padding: 1.5rem;
        flex-grow: 1;
    }
    
    /* Reviews stack */
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .google-rating-board {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Contact Stack */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form-wrapper {
        padding: 3rem 2rem;
    }
    
    /* Footer columns adjustment */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Small Mobile Devices (max-width: 575px) */
@media (max-width: 575px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-actions-bar .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col-title {
        margin-bottom: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
