/* ============================================
   MAMA FRESH ORGANIC – ENTERPRISE STYLESHEET v5
   Production-Ready | No Duplication | Fully Responsive
   ============================================ */

/* ---------- CSS VARIABLES (Design System) ---------- */
:root {
    /* Brand Colors */
    --color-primary: #1A4D2E;
    --color-primary-rgb: 26, 77, 46;
    --color-secondary: #4CAF50;
    --color-accent: #D4A02B;
    --color-earth: #6D4C2A;
    --color-cream: #F5F0E6;
    --color-off-white: #FAFAF8;
    --color-dark: #1A1A1A;
    --color-white: #FFFFFF;

    /* UI States */
    --color-success: #22C55E;
    --color-error: #EF4444;
    --color-info: #3B82F6;
    --color-text-secondary: #4B5563;
    --color-text-tertiary: #9CA3AF;

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 48px;
    --space-9: 64px;
    --space-10: 80px;
    --space-11: 100px;
    --space-12: 128px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 40px rgba(26, 77, 46, 0.18);
    --shadow-glass: 0 8px 32px rgba(0,0,0,0.10);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Easing */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Header */
    --header-top-offset: 20px;
    --header-height: 72px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---------- CIRCULAR LOGO ---------- */
.custom-logo-link {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s var(--ease-spring);
    flex-shrink: 0;
    border: 2px solid var(--color-cream);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.custom-logo-link:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(26, 77, 46, 0.25);
    border-color: var(--color-accent);
}

.custom-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Logo on mobile */
@media (max-width: 768px) {
    .custom-logo-link {
        width: 44px;
        height: 44px;
    }
}

/* Logo on small phones */
@media (max-width: 480px) {
    .custom-logo-link {
        width: 38px;
        height: 38px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--color-secondary);
}

/* ---------- UTILITY CLASSES ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    width: 100%;
}

.section-padding {
    padding: var(--space-10) 0;
}
.section-padding-sm {
    padding: var(--space-7) 0;
}
.section-padding-lg {
    padding: var(--space-12) 0;
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.gap-4 {
    gap: var(--space-4);
}
.gap-6 {
    gap: var(--space-6);
}
.gap-8 {
    gap: var(--space-8);
}
.flex-wrap {
    flex-wrap: wrap;
}

.grid {
    display: grid;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.gap-6 {
    gap: var(--space-6);
}
.gap-8 {
    gap: var(--space-8);
}

.hidden {
    display: none;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: var(--space-4);
}
h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
}
h4 {
    font-size: clamp(1.2rem, 1.5vw, 1.6rem);
}
h5 {
    font-size: 1.1rem;
    font-weight: 600;
}
h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-4);
}

.section-title {
    margin-bottom: var(--space-3);
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto var(--space-8);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-spring);
    box-shadow: 0 4px 15px transparent;
    min-height: 52px;
    -webkit-font-smoothing: antialiased;
}

/* Ripple overlay */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
    pointer-events: none;
}

.btn:hover::after {
    transform: translateX(0);
}

.btn:active {
    transform: scale(0.95);
}

/* ---------- PRIMARY BUTTON ---------- */
.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);
}

.btn-primary:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: scale(0.95);
}

/* ---------- SECONDARY BUTTON (White on Dark) ---------- */
.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ---------- ACCENT BUTTON (Gold) ---------- */
.btn-accent {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(212, 160, 43, 0.3);
}

.btn-accent:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ---------- OUTLINE BUTTON ---------- */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ---------- BUTTON SIZES ---------- */
.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    min-height: 60px;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    min-height: 40px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- BUTTON WITH ICON ---------- */
.btn i,
.btn .icon {
    font-size: 1.1em;
    line-height: 1;
    flex-shrink: 0;
}

.btn-small i {
    font-size: 0.9em;
}

.btn-large i {
    font-size: 1.2em;
}

/* ---------- BUTTON STATES ---------- */
.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ---------- ACCESSIBILITY: Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none !important;
    }
    .btn::after {
        display: none;
    }
    .btn:hover {
        transform: none !important;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .btn {
        border: 1px solid #ccc;
        background: #f9f9f9 !important;
        color: #333 !important;
        box-shadow: none !important;
    }
    .btn::after {
        display: none;
    }
}

/* ---------- CARDS ---------- */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.6s var(--ease-spring), box-shadow 0.6s var(--ease-spring);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.card-image {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
    background: var(--color-cream);
    transition: transform 0.8s var(--ease-spring);
    flex-shrink: 0;
}
.card:hover .card-image {
    transform: scale(1.03);
}
.card-content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-badge {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
    align-self: flex-start;
}
.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
}
.card-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    flex: 1;
}
.card-cta {
    font-weight: 600;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s var(--ease-spring);
    text-decoration: none;
    margin-top: auto;
}
.card-cta::after {
    content: '→';
    transition: transform 0.3s var(--ease-spring);
}
.card-cta:hover {
    color: var(--color-primary);
    gap: var(--space-3);
}
.card-cta:hover::after {
    transform: translateX(6px);
}

/* ---------- HEADER (Premium Glass Navigation) ---------- */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    z-index: 1000;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: all 0.5s var(--ease-out);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 100%;
}

.site-header.scrolled {
    padding: 0.3rem 1.5rem;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
    top: 10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}
.header-left a {
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

/* ---------- NAVIGATION MENU – FOREST GREEN ---------- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu .nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 0;
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: #1A4D2E; /* Forest Green */
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
    transition: width 0.4s var(--ease-spring);
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
    width: 100%;
}

.nav-menu .nav-link:hover {
    color: var(--color-accent); /* Gold on hover */
    transform: translateY(-1px);
}

/* Scrolled state – keep Forest Green */
.site-header.scrolled .nav-menu .nav-link {
    color: #1A4D2E;
}

.site-header.scrolled .nav-menu .nav-link:hover {
    color: var(--color-accent);
}

/* ---------- MOBILE TOGGLE ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-dark);
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-spring);
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HEADER RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    .nav-menu .nav-link {
        font-size: 0.85rem;
    }
    .site-header {
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 1.5rem 1.5rem;
        gap: 0.8rem;
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius-md);
        z-index: 100;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
        color: #1A4D2E !important;
    }
    .nav-toggle {
        display: flex !important;
    }
    .header-left a {
        font-size: 1.4rem;
    }
    .btn-small {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        min-height: 34px;
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--header-height) + var(--header-top-offset) + var(--space-6)) var(--space-4) var(--space-8);
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: var(--space-6);
    text-align: center;
}

/* ---------- HERO ENTRANCE ANIMATIONS (Floating In) ---------- */
.hero-title,
.hero-subtitle,
.hero-ctas,
.hero .card-badge {
    opacity: 0;
    animation: heroFadeInUp 1.2s var(--ease-out) forwards;
}

.hero .card-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.5s;
}

.hero-ctas {
    animation-delay: 0.8s;
}

/* Additional hero text elements */
.hero-content p:not(.hero-subtitle) {
    opacity: 0;
    animation: heroFadeInUp 1s var(--ease-out) forwards;
    animation-delay: 0.7s;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- HERO TYPOGRAPHY ---------- */
.hero-title {
    color: var(--color-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-4);
    font-weight: 700;
}
.hero-title span {
    color: var(--color-accent);
}
.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto var(--space-6);
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- HERO RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + var(--header-top-offset) + var(--space-4)) var(--space-3) var(--space-6);
        min-height: 90vh;
        min-height: 90dvh;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--header-height) + var(--header-top-offset) + var(--space-3)) var(--space-3) var(--space-5);
        min-height: 85vh;
        min-height: 85dvh;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }
}

/* ---------- STATS ---------- */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-5);
}
.stat-item {
    text-align: center;
    padding: var(--space-5) var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}
.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}
.stat-label {
    color: var(--color-text-secondary);
    font-weight: 500;
    margin-top: var(--space-2);
    font-size: 0.95rem;
}

@media (max-width: 480px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-item {
        padding: var(--space-4) var(--space-2);
    }
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease-spring);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    transform: translateX(-50px);
}
.reveal-right {
    transform: translateX(50px);
}
.reveal-left.visible,
.reveal-right.visible {
    transform: translateX(0);
}
.reveal-scale {
    transform: scale(0.92);
}
.reveal-scale.visible {
    transform: scale(1);
}

/* ---------- STAGGER ---------- */
.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-spring);
}
.stagger.visible > *:nth-child(1) {
    transition-delay: 0.05s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(2) {
    transition-delay: 0.10s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(3) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(4) {
    transition-delay: 0.20s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(5) {
    transition-delay: 0.25s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(6) {
    transition-delay: 0.30s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(7) {
    transition-delay: 0.35s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(8) {
    transition-delay: 0.40s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(9) {
    transition-delay: 0.45s;
    opacity: 1;
    transform: translateY(0);
}
.stagger.visible > *:nth-child(10) {
    transition-delay: 0.50s;
    opacity: 1;
    transform: translateY(0);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.testimonial-content {
    font-style: italic;
    color: var(--color-text-secondary);
    flex: 1;
    font-size: 1.05rem;
}
.testimonial-author {
    font-weight: 700;
    color: var(--color-primary);
    margin-top: var(--space-4);
}
.testimonial-location {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
}

/* ---------- FORMS ---------- */
.form-group {
    margin-bottom: var(--space-4);
}
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s var(--ease-out);
    background: var(--color-white);
    color: var(--color-dark);
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
    transform: translateY(-1px);
}
.form-control.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.form-control::placeholder {
    color: var(--color-text-tertiary);
}
.form-error {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--space-1);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

/* ---------- PROGRESS BAR ---------- */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s var(--ease-spring);
    z-index: 999;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.back-to-top:hover {
    background: var(--color-secondary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-lg);
}
.back-to-top:active {
    transform: scale(0.92);
}
.back-to-top i {
    font-size: 1.2rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-10) 0 var(--space-6);
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: var(--space-2);
}
.footer-about {
    opacity: 0.75;
    max-width: 280px;
    font-size: 0.95rem;
}
.footer-heading {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    padding: var(--space-1) 0;
    transition: all 0.3s var(--ease-spring);
    text-decoration: none;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}
.footer-social {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all 0.4s var(--ease-spring);
    text-decoration: none;
    font-size: 1.2rem;
}
.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 160, 43, 0.3);
}
.footer-bottom {
    padding-top: var(--space-5);
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ---------- FOOTER RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-5);
    }
    .footer-about {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-links a {
        text-align: center;
    }
}

/* ---------- GRID RESPONSIVE ---------- */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr !important;
    }
    .grid-2 .card,
    .grid-3 .card,
    .grid-4 .card,
    .grid-5 .card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ---------- SECTION ALTERNATING BACKGROUNDS ---------- */
.bg-cream {
    background: var(--color-cream);
}
.bg-off-white {
    background: var(--color-off-white);
}
.bg-primary {
    background: var(--color-primary);
}
.bg-white {
    background: var(--color-white);
}

/* ---------- IMAGE PLACEHOLDER UTILITY ---------- */
.img-placeholder {
    background: linear-gradient(135deg, var(--color-cream), var(--color-off-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-primary);
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    width: 100%;
    overflow: hidden;
}
.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-placeholder-round {
    border-radius: var(--radius-full);
    aspect-ratio: 1/1;
}

/* ---------- IMAGE ZOOM ---------- */
.image-zoom {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.image-zoom img {
    transition: transform 0.8s var(--ease-spring);
    width: 100%;
    height: auto;
    display: block;
}
.image-zoom:hover img {
    transform: scale(1.06);
}

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cursor-glow.visible {
    opacity: 1;
}

/* ---------- TOAST ---------- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    opacity: 0;
    transition: all 0.6s var(--ease-spring);
    max-width: 90%;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast-notification.error {
    background: var(--color-error);
}
.toast-notification.success {
    background: var(--color-primary);
}

/* ---------- BUTTON RIPPLE (JS generated) ---------- */
.btn {
    position: relative;
    overflow: hidden;
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    z-index: 5;
    animation: bounceDown 2s ease-in-out infinite;
}
.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%) scale(1.1);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- CURSOR GLOW ENHANCEMENTS ---------- */
.cursor-glow {
    transition: opacity 0.4s ease, transform 0.3s ease;
}

/* ---------- HERO CONTENT ENHANCEMENT ---------- */
.hero-content {
    position: relative;
    z-index: 2;
}

/* ---------- CARD TILT SUPPORT ---------- */
.card {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}
.card:hover {
    transform: perspective(1000px) rotateX(0) rotateY(0) translateY(-6px) scale(1.01);
}

/* ---------- LOADED IMAGE FADE ---------- */
img.loaded {
    opacity: 1 !important;
}

/* ---------- ACCESSIBILITY (Reduced Motion) ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal,
    .stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
    .card:hover {
        transform: none !important;
    }
    .btn:hover {
        transform: none !important;
    }
    .nav-menu .nav-link::after {
        transition: none !important;
    }
    .back-to-top {
        transition: none !important;
    }
    .scroll-indicator {
        animation: none !important;
    }
    .custom-logo-link:hover {
        transform: none !important;
    }
    /* Hero entrance animations disabled for reduced motion */
    .hero-title,
    .hero-subtitle,
    .hero-ctas,
    .hero .card-badge,
    .hero-content p:not(.hero-subtitle) {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- PRINT STYLES ---------- */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .progress-bar {
        display: none !important;
    }
    .hero {
        min-height: auto !important;
        padding: 2rem !important;
    }
    .hero-overlay {
        display: none !important;
    }
    .hero-content {
        color: var(--color-dark) !important;
    }
    .hero-title {
        color: var(--color-dark) !important;
    }
    .hero-title span {
        color: var(--color-primary) !important;
    }
    .hero-subtitle {
        color: var(--color-text-secondary) !important;
    }
    .hero-title,
    .hero-subtitle,
    .hero-ctas,
    .hero .card-badge {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   FOOTER – Premium Additions
   ============================================ */

/* ---------- WAVE DIVIDER ---------- */
.footer-wave {
    display: block;
    width: 100%;
    height: 80px;
    margin-bottom: -2px;
    position: relative;
    z-index: 1;
}

/* ---------- FOOTER LOGO ---------- */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-logo-link {
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s var(--ease-spring);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.footer-logo-link:hover {
    transform: scale(1.08);
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(212, 160, 43, 0.2);
}

.footer-logo-link .custom-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback text logo circle */
.footer-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: all 0.4s var(--ease-spring);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-link:hover .footer-logo-circle {
    transform: scale(1.08);
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(212, 160, 43, 0.2);
}

.footer-tagline {
    opacity: 0.7;
    font-size: 0.95rem;
    max-width: 280px;
    line-height: 1.6;
}

/* ---------- FOOTER CONTACT LIST ---------- */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s var(--ease-spring);
    padding: 0.2rem 0;
}

.footer-contact-item i {
    width: 20px;
    font-size: 1rem;
    color: var(--color-accent);
    flex-shrink: 0;
    text-align: center;
}

.footer-contact-item:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-contact-item:hover i {
    color: #FFFFFF;
}

/* ---------- FOOTER SOCIAL ICONS ---------- */
.footer-social {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s var(--ease-spring);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 160, 43, 0.25);
    border-color: var(--color-accent);
}

/* ---------- FOOTER RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .footer-wave {
        height: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-5);
    }
    .footer-tagline {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-brand-col {
        align-items: center;
    }
    .footer-contact-list {
        align-items: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
    }
}

/* ---------- FULL GALLERY ---------- */
.full-gallery-grid {
    animation: fadeInUp 0.8s var(--ease-out);
}

.full-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-spring);
}

.full-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.full-gallery-item img {
    transition: transform 0.6s var(--ease-spring);
}

.full-gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-gallery-item:hover .overlay {
    background: rgba(0,0,0,0.3);
}

.full-gallery-item .search-icon {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.full-gallery-item:hover .search-icon {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}