/* ============================================
   SURYA CELEBRATION - Premium Event Services
   Modern, Elegant & Festive Design
============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Rich Gold & Deep Maroon */
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BC;
    --primary-gold-dark: #B8860B;
    --primary-maroon: #800020;
    --primary-maroon-light: #A52A2A;
    --primary-maroon-dark: #5C0015;

    /* Accent Colors */
    --accent-orange: #FF6B35;
    --accent-purple: #6B4E71;
    --accent-coral: #FF7F7F;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FBF9F7;
    --light-gray: #F5F5F5;
    --medium-gray: #888888;
    --dark-gray: #333333;
    --black: #1A1A1A;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --gradient-maroon: linear-gradient(135deg, #800020 0%, #A52A2A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(128, 0, 32, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ============================================
   PRELOADER
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader .sun-icon {
    font-size: 60px;
    animation: pulse 1.5s ease-in-out infinite;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.loader span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

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

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3px 0;
    z-index: 1000;
    background:#fff;
    transition: var(--transition-medium);
}
.navbar .logo img{
    width: 100px;
    height:auto;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: var(--shadow-light);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link {
    color: var(--dark-gray);
}

.navbar.scrolled .logo-icon {
    color: var(--primary-gold);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-icon {
    font-size: 36px;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: var(--transition-fast);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-fast);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #af2e2c;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-cta {
    padding: 12px 28px;
    background: var(--gradient-gold);
    color: var(--dark-gray);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #af2e2c;
    transition: var(--transition-fast);
}

.navbar.scrolled .hamburger span {
    background: #af2e2c;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--primary-gold-light);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    animation: bounce 2s ease infinite;
    z-index: 10;
}

.hero-scroll i {
    display: block;
    margin-top: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-gray);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    color: var(--dark-gray);
}

.btn-full {
    width: 100%;
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
    background: var(--gradient-maroon);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-item p {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
}

/* ============================================
   SECTION STYLES
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-header.light .section-subtitle {
    color: var(--primary-gold);
}

.section-header.light .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-maroon);
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '—';
    margin: 0 15px;
    color: var(--primary-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
    ABOUT SECTION
 ============================================ */
.our-story {
    padding: var(--section-padding);
    background: var(--off-white);
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--primary-maroon));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    gap: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -20px;
    border-left-color: transparent;
    border-right-color: var(--off-white);
}

.timeline-year {
    background: var(--primary-maroon);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-gold);
    min-width: 100px;
    text-align: center;
    transition: var(--transition-medium);
}

.timeline-year:hover {
    transform: scale(1.05);
    background: var(--gradient-maroon);
}

.timeline-content {
    background: var(--off-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    max-width: 450px;
    position: relative;
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition-medium);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: var(--white);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ============================================
    TEAM SECTION
 ============================================ */
.team {
    padding: var(--section-padding);
    background: var(--white);
}

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

.team-member {
    text-align: center;
    background: var(--off-white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    transition: var(--transition-fast);
}

.team-member:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-fast);
}

.team-social a:hover {
    color: var(--primary-gold);
}

.team-content {
    padding: 25px;
}

.team-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.team-position {
    display: block;
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-content p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}
.about {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-gold);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-maroon);
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
}

.about-content .section-subtitle {
    text-align: left;
}

.about-content .section-subtitle::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-feature i {
    color: var(--primary-gold);
    font-size: 20px;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

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

.services-more {
    text-align: center;
    margin-top: 50px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    background: var(--white);
}

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

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-gold);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-maroon);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-maroon);
}

.service-link:hover {
    color: var(--primary-gold-dark);
}

.service-link i {
    transition: var(--transition-fast);
}

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

/* ============================================
   GALLERY SECTION
============================================ */
.gallery {
    padding: var(--section-padding);
    background: var(--off-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-maroon);
    color: var(--white);
    border-color: var(--primary-maroon);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

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

.gallery-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 18px;
    transition: var(--transition-fast);
}

.gallery-zoom:hover {
    transform: scale(1.1);
    background: var(--white);
}

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

/* ============================================
   WHY CHOOSE US SECTION
============================================ */
.why-us {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-maroon);
}

.why-us-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23D4AF37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.why-us .container {
    position: relative;
    z-index: 1;
}

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

.why-us-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-medium);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.why-us-icon i {
    font-size: 32px;
    color: var(--primary-maroon);
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 0;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm25 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zM25 25c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm50 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zM25 75c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm50 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

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

.testimonial-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

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

.testimonial-card-modern:hover::before {
    transform: scaleX(1);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user {
    flex: 1;
}

.testimonial-user h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: var(--primary-maroon);
    font-weight: 500;
}

.testimonial-quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon i {
    font-size: 16px;
    color: var(--primary-maroon);
}

.testimonial-card-modern .testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-card-modern .testimonial-rating i {
    color: var(--primary-gold);
    font-size: 16px;
    margin-right: 3px;
}

.testimonial-card-modern .testimonial-text {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-date {
    font-size: 13px;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-date i {
    color: var(--primary-gold);
}

.testimonials-cta {
    text-align: center;
}

.testimonials .section-title {
    color: var(--primary-maroon);
}

.testimonials .section-header.light .section-description {
    color: rgba(63, 63, 63, 0.8);
}

/* ============================================
   CTA SECTION
============================================ */
.cta {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
    CONTACT SECTION
 ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
}

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

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 22px;
    color: var(--primary-maroon);
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--primary-maroon);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: clamp(20px, 4vw, 50px);
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-align: center;
}

.form-description {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary-maroon);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-gold);
}

.contact-phone,
.contact-email {
    display: block;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 5px;
    transition: var(--transition-fast);
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--primary-maroon);
}

.contact-label {
    color: var(--medium-gray);
    font-size: 13px;
}

.form-consent {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-gold);
}

/* ============================================
   PARTNERS SECTION
============================================ */
.partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

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

.partner-logo-inner {
    width: 100%;
    padding: 30px 20px;
    background: var(--off-white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.partner-logo-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-gold);
}

.partner-logo-inner i {
    font-size: 36px;
    color: var(--primary-maroon);
    transition: var(--transition-fast);
}

.partner-logo-inner:hover i {
    color: var(--primary-gold);
}

.partner-logo-inner span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
}

/* ============================================
    MAP SECTION
 ============================================ */
.map-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* ============================================
    FAQ SECTION
 ============================================ */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm25 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zM25 25c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm50 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zM25 75c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm50 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-fast);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-gold);
}

.faq-item.active {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    position: relative;
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--light-gray) 50%, transparent 100%);
    opacity: 0.5;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 18px;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 2;
}

.faq-toggle i {
    transition: var(--transition-medium);
}

.faq-item.active .faq-toggle {
    background: var(--gradient-maroon);
    color: var(--white);
    transform: rotate(180deg);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 30px 40px;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 16px;
}

.faq-answer p::first-letter {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-maroon);
    float: left;
    margin-right: 8px;
    margin-top: 2px;
    line-height: 1;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark-gray);
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    background: var(--white);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--medium-gray);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    background: var(--white);
    padding: 0 8px;
    color: var(--primary-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group select option {
    padding: 10px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

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

.footer-logo-image {
    height: 40px;
    width: auto;
}

.footer-logo .logo-icon {
    font-size: 40px;
}

.footer-logo .logo-text {
    font-size: 26px;
}

.footer-about p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--dark-gray);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

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

.footer-links ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links ul li a i {
    margin-right: 10px;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-newsletter p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px 0 0 10px;
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 0 10px 10px 0;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom i {
    color: var(--primary-maroon);
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 20px;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ============================================
    WHATSAPP BUTTON
============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    color: var(--dark-gray);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        box-shadow: var(--shadow-heavy);
        transition: var(--transition-medium);
    }

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

    .nav-link {
        color: var(--dark-gray);
        font-size: 18px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .timeline-year {
        margin-bottom: 20px;
    }

    .timeline-content {
        max-width: none;
    }

    .timeline-content::before {
        display: none;
    }

    .stats-bar .container {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social,
    .social-links {
        justify-content: center;
    }

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

    .slider-dots {
        right: 50%;
        transform: translateX(50%);
        bottom: 100px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .about-experience {
        top: 10px;
        right: 10px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 32px;
    }

    .testimonial-card-modern {
        padding: 30px 20px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-stats {
        gap: 20px;
    }

    .contact-hero-stats .stat-number {
        font-size: 28px;
    }

    .faq-question {
        padding: 25px 30px;
    }

    .faq-question h4 {
        font-size: 18px;
    }

    .faq-toggle {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 20px 30px;
        font-size: 15px;
    }

    .faq-answer p::first-letter {
            font-size: 20px;
        }
    }
    
    @media (max-width: 400px) {
        .hero-title {
            font-size: clamp(32px, 10vw, 48px);
        }
        
        .hero-tagline {
            font-size: clamp(16px, 4vw, 20px);
        }
        
        .btn {
            padding: 12px 25px;
            font-size: 14px;
        }
        
        .section-title {
            font-size: clamp(24px, 6vw, 32px);
        }
        
        .contact-info-card {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .contact-icon {
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 36px;
        }
        
        .stat-suffix {
            font-size: 24px;
        }
        
        .footer-grid {
            gap: 30px;
        }
        
        .footer-links h4,
        .footer-newsletter h4 {
            font-size: 18px;
        }
        
        .why-us-card {
            padding: 30px 20px;
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-content h3 {
            font-size: 20px;
        }
        
        .menu-card {
            padding: 20px;
        }
        
        .menu-header h3 {
            font-size: 20px;
        }
    }
    
    /* Prevent horizontal scroll on mobile */
    @media (max-width: 768px) {
        body {
            overflow-x: hidden;
        }
        
        .container {
            width: 92%;
        }
        
        .hero-content {
            padding: 0 15px;
        }
        
        .about-grid {
            gap: 40px;
        }
        
        .services {
            padding: 60px 0;
        }
        
        .gallery {
            padding: 60px 0;
        }
        
        .why-us {
            padding: 60px 0;
        }
        
        .testimonials {
            padding: 60px 0;
        }
        
        .partners {
            padding: 60px 0;
        }
        
        .contact {
            padding: 60px 0;
        }
        
        .footer-top {
            padding: 60px 0 40px;
        }
    }
    
    /* ============================================
        MENU SECTION
    =========================================== */
    .menu {
        padding: var(--section-padding);
        background: var(--off-white);
    }
    
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .menu-card {
        background: var(--white);
        border-radius: 20px;
        padding: 30px;
        box-shadow: var(--shadow-light);
        transition: var(--transition-medium);
        text-align: center;
    }
    
    .menu-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-heavy);
    }
    
    .menu-header {
        margin-bottom: 25px;
    }
    
    .menu-header h3 {
        font-family: var(--font-heading);
        font-size: 24px;
        font-weight: 600;
        color: var(--dark-gray);
        margin-bottom: 10px;
    }
    
    .menu-time {
        font-size: 14px;
        color: var(--primary-maroon);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .menu-items {
        list-style: none;
        padding: 0;
    }
    
    .menu-items li {
        padding: 8px 0;
        border-bottom: 1px solid var(--light-gray);
        color: var(--medium-gray);
        font-size: 15px;
    }
    
    .menu-items li:last-child {
        border-bottom: none;
    }
    
    @media (max-width: 992px) {
        .menu-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .menu-grid {
            grid-template-columns: 1fr;
        }
    }
