/* ============================================
   LE BONHEUR TRAVEL LTD - MAIN STYLESHEET
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --colour-purple: #3B1E6E;
    --colour-purple-dark: #2A1550;
    --colour-orange: #D4622A;
    --colour-orange-light: #E8804A;
    --colour-white: #FFFFFF;
    --colour-cream: #FAF7F2;
    --colour-gold: #C8A96E;
    --colour-text-dark: #1A1A2E;
    --colour-text-muted: #6B6B7B;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: var(--colour-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--colour-orange);
    color: var(--colour-white);
    box-shadow: 0 4px 20px rgba(212, 98, 42, 0.35);
}

.btn-primary:hover {
    background: var(--colour-orange-light);
    box-shadow: 0 6px 30px rgba(212, 98, 42, 0.5);
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    background: var(--colour-white);
    color: var(--colour-purple);
}

.btn-ghost-purple {
    background: transparent;
    border: 2px solid var(--colour-purple);
    color: var(--colour-purple);
}

.btn-ghost-purple:hover {
    background: var(--colour-purple);
    color: var(--colour-white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: var(--colour-purple-dark);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--colour-white);
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    color: var(--colour-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
}

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

.nav-link {
    color: var(--colour-white);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--colour-orange);
    transition: width 0.3s ease;
}

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

.nav-cta {
    margin-left: 20px;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--colour-white);
    transition: all 0.3s ease;
}

.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);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--colour-purple-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

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

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--colour-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    position: relative;
    height: 55vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Page-specific hero backgrounds */
.destinations-hero .page-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80');
}

.services-hero .page-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80');
}

.about-hero .page-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80');
}

.contact-hero .page-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1596005554384-d293674c91d7?w=1600&q=80');
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(59, 30, 110, 0.75) 0%,
        rgba(42, 21, 80, 0.85) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.page-hero-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--colour-orange);
    margin-bottom: 20px;
}

.page-hero-title {
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--colour-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--colour-cream);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(59, 30, 110, 0.08), rgba(59, 30, 110, 0.04));
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-tag span {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--colour-purple);
}

.section-tag i {
    color: var(--colour-orange);
    font-size: 0.8rem;
}

.section-title {
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--colour-purple);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--colour-text-muted);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--colour-purple-dark);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
    line-height: 1.8;
}

.footer-column h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--colour-white);
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--colour-orange);
}

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

.footer-contact-item i {
    color: var(--colour-gold);
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
}

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

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

.social-links a:hover {
    background: var(--colour-orange);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--colour-cream);
    opacity: 0.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   CTA SECTION (Common)
   ============================================ */
.cta-section {
    padding: 120px 5%;
    background: var(--colour-orange);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(15deg);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.1));
    transform: rotate(-15deg);
    pointer-events: none;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
}

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

.cta-icon i {
    font-size: 2rem;
    color: var(--colour-white);
}

.cta-container h2 {
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--colour-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-container p {
    font-size: 1.15rem;
    color: var(--colour-white);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-white {
    background: var(--colour-white);
    color: var(--colour-purple);
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-ghost {
    background: transparent;
    border: 2px solid var(--colour-white);
    color: var(--colour-white);
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-cta-ghost:hover {
    background: var(--colour-white);
    color: var(--colour-purple);
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .footer-contact-item {
        justify-content: center;
    }

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


/* ============================================
   ============================================
   PAGE-SPECIFIC STYLES - INDEX.HTML (HOME)
   ============================================
   ============================================ */

/* Hero Section (Home) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=80');
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(59, 30, 110, 0.7) 0%,
        rgba(42, 21, 80, 0.8) 50%,
        rgba(26, 26, 46, 0.95) 100%
    );
}

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

.hero-line {
    width: 60px;
    height: 3px;
    background: var(--colour-orange);
    margin: 0 auto 25px;
}

.hero-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--colour-cream);
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--colour-white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.6s ease forwards;
}

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

.hero-subtitle {
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--colour-cream);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--colour-white);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Floating Stats Bar (Home) */
.floating-stats {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    padding: 0 5%;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--colour-white);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat-item {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(59, 30, 110, 0.15), transparent);
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(59, 30, 110, 0.03), rgba(212, 98, 42, 0.03));
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--colour-purple), var(--colour-purple-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(0deg) scale(1.1);
}

.stat-icon i {
    font-size: 1.4rem;
    color: var(--colour-gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--colour-purple);
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--colour-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Destinations Section (Home) */
.destinations-section {
    padding: 120px 5% 100px;
    background: var(--colour-white);
    position: relative;
    overflow: hidden;
}

.destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 30, 110, 0.02), rgba(212, 98, 42, 0.03));
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.section-intro {
    max-width: 600px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.dest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dest-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.dest-card.featured {
    grid-row: span 2;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(26, 26, 46, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.dest-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--colour-orange);
}

.dest-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--colour-white);
    margin-bottom: 8px;
}

.dest-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dest-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--colour-cream);
    opacity: 0.9;
}

.dest-location i {
    color: var(--colour-gold);
    font-size: 0.75rem;
}

.dest-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.dest-price .from {
    font-size: 0.8rem;
    color: var(--colour-cream);
    opacity: 0.7;
}

.dest-price .amount {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--colour-white);
}

.dest-price .per-person {
    font-size: 0.75rem;
    color: var(--colour-cream);
    opacity: 0.7;
}

.dest-departure {
    font-size: 0.75rem;
    color: var(--colour-cream);
    opacity: 0.85;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-departure i {
    color: var(--colour-orange);
    font-size: 0.7rem;
}

.dest-action {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--colour-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.dest-card:hover .dest-action {
    opacity: 1;
    transform: translateY(0);
}

.dest-action i {
    color: var(--colour-white);
    font-size: 1.1rem;
}

.destinations-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* About Section (Home) */
.about-section {
    padding: 120px 5%;
    background: var(--colour-cream);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 98, 42, 0.08), transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 30, 110, 0.06), transparent 70%);
    border-radius: 50%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--colour-white);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--colour-white);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.about-experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--colour-orange);
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--colour-text-muted);
    margin-top: 5px;
}

.about-content {
    padding-right: 20px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 98, 42, 0.1), rgba(212, 98, 42, 0.05));
    border-radius: 30px;
    margin-bottom: 25px;
}

.about-tag span {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--colour-orange);
}

.about-content h2 {
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--colour-purple);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: var(--colour-text-muted);
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

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

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--colour-purple), var(--colour-purple-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--colour-gold);
    font-size: 1rem;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--colour-text-dark);
}

/* Services Section (Home) */
.services-section {
    padding: 120px 5%;
    background: var(--colour-purple);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23ffffff' fill-opacity='0.02'%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");
    pointer-events: none;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.services-header .section-tag {
    background: rgba(255, 255, 255, 0.1);
}

.services-header .section-tag span {
    color: var(--colour-gold);
}

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

.services-header .section-subtitle {
    color: var(--colour-cream);
    opacity: 0.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--colour-orange), var(--colour-orange-light));
    border-radius: 50%;
    opacity: 0.15;
    transform: scale(1);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-bg {
    transform: scale(1.2);
    opacity: 0.25;
}

.service-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--colour-orange), var(--colour-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--colour-white);
}

.service-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--colour-white);
    margin-bottom: 15px;
    position: relative;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--colour-gold);
    position: relative;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--colour-gold);
    transition: width 0.3s ease;
}

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

.service-link i {
    transition: transform 0.3s ease;
}

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

.services-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Testimonials Section (Home) */
.testimonials-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, var(--colour-cream) 0%, var(--colour-white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
}

.testimonials-track-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -5%;
    padding: 20px 5%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--colour-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 98, 42, 0.1), rgba(212, 98, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote-icon i {
    font-size: 1.2rem;
    color: var(--colour-orange);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--colour-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--colour-text-muted);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--colour-cream);
}

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

.testimonial-info h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--colour-purple);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--colour-orange);
}

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

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .dest-card.featured {
        grid-row: span 1;
    }

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

    .about-img-float {
        right: 20px;
        bottom: -30px;
    }

    .about-experience-badge {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .floating-stats {
        margin-top: -60px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 30px 20px;
    }

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

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

    .dest-card {
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-float {
        display: none;
    }

    .about-experience-badge {
        top: auto;
        bottom: 20px;
        left: 20px;
    }

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

    .testimonial-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none;
    }

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


/* ============================================
   ============================================
   PAGE-SPECIFIC STYLES - DESTINATIONS.HTML
   ============================================
   ============================================ */

/* Categories Section */
.categories-section {
    padding: 80px 5%;
    background: var(--colour-cream);
}

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

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--colour-white);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--colour-purple), var(--colour-purple-dark));
    box-shadow: 0 10px 30px rgba(59, 30, 110, 0.3);
}

.category-tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 98, 42, 0.1), rgba(212, 98, 42, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-tab.active .category-tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.category-tab-icon i {
    font-size: 1rem;
    color: var(--colour-orange);
    transition: color 0.3s ease;
}

.category-tab.active .category-tab-icon i {
    color: var(--colour-gold);
}

.category-tab-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--colour-text-dark);
    transition: color 0.3s ease;
}

.category-tab.active .category-tab-text {
    color: var(--colour-white);
}

.category-tab-count {
    padding: 4px 10px;
    background: rgba(59, 30, 110, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--colour-purple);
    transition: all 0.3s ease;
}

.category-tab.active .category-tab-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--colour-cream);
}

/* Destinations Showcase - New Card Design */
.destinations-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.destinations-showcase .dest-card {
    background: var(--colour-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
}

.destinations-showcase .dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(59, 30, 110, 0.15);
}

.destinations-showcase .dest-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.destinations-showcase .dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destinations-showcase .dest-card:hover .dest-card-image img {
    transform: scale(1.08);
}

.destinations-showcase .dest-card-location {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(59, 30, 110, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    z-index: 2;
}

.destinations-showcase .dest-card-location i {
    font-size: 0.75rem;
    color: var(--colour-white);
}

.destinations-showcase .dest-card-location span {
    font-size: 0.8rem;
    color: var(--colour-white);
    font-weight: 500;
}

.destinations-showcase .dest-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destinations-showcase .dest-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.destinations-showcase .dest-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--colour-text-dark);
    margin: 0;
}

.destinations-showcase .dest-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #FFF8E7;
    padding: 6px 12px;
    border-radius: 20px;
}

.destinations-showcase .dest-card-rating i {
    color: #F5A623;
    font-size: 0.85rem;
}

.destinations-showcase .dest-card-rating span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--colour-text-dark);
}

.destinations-showcase .dest-card-price {
    margin-bottom: 20px;
}

.destinations-showcase .dest-card-price .price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.destinations-showcase .dest-card-price .price-from {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--colour-text-light);
}

.destinations-showcase .dest-card-price .price-amount {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--colour-purple);
}

.destinations-showcase .dest-card-price .price-person {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--colour-text-light);
}

.destinations-showcase .dest-card-price .price-departure {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: var(--colour-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.destinations-showcase .dest-card-price .price-departure i {
    color: var(--colour-orange);
    font-size: 0.75rem;
}

.destinations-showcase .dest-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.destinations-showcase .dest-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--colour-text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.destinations-showcase .dest-card-features li:last-child {
    border-bottom: none;
}

.destinations-showcase .dest-card-features li i {
    color: var(--colour-orange);
    font-size: 0.9rem;
}

.destinations-showcase .dest-card-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--colour-purple-dark);
    color: var(--colour-white);
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.destinations-showcase .dest-card-btn:hover {
    background: var(--colour-purple);
    transform: translateY(-2px);
}

/* Destinations Page Responsive */
@media (max-width: 768px) {
    .destinations-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destinations-showcase .dest-card-image {
        height: 200px;
    }
}

/* Experiences Section */
.experiences-section {
    padding: 100px 0;
    background: var(--colour-white);
    overflow: hidden;
}

.experiences-header {
    padding: 0 5%;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.experiences-header-left {
    max-width: 500px;
}

.experiences-header h2 {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--colour-purple);
    margin-bottom: 10px;
}

.experiences-header p {
    color: var(--colour-text-muted);
}

.scroll-controls {
    display: flex;
    gap: 15px;
}

.scroll-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--colour-purple);
    background: transparent;
    color: var(--colour-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-control:hover {
    background: var(--colour-purple);
    color: var(--colour-white);
}

.experiences-track-wrapper {
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.experiences-track-wrapper::-webkit-scrollbar {
    display: none;
}

.experiences-track {
    display: flex;
    gap: 30px;
    padding: 20px 5%;
    width: max-content;
}

.experience-card {
    flex: 0 0 350px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.experience-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(59, 30, 110, 0.3) 0%,
        rgba(26, 26, 46, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.experience-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.experience-icon i {
    font-size: 1.5rem;
    color: var(--colour-gold);
}

.experience-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--colour-white);
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.6;
}

.experience-meta {
    display: flex;
    gap: 20px;
}

.experience-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--colour-cream);
}

.experience-meta-item i {
    color: var(--colour-orange);
    font-size: 0.8rem;
}

/* Trust Section */
.trust-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--colour-purple-dark), var(--colour-purple));
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23ffffff' fill-opacity='0.03'%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");
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--colour-orange), var(--colour-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.trust-card:hover .trust-icon {
    transform: rotate(10deg) scale(1.1);
}

.trust-icon i {
    font-size: 1.8rem;
    color: var(--colour-white);
}

.trust-card h3 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--colour-white);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
    line-height: 1.7;
}

/* Destinations Page Responsive */
@media (max-width: 1200px) {
    .dest-card.large {
        grid-column: span 12;
    }

    .dest-card.medium,
    .dest-card.small,
    .dest-card.wide {
        grid-column: span 6;
    }

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

@media (max-width: 1024px) {
    .category-tabs {
        gap: 10px;
    }

    .category-tab {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .category-tab {
        padding: 10px 16px;
    }

    .category-tab-icon {
        width: 32px;
        height: 32px;
    }

    .dest-card.large,
    .dest-card.medium,
    .dest-card.small,
    .dest-card.wide {
        grid-column: span 12;
        height: 300px;
    }

    .experience-card {
        flex: 0 0 280px;
        height: 380px;
    }

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

    .experiences-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}


/* ============================================
   ============================================
   PAGE-SPECIFIC STYLES - SERVICES.HTML
   ============================================
   ============================================ */

/* Service Sections */
.service-section {
    padding: 100px 5%;
    overflow: hidden;
}

.service-section:nth-child(odd) {
    background: var(--colour-white);
}

.service-section:nth-child(even) {
    background: var(--colour-cream);
}

.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.service-section:nth-child(even) .service-container {
    direction: rtl;
}

.service-section:nth-child(even) .service-container > * {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-content {
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--colour-orange);
}

.service-section:nth-child(even) .service-content::before {
    left: auto;
    right: -30px;
}

.service-content .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--colour-purple), var(--colour-purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(59, 30, 110, 0.3);
}

.service-content .service-icon i {
    font-size: 1.8rem;
    color: var(--colour-gold);
}

.service-content h2 {
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--colour-purple);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-content p {
    color: var(--colour-text-muted);
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--colour-text-dark);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--colour-orange);
}

/* Why Choose Us (Services Page) */
.why-section {
    padding: 100px 5%;
    background: var(--colour-cream);
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--colour-purple);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    padding: 45px 35px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--colour-purple), var(--colour-purple-dark));
    z-index: 0;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(59, 30, 110, 0.3);
}

.why-card > * {
    position: relative;
    z-index: 2;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-card-icon i {
    font-size: 1.5rem;
    color: var(--colour-gold);
}

.why-card h3 {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--colour-white);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--colour-cream);
    opacity: 0.9;
    line-height: 1.8;
}

/* CTA Banner (Services Page) */
.cta-banner {
    padding: 100px 5%;
    background: var(--colour-orange);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--colour-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--colour-white);
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Services Page Responsive */
@media (max-width: 1024px) {
    .service-container {
        gap: 50px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

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

    .service-section:nth-child(even) .service-container {
        direction: ltr;
    }

    .service-content::before {
        left: -15px;
        width: 3px;
    }

    .service-section:nth-child(even) .service-content::before {
        left: -15px;
        right: auto;
    }

    .service-image img {
        height: 300px;
    }
}


/* ============================================
   ============================================
   PAGE-SPECIFIC STYLES - ABOUT.HTML
   ============================================
   ============================================ */

/* Story Section */
.story-section {
    padding: 100px 5%;
    background: var(--colour-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.story-content h2 {
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--colour-purple);
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-content p {
    color: var(--colour-text-muted);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.story-divider {
    width: 60px;
    height: 3px;
    background: var(--colour-orange);
    margin: 30px 0;
}

.story-image-wrapper {
    position: relative;
}

.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--colour-orange);
    border-radius: 16px;
    z-index: 0;
}

.story-image {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.story-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--colour-white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.story-badge .badge-number {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--colour-orange);
    line-height: 1;
}

.story-badge .badge-text {
    font-size: 0.85rem;
    color: var(--colour-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-badge span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--colour-purple);
}

/* Founder Section */
.founder-section {
    padding: 100px 5%;
    background: var(--colour-cream);
}

.founder-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.founder-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 30, 110, 0.4), transparent 50%);
    z-index: 1;
}

.founder-image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.founder-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px solid var(--colour-gold);
    border-radius: 25px;
    z-index: -1;
}

.founder-content h2 {
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--colour-purple);
    margin-bottom: 10px;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--colour-orange);
    font-weight: 500;
    margin-bottom: 30px;
}

.founder-content p {
    color: var(--colour-text-muted);
    line-height: 2;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.founder-quote {
    position: relative;
    padding: 30px 0 30px 30px;
    margin: 40px 0;
    border-left: 4px solid var(--colour-orange);
}

.founder-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--colour-purple);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 100px 5%;
    background: var(--colour-purple);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23ffffff' fill-opacity='0.03'%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");
    pointer-events: none;
}

.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 1;
}

.values-header h2 {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--colour-white);
    margin-bottom: 15px;
}

.values-header p {
    color: var(--colour-cream);
    opacity: 0.85;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--colour-orange), var(--colour-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(10deg) scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--colour-white);
}

.value-card h3 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--colour-white);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 100px 5%;
    background: var(--colour-cream);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-card {
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.mission-card.purple {
    background: var(--colour-purple);
}

.mission-card.orange {
    background: var(--colour-orange);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--colour-white);
}

.mission-card h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--colour-white);
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--colour-cream);
    opacity: 0.9;
    line-height: 1.8;
}

/* Director Section */
.director-section {
    padding: 100px 5%;
    background: var(--colour-white);
}

.director-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.director-image-wrapper {
    display: inline-block;
    margin-bottom: 30px;
}

.director-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(59, 30, 110, 0.2);
    border: 5px solid var(--colour-white);
    outline: 3px solid var(--colour-orange);
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-container h2 {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--colour-purple);
    margin-bottom: 5px;
}

.director-title {
    font-size: 1rem;
    color: var(--colour-orange);
    font-weight: 500;
    margin-bottom: 25px;
}

.director-container > p {
    color: var(--colour-text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-ghost-purple {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid var(--colour-purple);
    background: transparent;
    color: var(--colour-purple);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-ghost-purple:hover {
    background: var(--colour-purple);
    color: var(--colour-white);
}

/* Value Items (alternative to value-card) */
.value-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.value-item .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--colour-orange), var(--colour-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.value-item:hover .value-icon {
    transform: rotate(10deg) scale(1.1);
}

.value-item h3 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--colour-white);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--colour-cream);
    opacity: 0.8;
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .story-grid,
    .founder-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-image-wrapper::before {
        display: none;
    }

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

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .founder-image-frame img {
        height: 400px;
    }

    .founder-decoration {
        display: none;
    }

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

    .story-badge {
        left: 20px;
        bottom: 20px;
    }

    .mission-card {
        padding: 40px 30px;
    }

    .director-image {
        width: 150px;
        height: 150px;
    }
}


/* ============================================
   ============================================
   PAGE-SPECIFIC STYLES - CONTACT.HTML
   ============================================
   ============================================ */

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: var(--colour-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    position: relative;
    padding-left: 30px;
    align-self: start;
}

.contact-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--colour-orange);
}

.contact-info h2 {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--colour-purple);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--colour-text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--colour-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 1.1rem;
    color: var(--colour-gold);
}

.contact-item-content h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--colour-text-dark);
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--colour-text-muted);
    font-size: 0.95rem;
}

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

.social-links-contact a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--colour-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colour-white);
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--colour-orange);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--colour-white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--colour-purple);
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--colour-text-dark);
    margin-bottom: 10px;
}

.form-group label span {
    color: var(--colour-orange);
}

.form-control {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #E5E5E5;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: var(--colour-text-dark);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--colour-purple);
}

.form-control::placeholder {
    color: #AAAAAA;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B7B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

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

.travel-type-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.travel-type-pill {
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #E5E5E5;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--colour-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.travel-type-pill:hover {
    border-color: var(--colour-purple);
}

.travel-type-pill.active {
    background: var(--colour-purple);
    border-color: var(--colour-purple);
    color: var(--colour-white);
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    margin-top: 15px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--colour-text-muted);
}

/* Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--colour-orange), var(--colour-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

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

.success-icon i {
    font-size: 2.5rem;
    color: var(--colour-white);
}

.form-success h3 {
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--colour-purple);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--colour-text-muted);
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

/* Map Section */
.map-section {
    padding: 0 5% 100px;
    background: var(--colour-cream);
}

.map-card {
    max-width: 1300px;
    margin: 0 auto;
    background: var(--colour-white);
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--colour-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-card i {
    font-size: 2rem;
    color: var(--colour-orange);
}

.map-card p {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--colour-purple);
}

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

    .contact-info::before {
        display: none;
    }

    .contact-info {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 35px 25px;
    }

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

    .map-card {
        flex-direction: column;
        text-align: center;
    }
}
