/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #3B4A2F;
    --mint-green: #A9C89C;
    --ivory-white: #FAFAF7;
    --warm-taupe: #B6A98C;
    --charcoal: #1C1C1C;
    --soft-sage: #C8D5B9;
    --cream: #F5F3EF;
    --gold-accent: #D4AF37;
    --deep-forest: #2A3522;
    --suede: #8B7355;
    --soft-sand: #E8DCC8;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--charcoal);
    background-color: var(--ivory-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   ELEGANT PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--cream) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 300px;
    height: 300px;
    border: 3px solid rgba(169, 200, 156, 0.2);
    border-top-color: var(--mint-green);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-logo {
    position: absolute;
    width: 280px;
    height: auto;
}

.loader-logo img {
    width: 100%;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   PREMIUM HEADER WITH MEGA MENU
   ============================================ */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.premium-header.scrolled {
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(59, 74, 47, 0.08);
    border-bottom: 1px solid rgba(169, 200, 156, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: height 0.4s ease;
}

.premium-header.scrolled .header-container {
    height: 80px;
}

.header-logo-wrapper {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-logo-wrapper:hover {
    transform: translateY(-2px);
}

.header-logo {
    height: 130px;
    width: auto;
    transition: height 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(59, 74, 47, 0.15));
}

.premium-header.scrolled .header-logo {
    height: 100px;
}

.desktop-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--ivory-white);
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.premium-header.scrolled .nav-link {
    color: var(--charcoal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--mint-green), var(--gold-accent));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-megamenu:hover .dropdown-icon {
    transform: rotate(180deg);
}

.header-cta-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-forest));
    color: var(--ivory-white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 74, 47, 0.2);
}

.header-cta-btn:hover {
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 200, 156, 0.3);
}

/* Mega Menu Dropdown */
.megamenu-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
    padding-top: 10px;
}

.has-megamenu:hover .megamenu-wrapper,
.megamenu-wrapper:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.megamenu-container {
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--cream) 100%);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(59, 74, 47, 0.15);
    border: 1px solid rgba(169, 200, 156, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.megamenu-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(169, 200, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.megamenu-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(182, 169, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.megamenu-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.megamenu-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.megamenu-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--warm-taupe);
    letter-spacing: 0.5px;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.megamenu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(169, 200, 156, 0.15);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.megamenu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(169, 200, 156, 0.1), transparent);
    transition: left 0.5s ease;
}

.megamenu-item:hover::before {
    left: 100%;
}

.megamenu-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 74, 47, 0.12);
    border-color: var(--mint-green);
}

.megamenu-item.featured {
    background: linear-gradient(135deg, rgba(169, 200, 156, 0.15) 0%, rgba(182, 169, 140, 0.1) 100%);
    border-color: var(--mint-green);
}

.megamenu-item.featured:hover {
    background: linear-gradient(135deg, rgba(169, 200, 156, 0.25) 0%, rgba(182, 169, 140, 0.15) 100%);
}

.megamenu-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.megamenu-item:hover .megamenu-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(169, 200, 156, 0.4);
}

.megamenu-icon i {
    font-size: 20px;
    color: var(--forest-green);
}

.megamenu-content {
    flex: 1;
}

.megamenu-item-title {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.megamenu-item-desc {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: var(--warm-taupe);
    margin: 0;
    line-height: 1.4;
}

.megamenu-arrow {
    font-size: 14px;
    color: var(--mint-green);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.megamenu-item:hover .megamenu-arrow {
    opacity: 1;
    transform: translateX(0);
}

.megamenu-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(169, 200, 156, 0.2);
    position: relative;
    z-index: 2;
}

.megamenu-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--forest-green);
    text-decoration: none;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.megamenu-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(169, 200, 156, 0.3);
    background: linear-gradient(135deg, var(--soft-sage), var(--mint-green));
}

.megamenu-view-all i {
    transition: transform 0.3s ease;
}

.megamenu-view-all:hover i {
    transform: translateX(5px);
}

/* Mobile Toggle & Drawer */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: var(--ivory-white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.premium-header.scrolled .toggle-line {
    background: var(--forest-green);
}

.mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--ivory-white), var(--cream));
    padding: 100px 35px 40px;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 40px rgba(59, 74, 47, 0.2);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(169, 200, 156, 0.2);
}

.drawer-logo {
    height: 70px;
    width: auto;
}

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--charcoal);
    text-decoration: none;
    text-transform: uppercase;
    padding: 16px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-link:hover {
    background: rgba(169, 200, 156, 0.15);
    transform: translateX(5px);
}

.mobile-has-submenu {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-trigger {
    cursor: pointer;
}

.mobile-dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-has-submenu.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    margin: 0;
}

.mobile-has-submenu.active .mobile-submenu {
    max-height: 600px;
    padding: 10px 0 10px 20px;
}

.mobile-submenu-link {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 15px;
    display: block;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.mobile-submenu-link:hover {
    background: rgba(169, 200, 156, 0.1);
    transform: translateX(5px);
    color: var(--forest-green);
}

.mobile-submenu-link.view-all {
    font-weight: 600;
    color: var(--forest-green);
    margin-top: 10px;
    background: rgba(169, 200, 156, 0.15);
}

.mobile-submenu-link.view-all:hover {
    background: rgba(169, 200, 156, 0.25);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(28, 28, 28, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header Responsive */
@media (max-width: 1024px) {
    .megamenu-wrapper {
        width: 750px;
    }
    
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .megamenu-container {
        padding: 35px;
    }
}

@media (max-width: 968px) {
    .desktop-navigation {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta-btn {
        display: none;
    }
    
    .header-container {
        height: 80px;
        padding: 0 20px;
    }
    
    .header-logo {
        height: 90px;
    }
    
    .premium-header.scrolled .header-logo {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .megamenu-grid {
        grid-template-columns: 1fr;
    }
    
    .megamenu-wrapper {
        width: 95vw;
    }
    
    .megamenu-container {
        padding: 25px;
    }
    
    .megamenu-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .mobile-drawer {
        width: 90%;
    }
    
    .megamenu-item {
        padding: 15px;
        gap: 12px;
    }
    
    .megamenu-icon {
        width: 45px;
        height: 45px;
    }
    
    .megamenu-icon i {
        font-size: 18px;
    }
    
    .megamenu-item-title {
        font-size: 14px;
    }
    
    .megamenu-item-desc {
        font-size: 11px;
    }
}

/* ============================================
   PREMIUM SPECIALS BUTTON - REFINED & ADVANCED
   ============================================ */
.specials-premium-link {
    /* POSITIONING - Higher placement */
    position: fixed;
    top: 120px;
    right: 40px;
    z-index: 997;
    
    /* INITIAL STATE - Hidden for 3s delay */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px) scale(0.9);
    pointer-events: none;
    
    /* LAYOUT */
    display: flex;
    align-items: center;
    padding: 0;
    
    /* STYLING */
    background: transparent;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* REVEALED STATE */
    &.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
        pointer-events: all;
    }
    
    /* HIDDEN STATE (mobile menu) */
    &.hidden-mobile {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Inner Container */
.specials-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px 12px 12px;
    background: linear-gradient(135deg, 
        rgba(250, 250, 247, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid transparent;
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(59, 74, 47, 0.12),
        0 2px 8px rgba(59, 74, 47, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(169, 200, 156, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.specials-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        transparent 0%,
        rgba(169, 200, 156, 0.08) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.specials-premium-link:hover .specials-inner {
    transform: translateY(-4px);
    border-color: var(--mint-green);
    box-shadow: 
        0 12px 40px rgba(59, 74, 47, 0.2),
        0 4px 12px rgba(169, 200, 156, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(169, 200, 156, 0.2);
}

.specials-premium-link:hover .specials-inner::before {
    opacity: 1;
}

.specials-premium-link:active .specials-inner {
    transform: translateY(-2px);
}

/* Notification Badge */
.specials-notification-badge {
    position: absolute;
    top: -6px;
    right: 8px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 
        0 4px 12px rgba(255, 68, 68, 0.5),
        0 2px 6px rgba(204, 0, 0, 0.3),
        0 0 0 3px rgba(250, 250, 247, 0.98),
        0 0 0 5px rgba(255, 68, 68, 0.2);
    z-index: 10;
    animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 12px rgba(255, 68, 68, 0.5),
            0 2px 6px rgba(204, 0, 0, 0.3),
            0 0 0 3px rgba(250, 250, 247, 0.98),
            0 0 0 5px rgba(255, 68, 68, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 6px 16px rgba(255, 68, 68, 0.6),
            0 3px 8px rgba(204, 0, 0, 0.4),
            0 0 0 3px rgba(250, 250, 247, 0.98),
            0 0 0 8px rgba(255, 68, 68, 0.3);
    }
}

/* Icon Wrapper with Advanced Design */
.specials-icon-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specials-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--mint-green) 0%, 
        var(--soft-sage) 100%);
    border-radius: 50%;
    box-shadow: 
        0 4px 14px rgba(169, 200, 156, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(59, 74, 47, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.specials-icon {
    position: relative;
    font-size: 1.1rem;
    color: var(--forest-green);
    z-index: 2;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(-8deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-3px) rotate(8deg);
    }
}

.specials-premium-link:hover .specials-icon-bg {
    transform: rotate(180deg) scale(1.15);
    background: linear-gradient(135deg, 
        var(--soft-sage) 0%, 
        var(--gold-accent) 100%);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 0.7),
        inset 0 -1px 3px rgba(59, 74, 47, 0.15);
}

.specials-premium-link:hover .specials-icon {
    animation: icon-sparkle 0.6s ease;
    color: var(--deep-forest);
}

@keyframes icon-sparkle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

/* Label Text */
.specials-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-green);
    letter-spacing: 0.5px;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
}

.specials-premium-link:hover .specials-label {
    color: var(--deep-forest);
    letter-spacing: 0.8px;
}

/* Arrow */
.specials-arrow {
    font-size: 0.85rem;
    color: var(--mint-green);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0.7;
}

.specials-premium-link:hover .specials-arrow {
    transform: translateX(5px);
    color: var(--forest-green);
    opacity: 1;
}

/* Glow Effect */
.specials-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(
        circle at center,
        rgba(169, 200, 156, 0.3) 0%,
        transparent 70%
    );
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.specials-premium-link:hover .specials-glow {
    opacity: 1;
}

/* Scrolled Header Adjustment */
.premium-header.scrolled ~ .specials-premium-link,
body.scrolled .specials-premium-link {
    top: 100px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .specials-premium-link {
        right: 30px;
    }
}

@media (max-width: 968px) {
    .specials-premium-link {
        top: auto;
        bottom: 110px;
        right: 20px;
    }
    
    .premium-header.scrolled ~ .specials-premium-link,
    body.scrolled .specials-premium-link {
        bottom: 110px;
        top: auto;
    }
}

@media (max-width: 768px) {
    .specials-premium-link {
        bottom: 100px;
        right: 20px;
    }
    
    .specials-inner {
        padding: 10px 18px 10px 10px;
        gap: 8px;
    }
    
    .specials-icon-wrap {
        width: 36px;
        height: 36px;
    }
    
    .specials-icon {
        font-size: 1rem;
    }
    
    .specials-label {
        font-size: 0.95rem;
    }
    
    .specials-notification-badge {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
        top: -5px;
        right: 6px;
    }
}

@media (max-width: 480px) {
    .specials-premium-link {
        bottom: 95px;
        right: 15px;
    }
    
    .specials-inner {
        padding: 9px 16px 9px 9px;
        gap: 7px;
    }
    
    .specials-icon-wrap {
        width: 32px;
        height: 32px;
    }
    
    .specials-icon {
        font-size: 0.9rem;
    }
    
    .specials-label {
        font-size: 0.9rem;
    }
    
    .specials-arrow {
        font-size: 0.75rem;
    }
    
    .specials-notification-badge {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }
}

/* ============================================
   HERO SECTION WITH VIDEO COLLAGE
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1C1C1C;
}

.video-collage-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    z-index: 1;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 100%;
    background: #2A3522;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.05);
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.video-item,
.hero-video {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text-container {
    position: relative;
    width: 100%;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--mint-green);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ivory-white);
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    margin: 0;
    animation: fadeInUp 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-accent {
    color: var(--mint-green);
    text-shadow: 0 4px 30px rgba(169, 200, 156, 0.6);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: rgba(250, 250, 247, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: rgba(169, 200, 156, 0.15);
    border: 2px solid var(--mint-green);
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ivory-white);
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(169, 200, 156, 0.2);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    border-color: var(--mint-green);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(169, 200, 156, 0.4);
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

.hero-navigation-dots {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-navigation-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(250, 250, 247, 0.3);
    border: 2px solid rgba(250, 250, 247, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-navigation-dots .dot:hover {
    background: rgba(250, 250, 247, 0.5);
    transform: scale(1.2);
}

.hero-navigation-dots .dot.active {
    width: 40px;
    border-radius: 20px;
    background: var(--mint-green);
    border-color: var(--mint-green);
    box-shadow: 0 0 15px rgba(169, 200, 156, 0.6);
}

.scroll-indicator {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-indicator:hover .scroll-line {
    background: linear-gradient(to bottom, var(--gold-accent), transparent);
}

.scroll-text {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ivory-white);
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--mint-green), transparent);
    border-radius: 10px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--mint-green);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--mint-green), var(--gold-accent));
    margin: 20px auto;
    border-radius: 10px;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--warm-taupe);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .video-collage-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 80px 25px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .scroll-indicator {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 480px) {
    .hero-navigation-dots {
        margin-top: 40px;
    }
    
    .section-container {
        padding: 60px 20px;
    }
    
    .scroll-indicator {
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
       
    .video-collage-container {
        gap: 4px;
        padding: 4px;
    }
    
    .video-item {
        border-radius: 20px;
    }
}

/* ============================================
   ABOUT LAURA & THE SPA SECTION
   ============================================ */
.about-laura-section {
    background: linear-gradient(180deg, var(--ivory-white) 0%, var(--soft-sand) 50%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.about-laura-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(169, 200, 156, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(232, 220, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.laura-story-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 70px;
    margin-bottom: 100px;
    align-items: center;
}

.laura-photos-section {
    position: relative;
}

.photos-stack {
    position: relative;
}

.photo-main {
    position: relative;
    margin-bottom: 25px;
}

.photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(59, 74, 47, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--forest-green) 100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.photo-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(59, 74, 47, 0.3);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.photo-small {
    aspect-ratio: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(59, 74, 47, 0.15);
    background: linear-gradient(135deg, var(--soft-sage) 0%, var(--mint-green) 100%);
    transition: all 0.3s ease;
}

.photo-small:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 74, 47, 0.25);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    padding: 15px;
    text-align: center;
}

.photo-placeholder i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.photo-placeholder p {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.95;
    margin: 0;
}

.laura-story-content {
    padding: 0 20px;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--mint-green) 0%, rgba(169, 200, 156, 0.8) 100%);
    color: var(--forest-green);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(169, 200, 156, 0.3);
}

.welcome-badge i {
    font-size: 1rem;
}

.laura-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 8px;
}

.laura-title {
    font-size: 1.1rem;
    color: var(--warm-taupe);
    font-weight: 500;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 20px;
}

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

.credential-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(59, 74, 47, 0.1);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(59, 74, 47, 0.18);
}

.credential-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.credential-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credential-text strong {
    font-size: 1.05rem;
    color: var(--forest-green);
    font-weight: 600;
}

.credential-text span {
    font-size: 0.9rem;
    color: var(--warm-taupe);
}

.philosophy-section {
    margin-bottom: 100px;
}

.philosophy-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--cream) 100%);
    border: 2px solid rgba(169, 200, 156, 0.3);
    border-radius: 40px;
    padding: 55px 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(59, 74, 47, 0.15);
    position: relative;
    overflow: hidden;
}

.philosophy-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(169, 200, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-forest));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(59, 74, 47, 0.25);
}

.philosophy-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    max-width: 900px;
    margin: 0 auto;
}

.about-carousel-section {
    padding: 80px 20px;
    background-color: transparent;
    overflow: hidden;
    margin-bottom: 100px;
}

.about-carousel-section.values-section {
    background-color: transparent;
}

.about-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.carousel-header {
    text-align: center;
    margin-bottom: 48px;
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.carousel-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0;
    box-sizing: border-box;
}

.carousel-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 74, 47, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(169, 200, 156, 0.1);
    min-height: 320px;
}

.sanctuary-section .carousel-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
}

.carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 74, 47, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(59, 74, 47, 0.25);
    transition: all 0.3s ease;
}

.sanctuary-section .card-icon {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-forest) 100%);
}

.values-section .card-icon {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--soft-sage) 100%);
}

.sanctuary-section .card-icon svg {
    stroke: var(--mint-green);
}

.values-section .card-icon svg {
    stroke: var(--forest-green);
}

.carousel-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(169, 200, 156, 0.35);
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-description {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    opacity: 0.75;
    line-height: 1.6;
    max-width: 280px;
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--forest-green);
    border: none;
    border-radius: 50%;
    color: var(--ivory-white);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 74, 47, 0.25);
    flex-shrink: 0;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--deep-forest);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(59, 74, 47, 0.35);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: var(--warm-taupe);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
    padding: 0;
}

.indicator.active {
    width: 28px;
    border-radius: 5px;
    background: var(--forest-green);
    opacity: 1;
}

.indicator:hover {
    opacity: 0.6;
}

.everyone-welcome-banner {
    margin-bottom: 100px;
    padding: 60px 60px;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--forest-green) 100%);
    border-radius: 45px;
    display: flex;
    align-items: center;
    gap: 45px;
    box-shadow: 0 25px 60px rgba(59, 74, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.everyone-welcome-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-banner-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.welcome-banner-icon i {
    font-size: 3rem;
    color: white;
}

.welcome-banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.welcome-banner-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 18px;
    line-height: 1.3;
}

.welcome-banner-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
}

.about-cta {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-forest) 100%);
    border-radius: 40px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(59, 74, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 200, 156, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.about-cta p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-phone-btn,
.about-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-phone-btn {
    background: white;
    color: var(--forest-green);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.about-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.about-booking-btn {
    background: var(--mint-green);
    color: var(--forest-green);
    box-shadow: 0 8px 25px rgba(169, 200, 156, 0.3);
}

.about-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(169, 200, 156, 0.4);
}

/* About Section Responsive */
@media (max-width: 767px) {
    .about-container {
        padding: 80px 20px;
    }

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

    .laura-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }

    .photos-grid {
        display: none;
    }

    .photo-main {
        margin-bottom: 0;
    }

    .laura-name {
        font-size: 2.2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .laura-credentials {
        grid-template-columns: 1fr;
    }

    .credential-item {
        padding: 18px 20px;
    }

    .credential-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .credential-text strong {
        font-size: 1rem;
    }

    .philosophy-content {
        padding: 45px 35px;
        border-radius: 30px;
    }

    .philosophy-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .philosophy-content h3 {
        font-size: 2rem;
    }

    .philosophy-content p {
        font-size: 1.05rem;
    }

    .about-carousel-section {
        padding: 60px 16px;
        margin-bottom: 80px;
    }

    .carousel-header {
        margin-bottom: 32px;
    }

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

    .carousel-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }

    .carousel-wrapper {
        gap: 12px;
    }

    .carousel-card {
        padding: 32px 24px;
        min-height: 280px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .card-icon svg {
        width: 42px;
        height: 42px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-description {
        font-size: 14px;
    }

    .everyone-welcome-banner {
        flex-direction: column;
        text-align: center;
        padding: 45px 35px;
        margin-bottom: 80px;
        border-radius: 35px;
    }

    .welcome-banner-icon {
        width: 85px;
        height: 85px;
    }

    .welcome-banner-icon i {
        font-size: 2.5rem;
    }

    .welcome-banner-content h3 {
        font-size: 2rem;
    }

    .welcome-banner-content p {
        font-size: 1.05rem;
    }

    .about-cta {
        padding: 45px 35px;
        border-radius: 30px;
    }

    .about-cta h3 {
        font-size: 2rem;
    }

    .about-cta p {
        font-size: 1.1rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-phone-btn,
    .about-booking-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 60px 20px;
    }

    .photos-grid {
        display: none;
    }

    .photo-main {
        margin-bottom: 0;
    }

    .laura-name {
        font-size: 2rem;
    }

    .welcome-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .philosophy-content {
        border-radius: 25px;
    }

    .everyone-welcome-banner {
        border-radius: 30px;
        padding: 35px 25px;
    }

    .about-cta {
        border-radius: 25px;
    }

    .carousel-title {
        font-size: 24px;
    }

    .carousel-subtitle {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .about-carousel-section {
        padding: 100px 40px;
    }

    .carousel-header {
        margin-bottom: 64px;
    }

    .carousel-title {
        font-size: 42px;
    }

    .carousel-subtitle {
        font-size: 20px;
    }

    .carousel-arrow {
        width: 64px;
        height: 64px;
    }

    .carousel-arrow svg {
        width: 28px;
        height: 28px;
    }

    .carousel-card {
        padding: 44px 32px;
    }

    .card-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 28px;
    }

    .card-icon svg {
        width: 52px;
        height: 52px;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .card-description {
        font-size: 16px;
        max-width: 100%;
    }
}

@media (min-width: 1440px) {
    .about-carousel-container {
        max-width: 1400px;
    }

    .carousel-title {
        font-size: 48px;
    }

    .carousel-subtitle {
        font-size: 22px;
        max-width: 700px;
    }

    .carousel-card {
        padding: 48px 36px;
    }
}

/* ============================================
   SERVICES CAROUSEL SECTION
   ============================================ */
.services-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--ivory-white) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

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

.services-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(182, 169, 140, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-subtitle {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mint-green);
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-taupe);
    max-width: 700px;
    margin: 0 auto;
}

.services-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    margin-bottom: 50px;
}

.services-carousel {
    overflow: hidden;
    border-radius: 40px;
}

.services-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tile {
    min-width: calc(33.333% - 20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--ivory-white) 100%);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.service-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--forest-green) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 35px;
    z-index: 0;
}

.service-tile:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(59, 74, 47, 0.25);
    border-color: var(--mint-green);
}

.service-tile:hover::before {
    opacity: 0.03;
}

.service-tile-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--forest-green) 100%);
}

.service-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tile:hover .service-tile-image img {
    transform: scale(1.1);
}

.service-tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 74, 47, 0.6) 100%);
    transition: background 0.4s ease;
}

.service-tile:hover .service-tile-overlay {
    background: linear-gradient(180deg, rgba(169, 200, 156, 0.2) 0%, rgba(59, 74, 47, 0.7) 100%);
}

.service-tile-content {
    padding: 40px 35px 35px;
    position: relative;
    z-index: 1;
}

.service-tile-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(169, 200, 156, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tile:hover .service-tile-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-tile-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-tile-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-tile-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-taupe);
    margin-bottom: 28px;
}

.service-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-green);
    text-decoration: none;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--mint-green), var(--soft-sage));
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(169, 200, 156, 0.3);
}

.service-tile-link:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(169, 200, 156, 0.45);
    background: linear-gradient(135deg, var(--soft-sage), var(--mint-green));
}

.service-tile-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-tile-link:hover i {
    transform: translateX(4px);
}

.services-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--mint-green);
    border-radius: 50%;
    color: var(--forest-green);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-carousel-nav:hover {
    background: var(--mint-green);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(169, 200, 156, 0.4);
}

.services-carousel-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.services-prev {
    left: 0;
}

.services-next {
    right: 0;
}

.services-carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.services-indicator {
    width: 12px;
    height: 12px;
    background: rgba(169, 200, 156, 0.3);
    border: 2px solid var(--mint-green);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.services-indicator.active {
    width: 40px;
    border-radius: 20px;
    background: var(--mint-green);
    border-color: var(--mint-green);
    box-shadow: 0 0 15px rgba(169, 200, 156, 0.5);
}

.services-indicator:hover:not(.active) {
    background: rgba(169, 200, 156, 0.6);
    transform: scale(1.3);
}

.services-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.services-book-btn,
.services-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-book-btn::before,
.services-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.services-book-btn:hover::before,
.services-view-all-btn:hover::before {
    left: 100%;
}

.services-book-btn {
    background: linear-gradient(135deg, var(--mint-green) 0%, var(--forest-green) 100%);
    color: white;
    box-shadow: 0 10px 35px rgba(169, 200, 156, 0.4);
}

.services-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(169, 200, 156, 0.5);
}

.services-view-all-btn {
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--mint-green);
}

.services-view-all-btn:hover {
    background: var(--mint-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(169, 200, 156, 0.3);
}

.services-book-btn i,
.services-view-all-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.services-book-btn:hover i,
.services-view-all-btn:hover i {
    transform: translateX(4px);
}

/* Services Responsive */
@media (max-width: 1200px) {
    .service-tile {
        min-width: calc(50% - 15px);
    }
    
    .services-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 60px;
    }
    
    .service-tile {
        min-width: 100%;
    }
    
    .service-tile-image {
        height: 240px;
    }
    
    .service-tile-content {
        padding: 30px 25px 25px;
    }
    
    .services-carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .services-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-book-btn,
    .services-view-all-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-carousel-wrapper {
        padding: 0 50px;
    }
    
    .service-tile-image {
        height: 200px;
    }
    
    .service-tile-title {
        font-size: 1.5rem;
    }
    
    .service-tile-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #FAFAF7 0%, #f5f5f0 100%);
  overflow: hidden;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.team-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint-green, #A9C89C);
  margin-bottom: 16px;
  padding: 8px 24px;
  background: rgba(169, 200, 156, 0.15);
  border-radius: 50px;
}

.team-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--forest-green, #3B4A2F);
  margin-bottom: 24px;
  line-height: 1.3;
}

.team-description {
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal, #1C1C1C);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

.team-image-wrapper {
  position: relative;
  margin: 80px auto 60px;
  max-width: 900px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 1s ease 0.3s forwards;
}

.team-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(59, 74, 47, 0.15),
    0 8px 20px rgba(59, 74, 47, 0.08);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.team-image-frame:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(59, 74, 47, 0.2),
    0 12px 30px rgba(59, 74, 47, 0.12);
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  transition: transform 0.6s ease;
}

.team-image-frame:hover .team-photo {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(59, 74, 47, 0) 0%,
    rgba(59, 74, 47, 0.15) 100%
  );
  pointer-events: none;
  border-radius: 32px;
}

.team-stat {
  position: absolute;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF7 100%);
  padding: 24px 32px;
  border-radius: 24px;
  box-shadow: 
    0 12px 40px rgba(59, 74, 47, 0.12),
    0 4px 12px rgba(59, 74, 47, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInFloat 0.8s ease forwards;
}

.team-stat-1 {
  top: 40px;
  left: -20px;
  animation-delay: 0.6s;
}

.team-stat-2 {
  bottom: 40px;
  right: -20px;
  animation-delay: 0.8s;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest-green, #3B4A2F);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-taupe, #B6A98C);
  letter-spacing: 0.5px;
}

.team-cta-content {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.team-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--forest-green, #3B4A2F);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-meet-team {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--forest-green, #3B4A2F) 0%, #2d3823 100%);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(59, 74, 47, 0.25),
    0 2px 8px rgba(59, 74, 47, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-meet-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-meet-team:hover::before {
  left: 100%;
}

.btn-meet-team:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(59, 74, 47, 0.3),
    0 4px 12px rgba(59, 74, 47, 0.2);
}

.btn-arrow {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-meet-team:hover .btn-arrow {
  transform: translateX(6px);
}

.team-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.team-decor-left {
  top: 10%;
  left: -150px;
  background: radial-gradient(circle, var(--mint-green, #A9C89C) 0%, transparent 70%);
}

.team-decor-right {
  bottom: 10%;
  right: -150px;
  background: radial-gradient(circle, var(--warm-taupe, #B6A98C) 0%, transparent 70%);
}

@keyframes fadeInFloat {
  to {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Team Responsive */
@media (max-width: 1024px) {
  .team-stat-1 {
    left: 10px;
  }
  
  .team-stat-2 {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 80px 20px;
  }

  .team-title {
    font-size: 2rem;
  }

  .team-description {
    font-size: 1rem;
  }

  .team-image-wrapper {
    margin: 60px auto 40px;
  }

  .team-stat {
    padding: 16px 20px;
    border-radius: 16px;
  }

  .team-stat-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .team-stat-2 {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .team-tagline {
    font-size: 1.25rem;
  }

  .btn-meet-team {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .team-title {
    font-size: 1.75rem;
  }

  .team-image-frame {
    border-radius: 20px;
  }

  .team-photo {
    border-radius: 20px;
  }

  .image-overlay {
    border-radius: 20px;
  }

  .team-stat {
    padding: 12px 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* ============================================
   BLOG SECTION - RESPONSIVE CAROUSEL
   ============================================ */
.blog-section {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory-white) 100%);
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(169, 200, 156, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(182, 169, 140, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--mint-green);
}

.section-eyebrow::before {
    right: calc(100% + 15px);
}

.section-eyebrow::after {
    left: calc(100% + 15px);
}

.blog-carousel-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--mint-green);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 74, 47, 0.1);
}

.carousel-nav:hover {
    background: var(--mint-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 74, 47, 0.2);
}

.carousel-nav i {
    font-size: 1.2rem;
    color: var(--forest-green);
}

.carousel-nav:hover i {
    color: white;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(59, 74, 47, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 74, 47, 0.15);
    border-color: var(--mint-green);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--forest-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-card-author,
.blog-card-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: var(--warm-taupe);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-author i,
.blog-card-date i {
    font-size: 0.9rem;
    color: var(--mint-green);
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--forest-green);
}

.blog-card-excerpt {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.75;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    color: var(--mint-green);
    gap: 12px;
}

.blog-card-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

.carousel-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--warm-taupe);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    opacity: 1;
    background: var(--forest-green);
    width: 30px;
    border-radius: 20px;
}

.carousel-dot:hover {
    opacity: 0.6;
    transform: scale(1.2);
}

.blog-newsletter-widget {
    background: white;
    border-radius: 30px;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 15px 50px rgba(59, 74, 47, 0.1);
    border: 2px solid var(--mint-green);
    display: flex;
    align-items: center;
    gap: 40px;
}

.blog-newsletter-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.blog-newsletter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-newsletter-icon i {
    font-size: 2rem;
    color: white;
}

.blog-newsletter-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.blog-newsletter-text p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.6;
}

.blog-newsletter-form {
    flex: 1;
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--forest-green), var(--mint-green));
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 74, 47, 0.2);
    position: relative;
    overflow: hidden;
}

.view-all-blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-all-blog-btn:hover::before {
    left: 100%;
}

.view-all-blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 74, 47, 0.3);
}

.view-all-blog-btn i {
    transition: transform 0.3s ease;
}

.view-all-blog-btn:hover i {
    transform: translateX(5px);
}

.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-modal.active {
    display: flex;
}

.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.blog-modal-content {
    position: relative;
    background: white;
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-modal-close {
    position: sticky;
    top: 20px;
    left: calc(100% - 70px);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--mint-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -50px;
}

.blog-modal-close:hover {
    background: var(--forest-green);
    transform: rotate(90deg);
}

.blog-modal-close i {
    font-size: 1.3rem;
    color: var(--forest-green);
    transition: color 0.3s ease;
}

.blog-modal-close:hover i {
    color: white;
}

.blog-modal-body {
    padding: 50px;
}

.blog-modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.blog-modal-header {
    margin-bottom: 30px;
}

.blog-modal-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-modal-category {
    background: var(--mint-green);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-modal-author,
.blog-modal-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--warm-taupe);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-modal-author i,
.blog-modal-date i {
    color: var(--mint-green);
}

.blog-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 25px;
}

.blog-modal-content-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
}

.blog-modal-content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--forest-green);
    margin: 40px 0 20px;
}

.blog-modal-content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--forest-green);
    margin: 30px 0 15px;
}

.blog-modal-content-text p {
    margin-bottom: 20px;
}

.blog-modal-content-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-modal-content-text li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.blog-modal-content-text strong {
    color: var(--forest-green);
    font-weight: 700;
}

.blog-modal-content::-webkit-scrollbar {
    width: 8px;
}

.blog-modal-content::-webkit-scrollbar-track {
    background: var(--ivory-white);
    border-radius: 20px;
}

.blog-modal-content::-webkit-scrollbar-thumb {
    background: var(--mint-green);
    border-radius: 20px;
}

.blog-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--forest-green);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }

    .blog-newsletter-widget {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .blog-newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .blog-modal-title {
        font-size: 2rem;
    }

    .blog-modal-body {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .blog-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* ==========================================
       MOBILE CAROUSEL MODE
       ========================================== */
    
    .blog-carousel-wrapper {
        position: relative;
        overflow: hidden;
        padding: 0;
        margin: 0 0 40px 0;
    }

    /* Carousel track - horizontal scrolling */
    .blog-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 20px;
    }

    .blog-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        flex-shrink: 0;
        margin: 0;
        box-sizing: border-box;
    }

    /* Navigation Arrows */
    .carousel-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    /* Carousel Dots */
    .carousel-dots {
        display: flex;
        margin-top: 30px;
    }

    /* CTA Section */
    .blog-cta {
        padding: 0 20px;
    }

    .blog-newsletter-widget {
        padding: 30px 20px;
        gap: 25px;
        margin: 40px 20px;
    }

    .blog-newsletter-text h3 {
        font-size: 1.4rem;
    }

    .blog-newsletter-text p {
        font-size: 0.9rem;
    }

    .view-all-blog-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }

    /* Modal Styles */
    .blog-modal-body {
        padding: 30px 20px;
    }

    .blog-modal-image {
        height: 250px;
        border-radius: 15px;
    }

    .blog-modal-title {
        font-size: 1.8rem;
    }

    .blog-modal-content-text {
        font-size: 1rem;
    }

    .blog-modal-content-text h2 {
        font-size: 1.6rem;
    }

    .blog-modal-content-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .blog-grid {
        padding: 0 15px;
        gap: 15px;
    }

    .blog-card {
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
    }

    .blog-card-title {
        font-size: 1.3rem;
    }

    .blog-card-content {
        padding: 25px;
    }

    .blog-newsletter-widget {
        margin: 40px 15px;
    }

    .blog-newsletter-icon {
        width: 60px;
        height: 60px;
    }

    .blog-newsletter-icon i {
        font-size: 1.6rem;
    }

    .blog-newsletter-text h3 {
        font-size: 1.2rem;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
    }

    .carousel-nav i {
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .blog-modal-title {
        font-size: 1.5rem;
    }

    .blog-modal-close {
        width: 45px;
        height: 45px;
        top: 15px;
        left: calc(100% - 60px);
    }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.google-reviews-section {
    position: relative;
    background: linear-gradient(
        180deg,
        var(--ivory-white) 0%,
        var(--cream) 50%,
        rgba(169, 200, 156, 0.08) 100%
    );
    padding: 120px 0;
    overflow: hidden;
}

.reviews-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-leaf {
    position: absolute;
    font-size: 3rem;
    color: rgba(169, 200, 156, 0.15);
    animation: floatLeaf 15s ease-in-out infinite;
}

.leaf-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.leaf-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.25;
    }
}

.reviews-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.reviews-widget-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.reviews-widget-wrapper .widget-frame {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(250, 250, 247, 0.9) 100%
    );
    border: 2px solid rgba(169, 200, 156, 0.2);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 60px rgba(59, 74, 47, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-widget-wrapper .widget-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(59, 74, 47, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--mint-green);
}

.reviews-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px 40px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        var(--soft-sand) 100%
    );
    border: 2px solid rgba(169, 200, 156, 0.25);
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(59, 74, 47, 0.1);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 35px;
    background: white;
    border: 2px solid rgba(169, 200, 156, 0.2);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(59, 74, 47, 0.08);
}

.google-badge i {
    font-size: 2.5rem;
    color: #4285F4;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-stars {
    font-size: 1.3rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
}

.badge-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--warm-taupe);
    font-weight: 500;
}

.leave-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #4285F4, #357AE8);
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.leave-review-btn:hover {
    background: linear-gradient(135deg, #357AE8, #2A66CC);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.5);
}

.leave-review-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.leave-review-btn:hover i {
    transform: translateX(3px);
}

/* Reviews Responsive */
@media (max-width: 1024px) {
    .google-reviews-section {
        padding: 80px 0;
    }

    .reviews-container {
        padding: 0 30px;
    }

    .reviews-widget-wrapper .widget-frame {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 60px 0;
    }

    .reviews-container {
        padding: 0 20px;
    }

    .floating-leaf {
        font-size: 2rem;
    }

    .reviews-widget-wrapper .widget-frame {
        padding: 30px 25px;
        border-radius: 30px;
    }

    .reviews-cta {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .google-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px 25px;
    }

    .leave-review-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .google-reviews-section {
        padding: 50px 0;
    }

    .reviews-widget-wrapper .widget-frame {
        padding: 25px 20px;
        border-radius: 25px;
    }

    .reviews-cta {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .google-badge {
        padding: 18px 20px;
    }

    .google-badge i {
        font-size: 2rem;
    }

    .rating-stars {
        font-size: 1.1rem;
    }

    .leave-review-btn {
        padding: 15px 35px;
        font-size: 0.95rem;
    }
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
    position: relative;
    background: linear-gradient(
        135deg,
        #833AB4 0%,
        #C13584 25%,
        #E1306C 50%,
        #FD1D1D 75%,
        #F56040 100%
    );
    padding: 120px 0;
    overflow: hidden;
}

.instagram-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg 60deg,
            rgba(255, 255, 255, 0.03) 60deg 120deg
        );
    background-size: 100% 100%, 100% 100%, 50px 50px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.instagram-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.instagram-section .section-eyebrow {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.instagram-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.instagram-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 2rem;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
}

.instagram-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.instagram-widget-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.instagram-widget-wrapper .widget-frame {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-widget-wrapper .widget-frame:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.instagram-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cta-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: white;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.follow-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.95);
    color: #C13584;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.follow-instagram-btn:hover {
    background: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 white;
}

.follow-instagram-btn i:first-child {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.follow-instagram-btn i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.follow-instagram-btn:hover i:last-child {
    transform: translateX(5px);
}

.hashtag-display {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hashtag {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hashtag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.widget-loading {
    position: relative;
    min-height: 400px;
}

.widget-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(169, 200, 156, 0.2);
    border-top-color: var(--mint-green);
    border-radius: 50%;
    animation: widgetSpin 1s linear infinite;
}

@keyframes widgetSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.widget-loaded {
    animation: fadeInUp 0.6s ease-out;
}

.google-reviews-section,
.instagram-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.ripple-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(15);
        opacity: 0;
    }
}

/* Instagram Responsive */
@media (max-width: 1024px) {
    .instagram-section {
        padding: 80px 0;
    }

    .instagram-container {
        padding: 0 30px;
    }

    .instagram-widget-wrapper .widget-frame {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 60px 0;
    }

    .instagram-container {
        padding: 0 20px;
    }

    .instagram-widget-wrapper .widget-frame {
        padding: 30px 25px;
        border-radius: 30px;
    }

    .instagram-cta {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .follow-instagram-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 40px;
        font-size: 1rem;
    }

    .instagram-section .section-title {
        flex-direction: column;
        gap: 20px;
    }

    .instagram-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .hashtag-display {
        gap: 10px;
    }

    .hashtag {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .instagram-section {
        padding: 50px 0;
    }

    .instagram-widget-wrapper .widget-frame {
        padding: 25px 20px;
        border-radius: 25px;
    }

    .instagram-cta {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .follow-instagram-btn {
        padding: 15px 35px;
        font-size: 0.95rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #FAFAF7 0%, #f5f5f0 100%);
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.contact-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint-green, #A9C89C);
  margin-bottom: 12px;
  padding: 6px 20px;
  background: rgba(169, 200, 156, 0.15);
  border-radius: 50px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--forest-green, #3B4A2F);
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal, #1C1C1C);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

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

.contact-form-wrapper {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease 0.3s forwards;
}

.form-container {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 20px 60px rgba(59, 74, 47, 0.08),
    0 8px 20px rgba(59, 74, 47, 0.04);
  border: 1px solid rgba(169, 200, 156, 0.2);
}

.contact-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease 0.3s forwards;
}

.cta-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF7 100%);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 12px 40px rgba(59, 74, 47, 0.08),
    0 4px 12px rgba(59, 74, 47, 0.04);
  border: 1px solid rgba(169, 200, 156, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 20px 60px rgba(59, 74, 47, 0.12),
    0 8px 24px rgba(59, 74, 47, 0.08);
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 200, 156, 0.15) 0%, rgba(169, 200, 156, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-green, #3B4A2F);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.cta-card:hover .cta-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(169, 200, 156, 0.25) 0%, rgba(169, 200, 156, 0.35) 100%);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-green, #3B4A2F);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-description {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal, #1C1C1C);
  opacity: 0.8;
  margin-bottom: 24px;
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--forest-green, #3B4A2F) 0%, #2d3823 100%);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 24px rgba(59, 74, 47, 0.25),
    0 2px 8px rgba(59, 74, 47, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-book-now::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-book-now:hover::before {
  left: 100%;
}

.btn-book-now:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(59, 74, 47, 0.3),
    0 4px 12px rgba(59, 74, 47, 0.2);
}

.btn-book-now svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-book-now:hover svg {
  transform: translateX(6px);
}

.cta-divider {
  position: relative;
  text-align: center;
  margin: 8px 0;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(169, 200, 156, 0.3), transparent);
}

.cta-divider::before {
  left: 0;
}

.cta-divider::after {
  right: 0;
}

.divider-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--warm-taupe, #B6A98C);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #FAFAF7;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.btn-call-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest-green, #3B4A2F);
  background: #FFFFFF;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--forest-green, #3B4A2F);
  box-shadow: 
    0 4px 16px rgba(59, 74, 47, 0.15);
}

.btn-call-now:hover {
  background: var(--forest-green, #3B4A2F);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(59, 74, 47, 0.25);
}

.btn-call-now svg {
  transition: transform 0.4s ease;
}

.btn-call-now:hover svg {
  transform: rotate(10deg) scale(1.1);
}

.contact-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.contact-decor-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--mint-green, #A9C89C) 0%, transparent 70%);
  animation: float1 15s ease-in-out infinite;
}

.contact-decor-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, var(--warm-taupe, #B6A98C) 0%, transparent 70%);
  animation: float2 20s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 30px) rotate(-180deg);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Contact Responsive */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper,
  .contact-cta-wrapper {
    animation: fadeInUp 0.8s ease 0.3s forwards;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .form-container {
    padding: 28px;
  }

  .cta-card {
    padding: 28px;
  }

  .cta-icon {
    width: 64px;
    height: 64px;
  }

  .cta-icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.75rem;
  }

  .form-container {
    padding: 24px;
    border-radius: 20px;
  }

  .cta-card {
    padding: 24px;
    border-radius: 20px;
  }

  .btn-book-now,
  .btn-call-now {
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ========================================
   FOOTER - COMPLETE STYLES
======================================== */

.super-footer {
  position: relative;
  background: linear-gradient(135deg, #3B4A2F 0%, #2d3823 100%);
  color: #FAFAF7;
  overflow: hidden;
  margin-top: 0;
}

/* Newsletter Section */
.footer-newsletter-section {
  background: linear-gradient(135deg, rgba(169, 200, 156, 0.15) 0%, rgba(200, 213, 185, 0.1) 100%);
  padding: 80px 20px;
  border-bottom: 1px solid rgba(169, 200, 156, 0.2);
  position: relative;
}

.footer-newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(169, 200, 156, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-newsletter-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-newsletter-content {
  text-align: center;
}

.footer-newsletter-header {
  margin-bottom: 40px;
}

.footer-newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(169, 200, 156, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 3px solid rgba(169, 200, 156, 0.3);
  box-shadow: 0 10px 30px rgba(169, 200, 156, 0.2);
}

.footer-newsletter-icon i {
  font-size: 2rem;
  color: var(--mint-green);
}

.footer-newsletter-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #FAFAF7;
  margin-bottom: 15px;
  line-height: 1.3;
}

.footer-newsletter-header p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: rgba(250, 250, 247, 0.85);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.footer-newsletter-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(169, 200, 156, 0.2);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 35px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.footer-newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(250, 250, 247, 0.8);
}

.footer-benefit i {
  color: var(--mint-green);
  font-size: 1.1rem;
}

/* Main Footer */
.footer-main {
  padding: 80px 20px 60px;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

/* Footer Brand Column */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-image {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 250, 247, 0.85);
  margin-bottom: 30px;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A9C89C;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(169, 200, 156, 0.2);
}

.social-link:hover {
  background: #A9C89C;
  color: #3B4A2F;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(169, 200, 156, 0.3);
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FAFAF7;
  margin: 0 0 24px 0;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #A9C89C;
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(250, 250, 247, 0.8);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  color: #A9C89C;
}

.footer-link:hover {
  color: #A9C89C;
  padding-left: 24px;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Items */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(169, 200, 156, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #A9C89C;
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #A9C89C;
  margin: 0 0 6px 0;
}

.contact-value {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(250, 250, 247, 0.9);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

a.contact-value:hover {
  color: #A9C89C;
}

/* Footer CTA Button */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3B4A2F;
  background: linear-gradient(135deg, #A9C89C 0%, #96b587 100%);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(169, 200, 156, 0.3);
  margin-top: 8px;
  align-self: flex-start;
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(169, 200, 156, 0.4);
  background: linear-gradient(135deg, #96b587 0%, #A9C89C 100%);
}

.footer-cta-btn i {
  transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
  transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(169, 200, 156, 0.1);
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.footer-copyright {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(250, 250, 247, 0.7);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-legal-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(250, 250, 247, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #A9C89C;
}

.footer-divider {
  color: rgba(250, 250, 247, 0.4);
}

/* Designer Credit Section */
.designer-credit-section {
  background: rgba(0, 0, 0, 0.25);
  padding: 30px 20px;
  border-top: 1px solid rgba(169, 200, 156, 0.15);
  position: relative;
  z-index: 2;
  text-align: center; /* Add this */
}

.designer-credit-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center; /* Add this */
}

.designer-credit-content {
  display: flex;
  flex-direction: column; /* Make sure this is column */
  align-items: center; /* Add this */
  justify-content: center; /* Add this */
  text-align: center; /* Add this */
  gap: 15px; /* Add spacing between copyright and links */
}

.credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(250, 250, 247, 0.6);
}

.credit-badge i {
  font-size: 0.9rem;
  color: var(--gold-accent);
}

.designer-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(169, 200, 156, 0.2);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.designer-credit-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(169, 200, 156, 0.1), transparent);
  transition: left 0.5s ease;
}

.designer-credit-link:hover::before {
  left: 100%;
}

.designer-credit-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold-accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.designer-logo-wrapper {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.designer-credit-link:hover .designer-logo-wrapper {
  transform: rotate(360deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.designer-logo {
  width: 70%;
  height: 70%;
  object-fit: cover;
}

.designer-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.designer-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FAFAF7;
  margin: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.designer-credit-link:hover .designer-name {
  color: var(--gold-accent);
}

.designer-tagline {
  display: none;
}

.designer-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.designer-credit-link:hover .designer-arrow {
  background: var(--gold-accent);
  color: #3B4A2F;
  transform: translateX(3px);
}

/* Decorative Elements */
.footer-decor {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.footer-decor-left {
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, #A9C89C 0%, transparent 70%);
  animation: floatLeft 20s ease-in-out infinite;
}

.footer-decor-right {
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle, #B6A98C 0%, transparent 70%);
  animation: floatRight 25s ease-in-out infinite;
}

@keyframes floatLeft {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

@keyframes floatRight {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
}

@media (max-width: 968px) {
  .footer-newsletter-section {
    padding: 60px 20px;
  }

  .footer-newsletter-header h3 {
    font-size: 2rem;
  }

  .footer-newsletter-form {
    padding: 30px 25px;
  }

  .footer-newsletter-benefits {
    gap: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .designer-credit-content {
    flex-direction: column;
    gap: 10px;
  }

  .credit-badge {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .footer-newsletter-section {
    padding: 50px 20px;
  }

  .footer-newsletter-icon {
    width: 70px;
    height: 70px;
  }

  .footer-newsletter-icon i {
    font-size: 1.8rem;
  }

  .footer-newsletter-header h3 {
    font-size: 1.8rem;
  }

  .footer-newsletter-header p {
    font-size: 1rem;
  }

  .footer-newsletter-form {
    padding: 25px 20px;
  }

  .footer-main {
    padding: 60px 20px 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(169, 200, 156, 0.2);
  }

  .footer-logo-image {
    height: 80px;
  }

  .designer-credit-section {
    padding: 25px 20px;
  }

  .designer-credit-content {
    flex-direction: column;
  }

  .credit-badge {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-newsletter-section {
    padding: 40px 15px;
  }

  .footer-newsletter-icon {
    width: 60px;
    height: 60px;
  }

  .footer-newsletter-icon i {
    font-size: 1.5rem;
  }

  .footer-newsletter-header h3 {
    font-size: 1.5rem;
  }

  .footer-newsletter-header p {
    font-size: 0.95rem;
  }

  .footer-newsletter-form {
    padding: 20px 15px;
    border-radius: 20px;
  }

  .footer-newsletter-benefits {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-logo-image {
    height: 70px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .designer-credit-section {
    padding: 20px 15px;
  }

  .credit-badge {
    font-size: 0.7rem;
  }

  .designer-credit-link {
    padding: 6px 16px 6px 6px;
  }

  .designer-logo-wrapper {
    width: 32px;
    height: 32px;
  }

  .designer-name {
    font-size: 0.85rem;
  }

  .designer-arrow {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 74, 47, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, var(--forest-green), var(--deep-forest));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(169, 200, 156, 0.5);
}

.back-to-top-btn:active {
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   FLOATING ACTION BUTTON (FAB)
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

/* Main FAB Button */
.fab-main {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold-accent), #E6C347);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-main:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.fab-main.active {
    background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
    transform: rotate(90deg);
}

.fab-icon-default,
.fab-icon-close {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: absolute;
}

.fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.fab-main.active .fab-icon-default {
    opacity: 0;
    transform: rotate(90deg);
}

.fab-main.active .fab-icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

/* FAB Options Container */
.fab-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fab-options.active {
    opacity: 1;
    visibility: visible;
}

/* Individual FAB Options */
.fab-option {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    transform: scale(0) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.fab-options.active .fab-option {
    transform: scale(1) translateY(0);
}

.fab-options.active .fab-option:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-options.active .fab-option:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-options.active .fab-option:nth-child(3) {
    transition-delay: 0.15s;
}

.fab-phone {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.fab-email {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.fab-instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}

.fab-option:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Tooltips */
.fab-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.fab-option::after {
    content: '';
    position: absolute;
    right: 60px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--charcoal);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fab-option:hover::before,
.fab-option:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   ELFSIGHT INSTAGRAM CHAT MODAL
   ============================================ */
.elfsight-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elfsight-container.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.elfsight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.85);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.elfsight-wrapper {
    position: relative;
    width: 90%;
    max-width: 450px;
    max-height: 85vh;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.elfsight-container.active .elfsight-wrapper {
    transform: scale(1) translateY(0);
}

.elfsight-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(169, 200, 156, 0.3);
    border-radius: 50%;
    color: var(--forest-green);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.elfsight-close:hover {
    background: var(--mint-green);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(169, 200, 156, 0.4);
}

/* Elfsight App Container */
.elfsight-app-82c92139-8dd5-4656-a651-8c38921c8e22 {
    width: 100%;
    height: 600px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .back-to-top-btn {
        width: 50px;
        height: 50px;
        bottom: 25px;
        left: 25px;
        font-size: 1.1rem;
    }

    .fab-container {
        bottom: 25px;
        right: 25px;
    }

    .fab-main {
        width: 60px;
        height: 60px;
    }

    .fab-icon-default,
    .fab-icon-close {
        font-size: 1.3rem;
    }

    .fab-option {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .fab-option::before {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .elfsight-wrapper {
        width: 95%;
        max-height: 80vh;
        border-radius: 25px;
    }

    .elfsight-app-82c92139-8dd5-4656-a651-8c38921c8e22 {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 1rem;
    }

    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 55px;
        height: 55px;
    }

    .fab-option {
        width: 48px;
        height: 48px;
    }

    .fab-options {
        bottom: 70px;
    }

    /* Stack tooltips above on mobile */
    .fab-option::before {
        right: auto;
        top: -45px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }

    .fab-option:hover::before {
        transform: translateX(-50%) translateY(0);
    }

    .fab-option::after {
        right: auto;
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--charcoal);
    }

    .elfsight-wrapper {
        border-radius: 20px;
    }

    .elfsight-close {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
        font-size: 1.1rem;
    }
}

@keyframes fabPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6), 0 0 0 15px rgba(212, 175, 55, 0.1);
    }
}

.fab-main {
    animation: fabPulse 3s ease-in-out infinite;
}

.fab-main.active {
    animation: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-white);
}

::-webkit-scrollbar-thumb {
  background: var(--mint-green);
  border-radius: 10px;
  border: 3px solid var(--ivory-white);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--forest-green);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid var(--mint-green);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--mint-green);
  outline-offset: 3px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .premium-header,
  .mobile-drawer,
  .mobile-overlay,
  .fab-container,
  #backToTopBtn,
  .specials-floating-btn,
  .footer-newsletter-section {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

/* ============================================
   LEGAL DOCUMENT PAGES
   ============================================ */

.legal-document-section {
  min-height: 100vh;
  padding: 150px 20px 80px;
  background: linear-gradient(180deg, var(--ivory-white) 0%, var(--cream) 100%);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.legal-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--warm-taupe);
  font-style: italic;
  margin-top: 20px;
}

.legal-content {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(59, 74, 47, 0.1);
  border: 2px solid rgba(169, 200, 156, 0.2);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mint-green);
}

.legal-section p {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 15px;
}

.legal-section ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-section li {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.legal-section strong {
  color: var(--forest-green);
  font-weight: 600;
}

.legal-section a {
  color: var(--forest-green);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: var(--mint-green);
}

.contact-details {
  background: var(--soft-sand);
  border-left: 4px solid var(--mint-green);
  padding: 25px 30px;
  border-radius: 15px;
  margin-top: 20px;
}

.contact-details p {
  margin-bottom: 8px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.legal-footer {
  text-align: center;
  margin-top: 50px;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: linear-gradient(135deg, var(--mint-green), var(--forest-green));
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(59, 74, 47, 0.2);
}

.back-home-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 74, 47, 0.3);
}

.back-home-btn i {
  transition: transform 0.3s ease;
}

.back-home-btn:hover i {
  transform: translateX(-5px);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
  .legal-document-section {
    padding: 120px 20px 60px;
  }

  .legal-content {
    padding: 40px 30px;
    border-radius: 25px;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 1rem;
  }

  .contact-details {
    padding: 20px 25px;
  }
}

@media (max-width: 480px) {
  .legal-content {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .legal-section {
    margin-bottom: 30px;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-section ul {
    padding-left: 20px;
  }

  .back-home-btn {
    width: 100%;
    justify-content: center;
  }
}
