/* ============================================
   Serenade Safari Desert Camp - Premium Styles
   Theme: Luxury Desert + Modern Blue & Gold
   ============================================ */

:root {
    /* Primary Palette */
    --deep-blue: #0a1628;
    --royal-navy: #12253f;
    --midnight: #0d1b2a;
    --sand-beige: #e8d5b7;
    --warm-gold: #c9a227;
    --gold-light: #e0c35c;
    --gold-dark: #a6851d;
    --off-white: #f8f4ef;
    --charcoal: #1a1a1a;
    --soft-gray: #6b7280;
    --desert-sand: #d4a574;
    --dusk-orange: #c77b4a;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(18,37,63,0.55) 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e0c35c 50%, #c9a227 100%);
    --gradient-dark: linear-gradient(180deg, transparent 0%, rgba(10,22,40,0.9) 100%);
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Effects */
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 4px 20px rgba(10, 22, 40, 0.08);
    --shadow-card: 0 10px 40px rgba(10, 22, 40, 0.12);
    --shadow-gold: 0 8px 25px rgba(201, 162, 39, 0.25);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--deep-blue);
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    position: relative;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.section-padding { padding: 5rem 0; }
.gold-text { color: var(--warm-gold); }

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-gold {
    background: var(--gradient-gold);
    color: var(--deep-blue);
    border-color: var(--warm-gold);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.35);
}
.btn-outline-gold {
    background: transparent;
    color: var(--warm-gold);
    border-color: var(--warm-gold);
}
.btn-outline-gold:hover {
    background: var(--warm-gold);
    color: var(--deep-blue);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--deep-blue);
    border-color: #fff;
}
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner { text-align: center; }
.desert-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201,162,39,0.2);
    border-top-color: var(--warm-gold);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    animation: spin 0.9s linear infinite;
}
.preloader-text {
    font-family: var(--font-display);
    color: var(--warm-gold);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: var(--transition);
    padding: 0.5rem 0;
}
.site-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 0.25rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff !important;
}
.brand-icon { font-size: 1.8rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.brand-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.85;
    color: var(--gold-light);
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 450;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--warm-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold-light) !important; }
.header-phone {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    gap: 0.4rem;
    align-items: center;
}
.header-phone:hover { color: var(--gold-light); }
.btn-book { padding: 0.55rem 1.4rem; font-size: 0.9rem; }

/* Mobile Offcanvas */
.offcanvas {
    background: var(--deep-blue);
    color: #fff;
}
.offcanvas-title { font-family: var(--font-display); color: var(--warm-gold); }
.offcanvas .nav-link {
    color: rgba(255,255,255,0.9) !important;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
}
.offcanvas .nav-link:hover { color: var(--warm-gold) !important; }
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.4rem 0.6rem;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}
.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-text {
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(232, 213, 183, 0.4);
    border-radius: 50%;
    animation: float-particle 12s infinite linear;
}
@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: #fff;
    text-align: center;
    animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.5rem; display: block; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}
.carousel-control-prev { left: 1.5rem; }
.carousel-control-next { right: 1.5rem; }
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; background: rgba(201,162,39,0.3); }
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
}
.carousel-indicators .active { background: var(--warm-gold); }

/* ========== ABOUT SECTION ========== */
.about-section {
    background: #fff;
    position: relative;
}
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.about-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.experience-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(10,22,40,0.9);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--warm-gold);
    backdrop-filter: blur(8px);
}
.experience-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--warm-gold);
}
.typing-text {
    min-height: 1.6em;
    color: var(--warm-gold);
    font-weight: 500;
}
.stat-item {
    text-align: center;
    padding: 1.2rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-gold);
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.parallax-divider {
    background: linear-gradient(135deg, var(--royal-navy), var(--deep-blue));
    color: #fff;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.parallax-divider .counter-item {
    text-align: center;
}
.parallax-divider .counter-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--warm-gold);
}
.parallax-divider .counter-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ========== ROOMS / CARDS ========== */
.rooms-section { background: var(--off-white); }
.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}
.room-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-card-body { padding: 1.6rem; }
.room-card-title {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}
.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}
.room-feature {
    font-size: 0.8rem;
    background: rgba(201,162,39,0.1);
    color: var(--gold-dark);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}
.room-card .btn { width: 100%; }

/* ========== SERVICES ========== */
.services-section { background: #fff; }
.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.1); }
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}
.service-icon {
    width: 48px;
    height: 48px;
    background: var(--warm-gold);
    color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: #fff;
}
.service-desc { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1rem; }
.service-card .btn { align-self: flex-start; padding: 0.4rem 1.1rem; font-size: 0.85rem; }

/* ========== TOUR PACKAGES ========== */
.package-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}
.package-img {
    height: 220px;
    overflow: hidden;
}
.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.package-card:hover .package-img img { transform: scale(1.07); }
.package-body { padding: 1.5rem; }
.package-highlights {
    margin: 1rem 0;
    font-size: 0.9rem;
}
.package-highlights li {
    padding: 0.25rem 0;
    padding-left: 1.3rem;
    position: relative;
}
.package-highlights li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-size: 0.7rem;
}

/* ========== ATTRACTIONS ========== */
.attractions-section { background: var(--off-white); }
.attraction-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
}
.attraction-title {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ========== ACTIVITIES ========== */
.activity-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}
.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}
.activity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--warm-gold);
}
.activity-title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.activity-desc { font-size: 0.9rem; color: var(--soft-gray); }

/* ========== COMPARISON ========== */
.comparison-section { background: #fff; }
.safari-type-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition);
}
.safari-type-card:hover { border-color: var(--warm-gold); }
.safari-type-card.featured {
    background: linear-gradient(135deg, var(--royal-navy), var(--deep-blue));
    color: #fff;
}
.safari-type-card.featured .section-title,
.safari-type-card.featured h3 { color: #fff; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.comparison-table th,
.comparison-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.comparison-table th {
    background: var(--deep-blue);
    color: #fff;
    font-weight: 500;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(201,162,39,0.05); }

/* ========== WHY CHOOSE ========== */
.why-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}
.why-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-card);
}
.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--deep-blue);
}
.why-title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.9rem; color: var(--soft-gray); }

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { background: var(--off-white); }
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
}
.testimonial-stars {
    color: var(--warm-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.testimonial-author {
    font-weight: 600;
    color: var(--deep-blue);
}
.testimonial-location {
    font-size: 0.9rem;
    color: var(--soft-gray);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

/* ========== FAQ ========== */
.faq-section { background: #fff; }
.accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.accordion-button {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--deep-blue);
    background: #fff;
    padding: 1.2rem 1.5rem;
}
.accordion-button:not(.collapsed) {
    background: var(--deep-blue);
    color: #fff;
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a227'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e0c35c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    padding: 1.2rem 1.5rem;
    background: #fff;
    color: var(--soft-gray);
}

/* ========== CONTACT FORM ========== */
.contact-section { background: var(--off-white); }
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}
.form-label {
    font-weight: 500;
    color: var(--deep-blue);
    margin-bottom: 0.4rem;
}
.form-control,
.form-select {
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--warm-gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.contact-info-card {
    background: linear-gradient(135deg, var(--royal-navy), var(--deep-blue));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}
.contact-info-card h3 {
    color: var(--warm-gold);
    margin-bottom: 1.5rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item i {
    font-size: 1.3rem;
    color: var(--warm-gold);
    margin-top: 0.2rem;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(18,37,63,0.85)),
                url('https://images.unsplash.com/photo-1509316785289-025f5b846b35?w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 5rem 0;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--deep-blue);
    color: rgba(255,255,255,0.85);
}
.footer-main { padding: 4rem 0 2.5rem; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.footer-heading {
    font-family: var(--font-display);
    color: var(--warm-gold);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--warm-gold); }
.footer-contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.footer-contact i { color: var(--warm-gold); margin-top: 0.2rem; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--warm-gold); }
.footer-social { display: flex; gap: 0.8rem; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.social-link:hover {
    background: var(--warm-gold);
    color: var(--deep-blue);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 0;
    font-size: 0.9rem;
}
.footer-legal a { color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: var(--warm-gold); }
.footer-legal .sep { margin: 0 0.5rem; opacity: 0.4; }

/* ========== FLOATING ACTIONS ========== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;
    transition: var(--transition);
}
.fab:hover { transform: scale(1.1); color: #fff; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--warm-gold); color: var(--deep-blue) !important; }
.fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}
.fab-whatsapp .fab-pulse { border: 2px solid #25D366; }
.fab-call .fab-pulse { border: 2px solid var(--warm-gold); }
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--deep-blue);
    color: var(--warm-gold);
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1040;
    box-shadow: var(--shadow-soft);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--warm-gold);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, rgba(10,22,40,0.85), rgba(18,37,63,0.7)),
                url('https://images.unsplash.com/photo-1473580044384-7bda361c6283?w=1600&q=80') center/cover no-repeat;
    padding: 10rem 0 5rem;
    color: #fff;
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}
.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 1.5rem;
}
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ========== UTILITIES ========== */
.text-gold { color: var(--warm-gold) !important; }
.bg-navy { background: var(--deep-blue); }
.bg-sand { background: var(--sand-beige); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .particle, .fab-pulse, .scroll-indicator { display: none; }
    html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.4rem; }
    .section-padding { padding: 3.5rem 0; }
    .about-image-wrap img { height: 360px; }
    .floating-actions { bottom: 1.2rem; right: 1rem; }
    .fab { width: 50px; height: 50px; font-size: 1.3rem; }
    .back-to-top { left: 1rem; bottom: 1.2rem; width: 44px; height: 44px; }
}
@media (max-width: 575.98px) {
    .hero-buttons .btn { width: 100%; }
    .stat-number { font-size: 2rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .gallery-item { height: 180px; }
}
