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

:root {
    --primary-blue: #2c3e50;
    --dark-blue: #1a252f;
    --light-blue: #3498db;
    --accent-gold: #f1c40f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --text-dark: #343a40;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.8s ease;
    --border-radius: 15px;
    --border-radius-lg: 25px;
}

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

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

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    animation: floatPulse 3s infinite ease-in-out;
    transition: var(--transition);
}

@keyframes floatPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-slow);
    padding: 25px 0;
}

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

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

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

.logo-img {
    height: 60px;
    width: auto;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

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

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

.btn-book {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book:hover {
    background-color: #e0b30a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    background: none;
    border: none;
}

.header.scrolled .menu-btn {
    color: var(--text-dark);
}

/* ====== HERO SECTION ====== */
.hero {
    height: 500px;
    position: relative;
    overflow: hidden;
}


/* ====== HERO SECTION RESPONSIVE FIXES ====== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .hero {
        height: 60vh !important;
        min-height: 450px;
        max-height: 500px;
    }
    
    .hero-video-bg video {
        object-position: center 25%;
    }
    
    .hero-content {
        padding: 20px;
        transform: translateY(-20px);
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
        letter-spacing: 1px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        padding: 0 10px !important;
        line-height: 1.5 !important;
        max-height: 3.2em;
        overflow: hidden;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        margin-top: 20px !important;
    }
    
    .btn-hero {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 25px !important;
        font-size: 1rem !important;
        margin: 0 auto !important;
    }
    
    .mirror-wipe {
        display: none; /* Hide animation on mobile for performance */
    }
}

/* Medium Mobile (576px and below) */
@media (max-width: 576px) {
    .hero {
        height: 55vh !important;
        min-height: 400px !important;
        max-height: 450px !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 12px !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
        padding: 0 5px !important;
        max-height: 4em;
    }

    
    .btn-hero {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        max-width: 250px !important;
    }
    
    /* Optimize video for mobile */
    .hero-video-bg video {
        height: 100%;
        width: auto;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }
    
    /* Reduce overlay opacity for better text visibility */
    .video-overlay {
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
    .hero {
        height: 50vh !important;
        min-height: 350px !important;
        max-height: 400px !important;
    }
    
    .hero-title {
        font-size: 1.4rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        line-height: 1.4 !important;
    }
    
    .btn-hero {
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
        max-width: 220px !important;
    }
    
    .hero-buttons {
        gap: 10px !important;
        margin-top: 20px !important;
    }
}

/* Landscape mode on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 80vh !important;
        min-height: 300px !important;
        max-height: 350px !important;
    }
    
    .hero-content {
        transform: translateY(-40px);
        padding-top: 50px;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-subtitle {
        display: none !important; /* Hide subtitle in landscape to save space */
    }
    
    .hero-buttons {
        margin-top: 10px !important;
    }
    
    .btn-hero {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* Very small screens (320px and below) */
@media (max-width: 320px) {
    .hero {
        height: 45vh !important;
        min-height: 300px !important;
        max-height: 350px !important;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    
    .btn-hero {
        padding: 8px 15px !important;
        font-size: 0.85rem !important;
        max-width: 200px !important;
    }
}

/* iPad and Tablet specific */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 60vh !important;
        min-height: 500px;
        max-height: 550px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
}

/* ====== OPTIMIZE VIDEO FOR MOBILE ====== */
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Improve performance on mobile */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

/* Disable video on very small devices to save bandwidth */
@media (max-width: 320px) {
    .hero-video-bg video {
        display: none;
    }
    
    .hero-video-bg {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    }
}

/* Add loading state for better UX */
.hero-video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video-bg.loading::before {
    opacity: 1;
}


.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 8s linear infinite;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide.active .slide-image {
    animation: zoomIn 6s linear infinite;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    display: block;
    text-align: center;
}

.highlight {
    color: var(--accent-gold);
}

.hero-subtitle {
    display: none;
}

@media (min-width: 992px) {
    .hero-subtitle {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
}

.btn-hero {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: #e0b30a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mirror-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 3s infinite linear;
    pointer-events: none;
    z-index: 3;
}

@keyframes mirrorWipe {
    0% { left: -100%; }
    100% { left: 100%; }
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* ====== COUNTER SECTION ====== */
.counter-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

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

@media (max-width: 768px) {
    .counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 768px) {
    .counter-box {
        padding: 20px 15px;
        gap: 12px;
        flex-direction: row;
        text-align: left;
        min-height: auto;
        align-items: flex-start;
    }
    
    .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .counter-content {
        flex: 1;
    }
}

.counter-box.animated {
    opacity: 1;
    transform: translateY(0);
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.counter-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    width: 60px;
    height: 60px;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.counter-content {
    flex: 1;
}

.counter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1;
}

@media (max-width: 768px) {
    .counter {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }
}

.counter-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.plus, .percent {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ====== ABOUT SECTION ====== */
.about {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/hero-section/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

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

.about-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text.animated {
    opacity: 1;
    transform: translateX(0);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-learn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    gap: 15px;
    padding-right: 30px;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.about-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.about-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-heavy);
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.ring-1 {
    width: 400px;
    height: 400px;
    animation: ringPulse 3s infinite ease-in-out;
}

.ring-2 {
    width: 450px;
    height: 450px;
    animation: ringPulse 3s infinite ease-in-out 0.5s;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.mirror-wipe-image {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 4s infinite linear;
    pointer-events: none;
    z-index: 3;
    border-radius: 50%;
}

/* ====== UPDATED SERVICES SECTION ====== */
.services {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    border: 1px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
    transform: translateX(-50px);
}

.service-card:nth-child(3),
.service-card:nth-child(4) {
    transform: translateX(50px);
}

.service-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-desc {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* UPDATED SERVICE BUTTON STYLE - LIKE LEARN MORE */
.btn-read-more-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: auto;
    text-decoration: none;
}

.btn-read-more-service:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    gap: 12px;
    padding-right: 30px;
}

/* Keep View All Services button different */
.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view:hover {
    background-color: var(--dark-blue);
    gap: 15px;
    padding-right: 35px;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

/* ====== UPDATED FEATURES SECTION WITH CONNECTING LINES ====== */
.features-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/gallery/8.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-section .section-title,
.features-section .section-subtitle {
    color: var(--white);
}

.features-container {
    position: relative;
    margin-top: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

/* Connecting Lines */
.features-connector {
    position: absolute;
    top: 40px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 50%, 
        transparent 100%);
    z-index: 1;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease, opacity 1s ease;
}

.features-connector.animated {
    opacity: 0.5;
    transform: scaleX(1);
}

.features-connector::before,
.features-connector::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    top: -6px;
    animation: pulseDot 2s infinite ease-in-out;
}

.features-connector::before {
    left: 0;
    animation-delay: 0s;
}

.features-connector::after {
    right: 0;
    animation-delay: 1s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(241, 196, 15, 0);
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 50px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    border: 2px solid transparent;
    z-index: 2;
}

.feature-card:nth-child(1) { transition-delay: 0.2s; }
.feature-card:nth-child(2) { transition-delay: 0.4s; }
.feature-card:nth-child(3) { transition-delay: 0.6s; }
.feature-card:nth-child(4) { transition-delay: 0.8s; }

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 3s infinite linear;
    pointer-events: none;
    z-index: 1;
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
}

.feature-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    z-index: 2;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.feature-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.3;
    animation: pulse 2s infinite ease-in-out;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.feature-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.feature-dots span {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition);
}

.feature-card:hover .feature-dots span {
    opacity: 1;
    background-color: var(--accent-gold);
}

.feature-dots span:nth-child(1) { animation: dotPulse 1s infinite ease-in-out; }
.feature-dots span:nth-child(2) { animation: dotPulse 1s infinite ease-in-out 0.2s; }
.feature-dots span:nth-child(3) { animation: dotPulse 1s infinite ease-in-out 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ====== ENHANCED GALLERY SECTION ====== */
.gallery-section {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--light-gray);
}

.gallery-desktop {
    display: block;
}

.gallery-mobile {
    display: none;
}

/* Desktop: 6 grids */
.gallery-grid-desktop {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.gallery-grid-desktop .gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    box-shadow: var(--shadow);
}

.gallery-grid-desktop .gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.gallery-grid-desktop .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.gallery-grid-desktop .gallery-item .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid-desktop .gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Each grid shows 2 images sliding every 3 seconds */
.gallery-grid-desktop .gallery-item .image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-grid-desktop .gallery-item .image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.gallery-grid-desktop .gallery-item .image-slider img.active {
    opacity: 1;
}

/* Mobile: 2 grids */
@media (max-width: 768px) {
    .gallery-desktop {
        display: none;
    }
    
    .gallery-mobile {
        display: block;
    }
    
    .gallery-grid-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .gallery-grid-mobile .gallery-item {
        position: relative;
        border-radius: var(--border-radius);
        overflow: hidden;
        height: 380px;
        cursor: pointer;
        box-shadow: var(--shadow);
    }
    
    .gallery-grid-mobile .gallery-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-heavy);
    }
    
    .gallery-grid-mobile .gallery-item .image-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .gallery-grid-mobile .gallery-item .image-slider img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease;
    }
    
    .gallery-grid-mobile .gallery-item .image-slider img.active {
        opacity: 1;
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-overlay i {
        color: var(--white);
        font-size: 2.5rem;
        animation: pulse 2s infinite ease-in-out;
    }
}

/* Tablet: 4 grids */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid-desktop {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .gallery-grid-desktop .gallery-item {
        height: 280px;
    }
}

/* Large Desktop: 6 grids */
@media (min-width: 1200px) {
    .gallery-grid-desktop {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    
    .gallery-grid-desktop .gallery-item {
        height: 280px;
    }
}

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

/* ====== ENHANCED PRICING CTA WITH ANIMATED ARROW ====== */
.pricing-cta-enhanced {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/hero-section/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

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

.pricing-content-animated {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.pricing-text-animated h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-text-animated p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-animation-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.animated-arrow {
    position: relative;
    width: 200px;
    height: 60px;
}

.arrow-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: translateY(-50%);
    animation: arrowPulse 3s infinite ease-in-out;
}

@keyframes arrowPulse {
    0%, 100% {
        width: 0;
        opacity: 0;
        left: 0;
    }
    30%, 70% {
        width: 100%;
        opacity: 1;
        left: 0;
    }
}

.arrow-head {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid var(--accent-gold);
    transform: translateY(-50%);
    animation: headPulse 3s infinite ease-in-out;
    animation-delay: 0.2s;
}

@keyframes headPulse {
    0%, 100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    30%, 70% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.arrow-pulse {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(241, 196, 15, 0.3);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulseRing 3s infinite ease-in-out;
    animation-delay: 0.4s;
}

@keyframes pulseRing {
    0%, 100% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
    40%, 60% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.5;
    }
}

.btn-pricing-animated {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    color: var(--text-dark);
    border: none;
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    animation: buttonGlow 3s infinite ease-in-out;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(241, 196, 15, 0.5);
    }
}

.btn-pricing-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 2s infinite linear;
    pointer-events: none;
}

.btn-pricing-animated:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(241, 196, 15, 0.6);
    gap: 20px;
}

/* ====== PRICING MODAL ====== */
.pricing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-modal.active {
    display: flex;
    opacity: 1;
}

.modal-pricing-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-modal.active .modal-pricing-content {
    transform: translateY(0);
}

.close-pricing-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-pricing-modal:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
}

.modal-title {
    text-align: center;
    padding: 40px 30px 25px;
    font-size: 2.2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    margin: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.modal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-gold);
}

.modal-pricing-body {
    padding: 30px;
    background-color: #f9f9f9;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .packages-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.package-section-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-section-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.package-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    color: var(--text-dark);
    text-align: center;
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.package-header h3 i {
    color: var(--primary-blue);
}

.package-feature-badge {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.package-card {
    background-color: #f9f9f9;
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.package-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.seating {
    background-color: rgba(44, 62, 80, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.price::before {
    content: '₵';
    font-size: 1.4rem;
    position: relative;
    top: -3px;
    margin-right: 2px;
}

.package-features {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--medium-gray);
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
}

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

/* ====== AVAILABILITY CHECKER CARD IN PRICING MODAL ====== */
.availability-check-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.availability-check-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #e0b30a;
}

.availability-check-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 3s infinite linear;
    pointer-events: none;
    z-index: 1;
}

.availability-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(241, 196, 15, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.5);
    }
}

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

.availability-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.availability-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-check-availability {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.2);
}

.btn-check-availability:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
    gap: 15px;
}

.btn-check-availability::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: mirrorWipe 2s infinite linear;
    pointer-events: none;
}

.availability-note {
    margin-top: 15px;
    color: var(--dark-gray);
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.availability-note i {
    color: #25D366;
    font-size: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .availability-check-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .availability-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .availability-content h4 {
        font-size: 1.3rem;
    }
    
    .availability-content p {
        font-size: 0.95rem;
    }
    
    .btn-check-availability {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

.complementaries-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    height: 100%;
}

.complementaries-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.complementaries-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e0b30a 100%);
    color: var(--text-dark);
    text-align: center;
}

.complementaries-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.complementaries-header h3 i {
    color: var(--primary-blue);
}

.complementaries-content {
    padding: 25px;
}

.complementaries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.complementary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.complementary-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
    background-color: var(--white);
}

.complementary-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    min-width: 24px;
}

.complementary-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* ====== BLOG SECTION ====== */
.blog {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

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

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--medium-gray);
}

.blog-card:nth-child(1) {
    transition-delay: 0.1s;
}

.blog-card:nth-child(2) {
    transition-delay: 0.2s;
}

.blog-card:nth-child(3) {
    transition-delay: 0.3s;
}

.blog-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 4s infinite linear;
    pointer-events: none;
    z-index: 2;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 50px;
    z-index: 3;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-blue);
}

.btn-read {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-read:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ====== ENHANCED BLOG MODAL ====== */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal-blog-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-modal.active .modal-blog-content {
    transform: translateY(0);
}

.close-blog-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-blog-modal:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
}

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

.modal-blog-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.modal-blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.modal-blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-blog-meta i {
    color: var(--primary-blue);
}

/* Updated Blog Modal Images Layout */
.modal-blog-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.modal-blog-image-main {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-blog-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-blog-image-main:hover img {
    transform: scale(1.05);
}

.modal-blog-image-middle {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    margin: 40px 0;
}

.modal-blog-image-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-blog-image-middle:hover img {
    transform: scale(1.05);
}

.modal-blog-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

.modal-blog-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Rate Button in Blog Modal */
.modal-blog-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--medium-gray);
    text-align: center;
}

.btn-rate-now {
    background: linear-gradient(135deg, #4285F4 0%, #0F9D58 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-rate-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 2s infinite linear;
    pointer-events: none;
}

.btn-rate-now:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(66, 133, 244, 0.4);
    gap: 15px;
}

/* ====== VENDOR PORTAL ====== */
.vendor-portal {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.vendor-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/hero-section/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 1;
}

.vendor-portal .container {
    position: relative;
    z-index: 2;
}

.vendor-portal .section-title,
.vendor-portal .section-subtitle {
    color: var(--white);
}

.vendor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .vendor-content {
        grid-template-columns: 1fr;
    }
}

.vendor-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
}

.benefit-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vendor-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    transform: translateX(30px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(241, 196, 15, 0.2);
}

.vendor-form-container.animated {
    opacity: 1;
    transform: translateX(0);
}

.vendor-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.vendor-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .vendor-form-container .form-row {
        grid-template-columns: 1fr;
    }
}

.vendor-form-container .form-group {
    margin-bottom: 20px;
}

.vendor-form-container input,
.vendor-form-container select,
.vendor-form-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: var(--white);
}

.vendor-form-container input:focus,
.vendor-form-container select:focus,
.vendor-form-container textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.checkbox input {
    width: auto;
    transform: scale(1.2);
}

.terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.vendor-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.vendor-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.3);
}

/* ====== UPDATED FAQ SECTION ====== */
.faq {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--light-gray);
    position: relative;
}

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

.fire-flame {
    position: absolute;
    width: 150px;
    height: 200px;
    background: linear-gradient(to top, 
        transparent 0%, 
        rgba(255, 100, 0, 0.1) 20%,
        rgba(255, 140, 0, 0.3) 40%,
        rgba(255, 200, 0, 0.5) 60%,
        rgba(255, 255, 100, 0.7) 80%,
        rgba(255, 255, 150, 0.9) 100%);
    border-radius: 50% 50% 20% 20%;
    filter: blur(20px);
    opacity: 0.4;
    animation: fireBurn 3s ease-in-out infinite alternate;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.fire-flame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 25%;
    width: 50%;
    height: 40px;
    background: linear-gradient(to top, 
        transparent 0%, 
        rgba(255, 100, 0, 0.3) 50%,
        rgba(255, 200, 0, 0.6) 100%);
    border-radius: 50%;
    filter: blur(15px);
    animation: fireFlicker 1.5s ease-in-out infinite alternate;
}

.fire-flame::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 35%;
    width: 30%;
    height: 30px;
    background: linear-gradient(to top, 
        transparent 0%, 
        rgba(255, 255, 100, 0.4) 50%,
        rgba(255, 255, 200, 0.8) 100%);
    border-radius: 50%;
    filter: blur(10px);
    animation: fireFlicker 2s ease-in-out infinite alternate-reverse;
}

.fire-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ff9900;
    border-radius: 50%;
    filter: blur(2px);
    animation: sparkFloat 4s linear infinite;
}

@keyframes fireBurn {
    0%, 100% {
        height: 180px;
        width: 140px;
        filter: blur(18px);
        opacity: 0.3;
    }
    50% {
        height: 220px;
        width: 160px;
        filter: blur(25px);
        opacity: 0.5;
    }
}

@keyframes fireFlicker {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateX(-5px) scale(0.9);
        opacity: 0.4;
    }
    50% {
        transform: translateX(5px) scale(1.1);
        opacity: 0.8;
    }
    75% {
        transform: translateX(-3px) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes sparkFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) translateX(20px);
        opacity: 0;
    }
}

.faq .container {
    position: relative;
    z-index: 2;
}

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

.faq-image {
    opacity: 0;
    transform: translateX(-100px) scale(0.8);
    transition: all 1s ease;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1.2s ease forwards;
}

.faq-img {
    width: 100%;
    border-radius: var(--border-radius);
    transform: scale(1);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

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

.faq-container {
    opacity: 0;
    transform: translateX(100px) scale(0.8);
    transition: all 1s ease 0.3s;
    animation: slideInRight 1.2s ease forwards 0.5s;
}

.faq-container.animated {
    opacity: 1;
    transform: translateX(0) scale(1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.faq-items {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--medium-gray);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--item-index) * 0.15s);
    opacity: 0;
    transform: translateY(30px);
    background: var(--white);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: mirrorWipe 3s infinite linear;
    pointer-events: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding-left: 35px;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: var(--white);
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 2s infinite linear;
    pointer-events: none;
}

.btn-view-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.testimonials .section-title {
    transform: translateY(50px);
}

.testimonials .section-title.animated {
    transform: translateY(0);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid var(--medium-gray);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin: 0 auto 25px;
}

.testimonial-text {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-text i:first-child {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 1.8rem;
    color: rgba(44, 62, 80, 0.1);
}

.testimonial-text i:last-child {
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 1.8rem;
    color: rgba(44, 62, 80, 0.1);
}

.testimonial-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-author p {
    color: var(--primary-blue);
    font-weight: 500;
}

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

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.instagram-section .container {
    position: relative;
    z-index: 2;
}

.instagram-section .section-title,
.instagram-section .section-subtitle {
    color: var(--white);
}

.instagram-feed {
    margin-top: 60px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    color: #E1306C;
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 2s infinite linear;
    pointer-events: none;
}

.btn-instagram:hover {
    background-color: #f8f9fa;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    gap: 20px;
}

/* ====== QUOTE SECTION ====== */
.quote {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 40%);
}

.quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/imgs/gallery/4.png') center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 1;
}

.quote .container {
    position: relative;
    z-index: 2;
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.quote-text {
    position: relative;
    padding: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.quote-text::after, .quote-form-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: mirrorWipe 6s infinite linear;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--border-radius);
}

.quote-text.animated {
    opacity: 1;
    transform: translateX(0);
}

.quote-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.quote-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.quote-contact {
    margin-top: 30px;
}

.quote-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.quote-contact a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-all;
}

.quote-contact a:hover {
    color: var(--accent-gold);
}

.quote-form-container {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.quote-form-container.animated {
    opacity: 1;
    transform: translateX(0);
}

.quote-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
    background-color: var(--white);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-submit {
    margin-top: 25px;
}

.btn-submit {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 100%;
    padding: 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    display: block;
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loader-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.form-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 20px;
    opacity: 0.8;
}

/* ====== FOOTER ====== */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--accent-gold);
}

.footer-about-text {
    margin: 15px 0;
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
    color: var(--text-dark);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--white);
}

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

.footer-contact {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.contact-item a, 
.contact-item p {
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--dark-blue);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--white);
}

.developer-credit {
    opacity: 0.8;
    font-size: 0.9rem;
    color: var(--white);
}

.developer-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* ====== SERVICE MODALS ====== */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2001;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.service-modal.active {
    display: flex;
    opacity: 1;
}

.modal-service-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-modal.active .modal-service-content {
    transform: translateY(0);
}

.close-service-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}

.close-service-modal:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.modal-service-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-modal-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8);
}

.modal-service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 30px;
    margin: 0;
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.modal-service-body {
    padding: 30px;
}

.modal-service-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-features {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--accent-gold);
}

.service-features h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.service-cta {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--medium-gray);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ====== GALLERY MODAL ====== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-gallery-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 70vh;
}

.close-gallery-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.close-gallery-modal:hover {
    color: var(--accent-gold);
}

.modal-gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-gallery-slide.active {
    opacity: 1;
}

.modal-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ====== FAQ MODAL ====== */
.faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-modal.active {
    display: flex;
    opacity: 1;
}

.modal-faq-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.faq-modal.active .modal-faq-content {
    transform: translateY(0);
}

.close-faq-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--dark-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.close-faq-modal:hover {
    color: var(--primary-blue);
}

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

.modal-faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--medium-gray);
}

.modal-faq-question {
    width: 100%;
    background-color: var(--white);
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-faq-question:hover {
    background-color: rgba(44, 62, 80, 0.05);
}

.modal-faq-question i {
    transition: transform 0.3s ease;
}

.modal-faq-question.active i {
    transform: rotate(180deg);
}

.modal-faq-answer {
    background-color: var(--white);
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.modal-faq-answer.active {
    padding: 20px 25px;
    max-height: 500px;
}

.modal-faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ====== TERMS & PRIVACY MODALS ====== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--medium-gray);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.legal-content {
    font-family: 'Poppins', sans-serif;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--medium-gray);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    border-top: 3px solid var(--accent-gold);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
    min-width: 120px;
}

.cookie-btn.accept {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.cookie-btn.accept:hover {
    background-color: #e0b30a;
    transform: translateY(-2px);
}

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

.cookie-btn.essential:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-btn.settings {
    background-color: var(--white);
    color: var(--primary-blue);
}

.cookie-btn.settings:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

/* Cookie Settings Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.cookie-modal .modal-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.cookie-option {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.cookie-option:hover {
    border-color: var(--primary-blue);
    background-color: #f8f9fa;
}

.cookie-option input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-option label {
    flex: 1;
    cursor: pointer;
}

.cookie-option label strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 1rem;
}

.cookie-option label span {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.save-btn, .close-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    flex: 1;
    transition: var(--transition);
}

.save-btn {
    background-color: var(--primary-blue);
    color: var(--white);
}

.save-btn:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.close-btn {
    background-color: var(--medium-gray);
    color: var(--text-dark);
}

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

/* ====== HERO VIDEO BACKGROUND ====== */
.hero {
    height: 80vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1300px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 1300px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

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

.highlight {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightExpand 1s forwards 1s;
}

@keyframes highlightExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 1300px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.8s forwards 0.9s;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.8s forwards 1.2s;
}

.btn-hero {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

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

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.mirror-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: mirrorWipe 4s infinite linear;
    pointer-events: none;
    z-index: 4;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .about-content,
    .quote-container,
    .faq-content,
    .vendor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-text,
    .quote-form-container {
        padding: 30px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* NAVBAR FOR MOBILE */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-slow);
        z-index: 999;
        gap: 0;
        text-align: left;
        display: grid;
        grid-template-rows: repeat(auto-fit, minmax(50px, 1fr));
        align-content: start;
        overflow-y: auto;
    }
    
    .navbar.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar .nav-link {
        color: var(--text-dark);
        padding: 15px 0;
        border-bottom: 1px solid var(--medium-gray);
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        width: 100%;
        text-align: left;
    }
    
    .navbar .nav-link:hover {
        color: var(--primary-blue);
        background-color: rgba(44, 62, 80, 0.05);
        padding-left: 10px;
    }
    
    .navbar .btn-book {
        margin-top: 20px;
        align-self: center;
        width: 80%;
        text-align: center;
    }
    
    .menu-btn {
        display: block;
        z-index: 1000;
    }
    
    .menu-btn.active i {
        color: var(--text-dark);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero {
        height: 450px;
    }
    
    .about-img {
        width: 280px;
        height: 280px;
    }
    
    .ring-1 {
        width: 330px;
        height: 330px;
    }
    
    .ring-2 {
        width: 380px;
        height: 380px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .complementaries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Pricing CTA Responsive */
    .pricing-text-animated h2 {
        font-size: 2.2rem;
    }
    
    .pricing-text-animated p {
        font-size: 1rem;
    }
    
    .pricing-animation-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .animated-arrow {
        width: 150px;
        height: 50px;
    }
    
    .btn-pricing-animated {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    /* Blog Modal Responsive */
    .modal-blog-image-main {
        height: 250px;
    }
    
    .modal-blog-image-middle {
        height: 200px;
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .about-img {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 300px;
        height: 300px;
    }
    
    .ring-2 {
        width: 350px;
        height: 350px;
    }
    
    .image-container {
        margin-top: 20px;
    }
    
    .modal-title {
        font-size: 1.6rem;
        padding: 30px 20px 15px;
    }
    
    .modal-pricing-body,
    .modal-faq-body,
    .modal-blog-body {
        padding: 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Counter section mobile */
    .counter-box {
        padding: 15px;
        gap: 10px;
    }
    
    .counter-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .counter {
        font-size: 1.6rem;
    }
    
    .counter-label {
        font-size: 0.8rem;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ====== ELFSIGHT INSTAGRAM WIDGET STYLING ====== */
.elfsight-app-1f2c23ea-3c1d-4a8a-88e6-c51ef80594bd {
    width: 100% !important;
    margin: 30px 0 50px !important;
    border-radius: var(--border-radius) !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

/* Mobile responsiveness for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        min-width: 100px;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

/* ====== VIDEO FALLBACK ====== */
@media (max-width: 768px) {
    .hero-video-bg video {
        display: block;
    }
}

.hero-video-bg.fallback {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.hero-video-bg.fallback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/hero-section/1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}




