
/* Additional Styles for About, Services, and Contact Pages */


/* ========================================
   CSS Custom Properties & Variables
   ======================================== */
:root {
    /* Brand Colors */
    --dark-navy: #0B1D51;
    --lavender-purple: #725CAD;
    --light-blue: #8CCDEB;
    --soft-yellow: #FFE3A9;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #2c3e50;
    --black: #000000;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    
    /* Typography */
    --font-amiri: 'Amiri', serif;
    --font-sahitya: 'Sahitya', serif;
    --font-palanquin: 'Palanquin', sans-serif;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 4rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(11, 29, 81, 0.12), 0 1px 2px rgba(11, 29, 81, 0.24);
    --shadow-md: 0 4px 6px rgba(11, 29, 81, 0.07), 0 2px 4px rgba(11, 29, 81, 0.06);
    --shadow-lg: 0 10px 15px rgba(11, 29, 81, 0.1), 0 4px 6px rgba(11, 29, 81, 0.05);
    --shadow-xl: 0 20px 25px rgba(11, 29, 81, 0.1), 0 10px 10px rgba(11, 29, 81, 0.04);
    --shadow-2xl: 0 25px 50px rgba(11, 29, 81, 0.25);
    --shadow-inner: inset 0 2px 4px rgba(11, 29, 81, 0.06);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--lavender-purple), var(--light-blue));
    --gradient-secondary: linear-gradient(135deg, var(--dark-navy), var(--lavender-purple));
    --gradient-hero: linear-gradient(135deg, var(--dark-navy) 0%, var(--lavender-purple) 50%, var(--light-blue) 100%);
    --gradient-overlay: linear-gradient(45deg, rgba(11, 29, 81, 0.8), rgba(114, 92, 173, 0.6));
    --gradient-text: linear-gradient(135deg, var(--soft-yellow), var(--light-blue));
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* Dark theme variables for future use */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: var(--dark-navy);
        --text-primary: var(--white);
        --bg-secondary: var(--lavender-purple);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    :root {
        --transition-fast: 0s;
        --transition-base: 0s;
        --transition-slow: 0s;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-palanquin);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ========================================
   Typography System
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-amiri);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--dark-navy);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
}

a {
    color: var(--lavender-purple);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover,
a:focus {
    color: var(--dark-navy);
    text-decoration: underline;
}

/* Special typography classes */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-family: var(--font-sahitya);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--fs-xl);
    color: var(--medium-gray);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    text-align: center;
    font-weight: 400;
}

.lead {
    font-size: var(--fs-xl);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* ========================================
   Layout Components
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-4xl) 0;
}

.bg-navy {
    background: var(--dark-navy);
}

.bg-light {
    background: var(--light-gray);
}

.bg-gradient {
    background: var(--gradient-primary);
}

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

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-yellow {
    color: var(--soft-yellow) !important;
}

.text-blue {
    color: var(--light-blue) !important;
}

/* ========================================
   Button System
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-palanquin);
    font-weight: 600;
    font-size: var(--fs-base);
    line-height: 1;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
    text-decoration: none;
}

.btn-outline-light {
    border-color: var(--soft-yellow);
    color: var(--soft-yellow);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--soft-yellow);
    color: var(--dark-navy);
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-outline-primary {
    border-color: var(--lavender-purple);
    color: var(--lavender-purple);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--lavender-purple);
    color: var(--white);
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-lg {
    padding: 15px 40px;
    font-size: var(--fs-lg);
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--fs-sm);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ========================================
   Navigation
   ======================================== */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 20px;
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-nav.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
}

.navbar-brand .brand-text {
    font-family: var(--font-sahitya);
    font-size: var(--fs-2xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.navbar-brand:hover .brand-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: var(--font-palanquin);
    font-weight: 500;
    color: var(--dark-navy) !important;
    margin: 0 var(--space-md);
    padding: 8px 16px !important;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    transition: left var(--transition-base);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(114, 92, 173, 0.25);
}

.navbar-toggler.active {
    transform: rotate(90deg);
}

/* ========================================
   Hero Sections
   ======================================== */
.hero-section,
.about-hero,
.services-hero,
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    will-change: transform;
}

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

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 227, 169, 0.1);
    animation: float 8s ease-in-out infinite;
    will-change: transform;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-20px) rotate(90deg) scale(1.1); 
    }
    50% { 
        transform: translateY(-10px) rotate(180deg) scale(0.9); 
    }
    75% { 
        transform: translateY(-30px) rotate(270deg) scale(1.05); 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

.hero-image-container {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
    will-change: transform;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* ========================================
   Statistics & Counters
   ======================================== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: var(--soft-yellow);
    font-family: var(--font-sahitya);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    display: block;
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Route Explorer
   ======================================== */
.route-map-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-base);
    will-change: transform;
}

.route-map-container:hover {
    transform: scale(1.02);
}

.route-map {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.route-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    background: var(--soft-yellow);
    color: var(--dark-navy);
    padding: 8px 12px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: var(--fs-sm);
    z-index: 10;
    white-space: nowrap;
    transform-origin: center;
}

.marker::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--soft-yellow);
}

.marker:hover,
.marker.active {
    transform: scale(1.15) translateY(-5px);
    background: var(--lavender-purple);
    color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 20;
}

.marker:hover::before,
.marker.active::before {
    border-top-color: var(--lavender-purple);
}

.marker-1 { top: 76%; left: 52%; }
.marker-2 { top: 20%; right: 30%; }
.marker-3 { bottom: 30%; left: 30%; }

.marker-label {
    margin-left: var(--space-xs);
}

.route-details {
    padding-left: var(--space-xl);
}

.route-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-base);
    display: none;
    border-left: 4px solid transparent;
}

.route-card.active {
    opacity: 1;
    display: block;
    transform: translateX(0);
    border-left-color: var(--lavender-purple);
}

.route-card h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

.route-features {
    list-style: none;
    padding: 0;
    margin-top: var(--space-lg);
}

.route-features li {
    display: flex;
    align-items: center;
    margin: var(--space-md) 0;
    color: var(--dark-gray);
    font-size: var(--fs-sm);
}

.route-features i {
    color: var(--lavender-purple);
    margin-right: var(--space-md);
    width: 20px;
    flex-shrink: 0;
}





.value-card:hover,
.service-card:hover,
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.value-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-base);
}

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

.value-icon i {
    font-size: var(--fs-2xl);
    color: var(--white);
}

.value-card h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

.map-info p {
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* ========================================
   FAQ & Accordion
   ======================================== */
.accordion-item {
    border: none;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.accordion-item:hover {
    box-shadow: var(--shadow-xl);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--white);
    color: var(--dark-navy);
    font-weight: 600;
    padding: var(--space-lg) var(--space-xl);
    border: none;
    font-size: var(--fs-lg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: var(--lavender-purple);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(114, 92, 173, 0.25);
    border-color: var(--lavender-purple);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23725cad'%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");
    transition: transform var(--transition-base);
}

.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='white'%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");
    transform: rotate(180deg);
}

.accordion-body {
    padding: var(--space-xl);
    background: var(--white);
    color: var(--dark-gray);
    line-height: 1.7;
    border-top: 1px solid var(--light-gray);
}

/* ========================================
   Journal & Blog Components
   ======================================== */
.journal-entry {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    height: 100%;
}

.journal-entry:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.entry-date {
    color: var(--soft-yellow);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journal-entry h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: var(--fs-xl);
}

.journal-entry p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.read-more {
    color: var(--soft-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.read-more:hover {
    color: var(--light-blue);
    transform: translateX(5px);
    text-decoration: none;
}

/* ========================================
   Sustainability & Features
   ======================================== */
.sustainability-content {
    padding: var(--space-xl) 0;
}

.sustainability-features {
    margin-top: var(--space-xl);
}

.sustainability-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sustainability-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.9));
    color: var(--white);
    padding: var(--space-xl);
}

.overlay-content h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

.service-feature {
    text-align: center;
    padding: var(--space-lg);
    transition: all var(--transition-base);
    border-radius: var(--radius-lg);
}

.service-feature:hover {
    background: rgba(114, 92, 173, 0.05);
    transform: translateY(-5px);
}

.service-feature i {
    font-size: var(--fs-2xl);
    color: var(--lavender-purple);
    margin-bottom: var(--space-md);
}

.service-feature h6 {
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.service-feature p {
    color: var(--dark-gray);
    font-size: var(--fs-sm);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   Package & Crew Components
   ======================================== */
.package-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.package-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.package-card.premium {
    border: 2px solid var(--soft-yellow);
    background: rgba(255, 227, 169, 0.1);
}

.package-card h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: var(--fs-xl);
}

.package-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.package-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
}

.package-card li::before {
    content: '✓';
    color: var(--soft-yellow);
    font-weight: bold;
    margin-right: var(--space-sm);
    width: 16px;
    flex-shrink: 0;
}

.package-price {
    color: var(--soft-yellow);
    font-size: var(--fs-xl);
    font-weight: 700;
    font-family: var(--font-sahitya);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-title {
    font-family: var(--font-sahitya);
    font-size: var(--fs-2xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.footer-subtitle {
    color: var(--soft-yellow);
    margin-bottom: var(--space-lg);
    font-weight: 600;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: var(--space-md) 0;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all var(--transition-base);
    font-size: var(--fs-sm);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-blue);
    transform: translateX(5px);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: var(--space-2xl) 0 var(--space-lg);
}

.footer-copyright,
.footer-contact {
    opacity: 0.7;
    font-size: var(--fs-sm);
    margin: 0;
}

.footer-contact {
    text-align: right;
}

.footer-contact i {
    color: var(--light-blue);
    margin: 0 var(--space-xs);
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 120px 0 var(--space-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.legal-header h1 {
    font-family: var(--font-sahitya);
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-bottom: var(--space-lg);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.legal-header .lead {
    font-size: var(--fs-xl);
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 2;
}

.legal-content {
    background: var(--white);
    position: relative;
}

.legal-document {
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    line-height: 1.8;
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.legal-document h2 {
    color: var(--dark-navy);
    font-size: var(--fs-2xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--lavender-purple);
}

.legal-document h3 {
    color: var(--lavender-purple);
    font-size: var(--fs-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-document p {
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.legal-document ul,
.legal-document ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.legal-document li {
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.legal-document .contact-info {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--lavender-purple);
    margin: var(--space-xl) 0;
}

.legal-document .contact-info p {
    margin: 0;
    line-height: 1.6;
}

.legal-footer {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.legal-footer em {
    color: var(--lavender-purple);
    font-weight: 600;
    font-style: normal;
}

/* Refund Policy Specific */
.refund-schedule {
    margin: var(--space-xl) 0;
}

.refund-tier {
    background: var(--white);
    border-left: 4px solid var(--lavender-purple);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.refund-tier::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
}

.refund-tier:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.refund-tier:hover::before {
    width: 8px;
}

.refund-tier h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    font-size: var(--fs-lg);
}

.refund-tier h4 i {
    color: var(--lavender-purple);
    margin-right: var(--space-md);
    width: 20px;
    flex-shrink: 0;
}

.refund-tier p strong {
    color: var(--lavender-purple);
    font-size: var(--fs-lg);
    display: block;
    margin-bottom: var(--space-xs);
}

.refund-tier p:last-child {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* ========================================
   Notifications & Alerts
   ======================================== */
.notification {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-toast);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    max-width: 400px;
    border-left: 4px solid var(--success);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: var(--success);
}

.notification.error {
    border-left-color: var(--danger);
}

.notification-content {
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.notification-content i {
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.notification.success i {
    color: var(--success);
}

.notification.error i {
    color: var(--danger);
}

.notification-close {
    background: none;
    border: none;
    margin-left: auto;
    color: var(--medium-gray);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.notification-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--space-lg) 0;
    z-index: var(--z-toast);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(11, 29, 81, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--soft-yellow);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-toast);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.page-loader.show {
    opacity: 1;
    visibility: visible;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--soft-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--space-lg);
}

.loader-content p {
    color: var(--white);
    font-size: var(--fs-lg);
    margin: 0;
}

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

/* ========================================
   Utility Classes
   ======================================== */
.min-vh-75 {
    min-height: 75vh;
}

.min-vh-100 {
    min-height: 100vh;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.fade-in-element.in-view {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

.zoomed {
    transform: scale(1.1) !important;
    z-index: 20;
    box-shadow: var(--shadow-2xl) !important;
}

.bg-loaded {
    opacity: 1;
    transition: opacity var(--transition-slow);
}

.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Skip Navigation for Accessibility */
.skip-nav {
    position: absolute;
    top: -40px;
    left: var(--space-sm);
    background: var(--dark-navy);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    text-decoration: none;
    z-index: var(--z-toast);
    border-radius: var(--radius-sm);
    transition: top var(--transition-base);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.skip-nav:focus {
    top: var(--space-sm);
    color: var(--white);
    text-decoration: none;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .floating-nav {
        width: 95%;
    }
    
    .carousel-control-prev {
        left: -60px;
    }
    
    .carousel-control-next {
        right: -60px;
    }
}

@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }
    
    .route-details {
        padding-left: 0;
        margin-top: var(--space-xl);
    }
    
    .event-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-image.main {
        grid-row: auto;
    }
    
    .timeline-event {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: var(--space-md);
        min-width: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 3rem;
        --space-3xl: 2.5rem;
        --space-2xl: 2rem;
    }
    
    .floating-nav {
        width: 95%;
        top: 10px;
        padding: 8px 15px;
    }
    
    .section-padding {
        padding: var(--space-3xl) 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .moodboard-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-md);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-top: var(--space-2xl);
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin: var(--space-lg);
        max-width: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .yacht-pricing {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-contact {
        text-align: left;
        margin-top: var(--space-md);
    }
    
    .legal-document {
        padding: var(--space-2xl) var(--space-lg);
        margin-top: -30px;
    }
    
    .legal-header {
        padding: 100px 0 var(--space-2xl);
    }
    
    .notification {
        right: var(--space-sm);
        left: var(--space-sm);
        max-width: none;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .contact-info-card {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .yacht-features {
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--space-lg);
    }
    
    .review-card {
        padding: var(--space-xl) var(--space-lg);
        margin: var(--space-sm);
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .refund-tier {
        padding: var(--space-lg);
        margin-bottom: var(--space-md);
    }
    
    .refund-tier h4 {
        font-size: var(--fs-base);
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

/* Print Styles */
@media print {
    .floating-nav,
    .cookie-banner,
    .notification,
    .page-loader {
        display: none !important;
    }
    
    .legal-document {
        box-shadow: none;
        margin-top: 0;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
}

.value-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: all var(--transition-base);
}

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

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

.service-link {
    color: var(--lavender-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.service-link:hover {
    color: var(--dark-navy);
    transform: translateX(5px);
}

/* Team Cards */
.team-card {
    overflow: hidden;
}

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

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

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

.team-info {
    padding: var(--space-xl);
}

.team-role {
    color: var(--lavender-purple);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.team-credentials span {
    background: var(--light-gray);
    color: var(--dark-navy);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 500;
}

/* ========================================
   Yacht & Service Specific Cards
   ======================================== */
.yacht-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
}

.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.yacht-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.yacht-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--soft-yellow);
    color: var(--dark-navy);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.yacht-badge.premium {
    background: var(--lavender-purple);
    color: var(--white);
}

.yacht-badge.expedition {
    background: var(--light-blue);
    color: var(--dark-navy);
}

.yacht-details {
    padding: var(--space-xl);
}

.yacht-description {
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.yacht-specs {
    margin-bottom: var(--space-lg);
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
    font-size: var(--fs-sm);
}

.spec-item i {
    color: var(--lavender-purple);
    margin-right: var(--space-md);
    width: 20px;
    flex-shrink: 0;
}

.yacht-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.feature-tag {
    background: var(--light-gray);
    color: var(--dark-navy);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: var(--fs-xs);
    font-weight: 500;
}

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

.price {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--lavender-purple);
    font-family: var(--font-sahitya);
}

/* ========================================
   Event & Feature Components
   ======================================== */
.event-type,
.feature-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.event-type:hover,
.feature-item:hover,
.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.event-type i,
.feature-item i,
.benefit-item i {
    font-size: var(--fs-xl);
    color: var(--lavender-purple);
    margin-right: var(--space-lg);
    margin-top: var(--space-xs);
    width: 30px;
    flex-shrink: 0;
}

.event-type h5,
.feature-item h5,
.benefit-item h5 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-lg);
}

.event-type p,
.feature-item p,
.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Event Gallery */
.event-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-md);
    height: 400px;
}

.event-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.event-image.main {
    grid-row: 1 / 3;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.event-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.9));
    color: var(--white);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.event-image:hover .image-overlay {
    transform: translateY(0);
}

.event-image .image-overlay h4 {
    color: var(--white);
    margin: 0;
    font-size: var(--fs-lg);
}

/* ========================================
   Pricing Components
   ======================================== */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured {
    border-color: var(--lavender-purple);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lavender-purple);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl) var(--space-lg);
    background: var(--light-gray);
}

.pricing-header h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-2xl);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
}

.currency {
    font-size: var(--fs-xl);
    color: var(--lavender-purple);
    font-weight: 600;
}

.amount {
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: var(--dark-navy);
    font-family: var(--font-sahitya);
    line-height: 1;
}

.period {
    font-size: var(--fs-base);
    color: var(--medium-gray);
    font-weight: 500;
}

.pricing-features {
    padding: var(--space-xl);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    color: var(--dark-gray);
    font-size: var(--fs-sm);
}

.pricing-features i {
    color: var(--lavender-purple);
    margin-right: var(--space-md);
    width: 16px;
    flex-shrink: 0;
}

.pricing-action {
    padding: 0 var(--space-xl) var(--space-xl);
}

.pricing-action .btn {
    width: 100%;
    justify-content: center;
}

/* Additional Services */
.additional-services {
    background: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-2xl);
}

.addon-service {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

.addon-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.addon-service i {
    font-size: var(--fs-2xl);
    color: var(--lavender-purple);
    margin-bottom: var(--space-md);
}

.addon-service h6 {
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.addon-service .price {
    color: var(--lavender-purple);
    font-weight: 600;
    font-size: var(--fs-sm);
}

/* ========================================
   Booking & Process Components
   ======================================== */
.booking-preview {
    margin: var(--space-xl) 0;
}

.booking-step {
    display: flex;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(114, 92, 173, 0.2);
    transition: all var(--transition-base);
    opacity: 0.6;
}

.booking-step.active {
    opacity: 1;
    color: var(--lavender-purple);
    font-weight: 600;
    transform: translateX(5px);
}

.booking-step i {
    margin-right: var(--space-md);
    width: 20px;
    color: var(--lavender-purple);
    flex-shrink: 0;
}

.booking-assistant-preview {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.booking-assistant-preview img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-slow);
}

.booking-assistant-preview:hover img {
    transform: scale(1.05);
}

/* Process Steps */
.route-planning-process {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.process-step:hover {
    transform: translateX(5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-xl);
    margin-right: var(--space-xl);
    flex-shrink: 0;
    font-family: var(--font-sahitya);
}

.step-content h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

.step-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.booking-step-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
}

.booking-step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.step-icon .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--soft-yellow);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-sm);
    border: 2px solid var(--white);
}

.step-icon i {
    font-size: var(--fs-xl);
    color: var(--white);
}

.booking-step-card h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

.booking-step-card p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Custom Route Cards
   ======================================== */
.custom-route-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 250px;
    transition: all var(--transition-base);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.custom-route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.custom-route-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.route-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.9));
    color: var(--white);
    padding: var(--space-xl);
}

.route-overlay h5 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-lg);
}

.route-overlay p {
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    line-height: 1.5;
}

.route-duration {
    background: var(--soft-yellow);
    color: var(--dark-navy);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    display: inline-block;
}

/* ========================================
   Reviews & Testimonials
   ======================================== */
.review-card {
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    margin: var(--space-lg);
    text-align: center;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--lavender-purple);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.stars {
    margin-bottom: var(--space-xl);
}

.stars i {
    color: var(--soft-yellow);
    font-size: var(--fs-xl);
    margin: 0 2px;
}

.review-text {
    font-size: var(--fs-xl);
    font-style: italic;
    color: var(--dark-gray);
    margin: var(--space-xl) 0;
    line-height: 1.8;
    font-family: var(--font-amiri);
}

.reviewer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.reviewer strong {
    color: var(--dark-navy);
    font-size: var(--fs-lg);
    display: block;
    margin-bottom: var(--space-xs);
}

.reviewer span {
    color: var(--lavender-purple);
    font-size: var(--fs-sm);
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all var(--transition-base);
    border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   Forms & Inputs
   ======================================== */
.contact-form-container {
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.contact-form .form-label {
    color: var(--dark-navy);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    font-size: var(--fs-base);
    transition: all var(--transition-base);
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--lavender-purple);
    box-shadow: 0 0 0 0.2rem rgba(114, 92, 173, 0.25);
    outline: none;
}

.contact-form .form-control.is-invalid {
    border-color: var(--danger);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .form-check-input:checked {
    background-color: var(--lavender-purple);
    border-color: var(--lavender-purple);
}

.contact-form .form-check-label {
    font-size: var(--fs-sm);
    color: var(--dark-gray);
}

.contact-form .form-check-label a {
    color: var(--lavender-purple);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.invalid-feedback {
    display: none;
    color: var(--danger);
    font-size: var(--fs-xs);
    margin-top: var(--space-xs);
}

.character-counter {
    text-align: right;
    font-size: var(--fs-xs);
    color: var(--medium-gray);
    margin-top: var(--space-xs);
    transition: color var(--transition-base);
}

/* ========================================
   Contact & Information
   ======================================== */
.contact-info-sidebar {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--space-xl);
    border-left: 4px solid var(--lavender-purple);
}

.contact-info-card h3 {
    color: var(--dark-navy);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-lg);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: var(--fs-lg);
    color: var(--white);
}

.contact-details h5 {
    color: var(--dark-navy);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-lg);
}

.contact-details p {
    margin-bottom: var(--space-xs);
    color: var(--dark-gray);
}

.contact-details a {
    color: var(--lavender-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.contact-details a:hover {
    color: var(--dark-navy);
    text-decoration: underline;
}

.contact-details small {
    color: var(--medium-gray);
    font-size: var(--fs-xs);
    font-style: italic;
}

.emergency-contact {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border: 2px solid #feb2b2;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: var(--space-xl);
}

.emergency-contact h4 {
    color: #c53030;
    margin-bottom: var(--space-md);
    font-size: var(--fs-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.emergency-contact p {
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
}

/* ========================================
   Map Components
   ======================================== */
.map-section {
    position: relative;
    margin: var(--space-3xl) 0;
}

.map-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter var(--transition-base);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.map-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.02);
}

.map-info h4 {
    color: var(--dark-navy);
}



/* ========================================
   Gallery & Moodboard
   ======================================== */
.moodboard-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.9));
    color: var(--white);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-style: italic;
    font-size: var(--fs-sm);
    text-align: center;
    color: #fff;
}

footer > *, .footer-contact{
    color: #fff;
}
.footer-text{
    margin-top: 20px;
}
footer > p, .footer-text, .footer-copyright{
    color: #fff!important;
}
/* ========================================
   Timeline Components
   ======================================== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    margin: var(--space-2xl) 0;
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--transition-slow);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--space-2xl);
    transform: translateX(50px);
}

.timeline-item:nth-child(even).animate-in {
    transform: translateX(0);
}

.timeline-item:nth-child(odd) {
    padding-right: var(--space-2xl);
}

.timeline-icon {
    position: absolute;
    top: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--fs-xl);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.navbar-brand img{
    max-width: 200px;
}

html{
    overflow-x: hidden;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-content {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

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

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

.timeline-content h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
    font-size: var(--fs-lg);
}

/* Company Timeline Specific */
.company-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border-left: 4px solid var(--lavender-purple);
}

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

.timeline-year {
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--lavender-purple);
    margin-right: var(--space-xl);
    font-family: var(--font-sahitya);
    min-width: 120px;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--dark-navy);
    margin-bottom: var(--space-md);
}

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

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('images/about.jpg') center/cover;
}

.about-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/about.jpg') center/cover;
    z-index: -2;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-yellow);
    font-family: var(--font-sahitya);
}

.stat-label {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.9;
}

.founder-image {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.founder-story {
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-quote {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--lavender-purple);
    margin: 30px 0;
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.founder-quote cite {
    color: var(--lavender-purple);
    font-weight: 600;
}

/* Company Timeline */
.company-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-event {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.timeline-event:hover {
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lavender-purple);
    margin-right: 30px;
    font-family: var(--font-sahitya);
    min-width: 100px;
}

.timeline-content h4 {
    color: var(--dark-navy);/* styles.css - Playenda Yacht Charter Website */

:root {
    --dark-navy: #0B1D51;
    --lavender-purple: #725CAD;
    --light-blue: #8CCDEB;
    --soft-yellow: #FFE3A9;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    
    /* Font families */
    --font-amiri: 'Amiri', serif;
    --font-sahitya: 'Sahitya', serif;
    --font-palanquin: 'Palanquin', sans-serif;
    
    /* Shadows and effects */
    --shadow-soft: 0 10px 30px rgba(11, 29, 81, 0.1);
    --shadow-medium: 0 15px 40px rgba(11, 29, 81, 0.15);
    --shadow-strong: 0 20px 50px rgba(11, 29, 81, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--lavender-purple), var(--light-blue));
    --gradient-hero: linear-gradient(135deg, var(--dark-navy) 0%, var(--lavender-purple) 50%, var(--light-blue) 100%);
    --gradient-overlay: linear-gradient(45deg, rgba(11, 29, 81, 0.8), rgba(114, 92, 173, 0.6));
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-amiri);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-sahitya);
    background: linear-gradient(135deg, var(--soft-yellow), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    font-family: var(--font-palanquin);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-medium);
}

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

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

.btn-outline-light:hover {
    background: var(--soft-yellow);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    z-index: 999;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.floating-nav.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand .brand-text {
    font-family: var(--font-sahitya);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: var(--font-palanquin);
    font-weight: 500;
    color: var(--dark-navy) !important;
    margin: 0 15px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    z-index: -2;
}

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

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 227, 169, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

.bg-navy {
    background: var(--dark-navy);
}

.bg-light {
    background: var(--light-gray);
}

/* Route Explorer */
.route-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.route-map {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.route-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marker {
    position: absolute;
    background: var(--soft-yellow);
    color: var(--dark-navy);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.marker:hover {
    transform: scale(1.1);
    background: var(--lavender-purple);
    color: white;
}

.marker-1 { top: 30%; left: 40%; }
.marker-2 { top: 20%; right: 30%; }
.marker-3 { bottom: 30%; left: 30%; }

.marker-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 5px;
}

.route-details {
    padding-left: 30px;
}

.route-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: none;
}

.route-card.active {
    opacity: 1;
    display: block;
    border-left: 4px solid var(--lavender-purple);
}

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

.route-features li {
    margin: 10px 0;
    color: var(--dark-gray);
}

.route-features i {
    color: var(--lavender-purple);
    margin-right: 10px;
    width: 20px;
}

/* Moodboard Gallery */
.moodboard-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Captain's Journal */
.journal-entry {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.journal-entry:hover {
    transform: translateY(-5px);
}

.entry-date {
    color: var(--soft-yellow);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.journal-entry h4 {
    color: white;
    margin-bottom: 15px;
}

.journal-entry p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.read-more {
    color: var(--soft-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--light-blue);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 50px 0;
    width: 50%;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-item:nth-child(odd) {
    padding-right: 50px;
}

.timeline-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -30px;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -30px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.timeline-content h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
}

/* Booking Preview */
.booking-preview {
    margin: 30px 0;
}

.booking-step {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(114, 92, 173, 0.2);
    transition: all 0.3s ease;
}

.booking-step.active {
    color: var(--lavender-purple);
    font-weight: 600;
}

.booking-step i {
    margin-right: 15px;
    width: 20px;
    color: var(--lavender-purple);
}

.booking-assistant-preview img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* Reviews Carousel */
.review-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin: 20px;
}

.stars i {
    color: var(--soft-yellow);
    font-size: 1.2rem;
    margin: 0 3px;
}

.review-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-gray);
    margin: 30px 0;
    line-height: 1.8;
}

.reviewer {
    margin-top: 30px;
}

.reviewer strong {
    color: var(--dark-navy);
    font-size: 1.1rem;
}

.reviewer span {
    display: block;
    color: var(--lavender-purple);
    font-size: 0.9rem;
    margin-top: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-family: var(--font-sahitya);
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-subtitle {
    color: var(--soft-yellow);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-blue);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.footer-copyright,
.footer-contact {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--light-blue);
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-nav {
        width: 95%;
        top: 10px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }
    
    .route-details {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .moodboard-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .review-card {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
}

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

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

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

    color: var(--dark-navy);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--dark-gray);
    margin: 0;
}

/* Values Section */
.value-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.value-card h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
}

/* Sustainability Section */
.sustainability-features {
    margin-top: 30px;
}

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

.feature-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
}

.text-yellow {
    color: var(--soft-yellow) !important;
}

.text-blue {
    color: var(--light-blue) !important;
}

.sustainability-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.9));
    color: white;
    padding: 30px;
}

.overlay-content h4 {
    color: white;
    margin-bottom: 10px;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

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

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-info {
    padding: 30px;
}

.team-role {
    color: var(--lavender-purple);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-credentials span {
    background: var(--light-gray);
    color: var(--dark-navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Services Page Styles */
.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('images/services.jpg') center/cover;
}

.services-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/services.jpg') center/cover;
    z-index: -2;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.service-link {
    color: var(--lavender-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Yacht Cards */
.yacht-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    height: 100%;
}

.yacht-card:hover {
    transform: translateY(-10px);
}

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

.yacht-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.yacht-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--soft-yellow);
    color: var(--dark-navy);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.yacht-badge.premium {
    background: var(--lavender-purple);
    color: white;
}

.yacht-badge.expedition {
    background: var(--light-blue);
    color: var(--dark-navy);
}

.yacht-details {
    padding: 30px;
}

.yacht-description {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.yacht-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.spec-item i {
    color: var(--lavender-purple);
    margin-right: 10px;
    width: 20px;
}

.yacht-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--dark-navy);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lavender-purple);
}

/* Event Types */
.event-type {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.event-type i {
    font-size: 1.5rem;
    color: var(--lavender-purple);
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
}

.event-type h5 {
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.event-type p {
    color: var(--dark-gray);
    margin: 0;
}

/* Event Gallery */
.event-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.event-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.event-image.main {
    grid-row: 1 / 3;
}

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

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

.event-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.8));
    color: white;
    padding: 20px;
}

.event-image .image-overlay h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

/* Service Features */
.service-feature {
    text-align: center;
    padding: 20px;
}

.service-feature i {
    font-size: 2rem;
    color: var(--lavender-purple);
    margin-bottom: 15px;
}

.service-feature h6 {
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-feature p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Crew Benefits */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
}

/* Package Cards */
.package-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.premium {
    border: 2px solid var(--soft-yellow);
}

.package-card h4 {
    color: white;
    margin-bottom: 10px;
}

.package-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.package-price {
    color: var(--soft-yellow);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Route Planning Process */
.route-planning-process {
    max-width: 600px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--dark-gray);
    margin: 0;
}

/* Custom Route Cards */
.custom-route-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    transition: transform 0.3s ease;
}

.custom-route-card:hover {
    transform: translateY(-5px);
}

.custom-route-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 29, 81, 0.9));
    color: white;
    padding: 25px;
}

.route-overlay h5 {
    color: white;
    margin-bottom: 8px;
}

.route-overlay p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.route-duration {
    background: var(--soft-yellow);
    color: var(--dark-navy);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--lavender-purple);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lavender-purple);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: var(--light-gray);
}

.pricing-header h4 {
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    color: var(--lavender-purple);
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-navy);
    font-family: var(--font-sahitya);
}

.period {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-left: 5px;
}

.pricing-features {
    padding: 30px;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.pricing-features i {
    color: var(--lavender-purple);
    margin-right: 12px;
    width: 16px;
}

.pricing-action {
    padding: 0 30px 30px;
}

.pricing-action .btn {
    width: 100%;
}

/* Additional Services */
.additional-services {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
}

.addon-service {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.addon-service:hover {
    transform: translateY(-5px);
}

.addon-service i {
    font-size: 2rem;
    color: var(--lavender-purple);
    margin-bottom: 15px;
}

.addon-service h6 {
    color: var(--dark-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.addon-service .price {
    color: var(--lavender-purple);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Booking Steps */
.booking-step-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    height: 100%;
}

.booking-step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--soft-yellow);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.booking-step-card h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.booking-step-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('images/contact.jpg') center/cover;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/contact.jpg') center/cover;
    z-index: -2;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.contact-form .form-label {
    color: var(--dark-navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--lavender-purple);
    box-shadow: 0 0 0 0.2rem rgba(114, 92, 173, 0.25);
}

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

.contact-form .form-check-input:checked {
    background-color: var(--lavender-purple);
    border-color: var(--lavender-purple);
}

.contact-form .form-check-label a {
    color: var(--lavender-purple);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h5 {
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--lavender-purple);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.emergency-contact {
    background: #fff5f5;
    border: 2px solid #fed7d7;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.emergency-contact h4 {
    color: #c53030;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.emergency-contact p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    max-width: 300px;
}

.map-info h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.map-info p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: white;
    color: var(--dark-navy);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--lavender-purple);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--lavender-purple);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    background: white;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline-event {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: auto;
    }
    
    .event-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-image.main {
        grid-row: auto;
    }
    
    .contact-info-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px;
        max-width: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .yacht-pricing {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav + section{
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .yacht-features {
        justify-content: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #48bb78;
}

.notification.error {
    border-left: 4px solid #f56565;
}

.notification-content {
    padding: 20px;
    display: flex;
    align-items: center;
}

.notification-content i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.notification.success i {
    color: #48bb78;
}

.notification.error i {
    color: #f56565;
}

.notification-close {
    background: none;
    border: none;
    margin-left: auto;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 5px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 29, 81, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loader.show {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--soft-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}


/* Legal Pages Styles */
.legal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.legal-header h1 {
    font-family: var(--font-sahitya);
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.legal-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.legal-content {
    background: white;
}

.legal-document {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    line-height: 1.8;
}

.legal-document h2 {
    color: var(--dark-navy);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: var(--lavender-purple);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-document li {
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.legal-document .contact-info {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--lavender-purple);
    margin: 30px 0;
}

.legal-document .contact-info p {
    margin: 0;
    line-height: 1.6;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.legal-footer em {
    color: var(--lavender-purple);
    font-weight: 600;
}


/* Refund Policy Specific Styles */
.refund-schedule {
    margin: 30px 0;
}

.refund-tier {
    background: white;
    border-left: 4px solid var(--lavender-purple);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 0 15px 15px 0;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.refund-tier:hover {
    transform: translateX(5px);
}

.refund-tier h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.refund-tier h4 i {
    color: var(--lavender-purple);
    margin-right: 10px;
    width: 20px;
}

.refund-tier p strong {
    color: var(--lavender-purple);
    font-size: 1.1rem;
}

.refund-tier p:last-child {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 120px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-document {
        padding: 30px 25px;
    }
    
    .legal-document h2 {
        font-size: 1.5rem;
    }
    
    .legal-document h3 {
        font-size: 1.2rem;
    }
    
    .refund-tier {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .refund-tier h4 {
        font-size: 1.1rem;
    }

    .hero-section{
        padding-top: 140px;
    }

    .navbar-collapse{
        margin-top: 30px;
    }
}

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