/* ===================================
   Reed Capital Management - Main Styles
   Palette: Navy #0F172A, White #F8FAFC, Gold #C9A96E
   =================================== */

/* === CSS Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0F172A;
    --white: #F8FAFC;
    --gold: #C9A96E;
    --navy-light: #1E293B;
    --navy-lighter: #334155;
    --gray: #64748B;
    --gray-light: #CBD5E1;
    --gray-lighter: #F1F5F9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

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

/* === Layout Containers === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
    padding: 0;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    transition: all 0.3s ease;
}

.navbar.navbar-dark {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
}

.navbar.navbar-dark .logo,
.navbar.navbar-dark .nav-menu a {
    color: var(--white);
}

.navbar.navbar-dark .nav-toggle span {
    background-color: var(--white);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--navy);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    background-color: var(--navy);
    color: var(--white) !important;
    border-radius: 4px;
    font-weight: 500;
}

.btn-nav:hover {
    background-color: var(--gold);
    color: var(--navy) !important;
}

.navbar.navbar-dark .btn-nav {
    background-color: var(--gold);
    color: var(--navy) !important;
}

.navbar.navbar-dark .btn-nav:hover {
    background-color: var(--white);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.6) 100%);
}

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

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--white);
    margin-top: 0.5rem;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* === Buttons === */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* === Sections === */
section {
    padding: 6rem 0;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header.centered .section-description {
    margin: 0 auto;
}

.section-cta {
    margin-top: 3rem;
    text-align: center;
}

/* === Intro Section === */
.intro-section {
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-light);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}

/* === Featured Yachts === */
.featured-yachts {
    background-color: var(--gray-lighter);
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.yacht-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.yacht-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.yacht-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.yacht-info {
    padding: 1.5rem;
}

.yacht-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.yacht-type {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.yacht-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-lighter);
}

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

.spec-value {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--navy);
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.yacht-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--navy);
    font-size: 0.95rem;
}

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

/* === Destinations Preview === */
.destinations-preview {
    background-color: var(--white);
    padding: 6rem 0;
}

.destinations-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.02);
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

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

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    color: var(--white);
}

.destination-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.destination-content .link-arrow {
    color: var(--gold);
}

/* === Services Overview === */
.services-overview {
    background-color: var(--gray-lighter);
}

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* === Page Header === */
.page-header {
    padding: 10rem 0 6rem;
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    margin-top: 4rem;
}

.page-header.small {
    padding: 8rem 0 4rem;
}

.page-header .page-label {
    color: var(--gold);
}

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

.page-header .page-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* === Footer === */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    font-size: 1.75rem;
    font-weight: 500;
}

.footer-logo .logo-sub {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.footer-links li {
    margin-bottom: 0.7rem;
}

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

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

.footer-contact a {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-whatsapp {
    margin-top: 1rem;
}

.footer-whatsapp a {
    color: var(--gold);
    font-weight: 500;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 250, 252, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

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

/* === CTA Sections === */
.final-cta,
.cta-section,
.custom-itinerary-cta,
.custom-exp-cta,
.services-cta,
.about-cta {
    background-color: var(--navy);
    color: var(--white);
    padding: 5rem 0;
}

.cta-content,
.cta-box,
.cta-box-large {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2,
.cta-box h2,
.cta-box-large h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p,
.cta-box p,
.cta-box-large p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-box-large {
    max-width: 800px;
    padding: 3rem;
    background-color: var(--navy-light);
    border-radius: 8px;
}

.cta-label {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .navbar.navbar-dark .nav-menu {
        background-color: var(--navy);
    }
    
    .yachts-grid,
    .destinations-carousel {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 80vh;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* === Trust Section === */
.trust-section {
    background-color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

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

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.trust-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* === Experiences Highlight === */
.experiences-highlight {
    background-color: var(--gray-lighter);
}

.experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.exp-text {
    padding: 2rem 0;
}

.exp-list {
    list-style: none;
    margin: 2rem 0;
}

.exp-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.exp-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.exp-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .experiences-content {
        grid-template-columns: 1fr;
    }
    
    .exp-image {
        height: 350px;
    }
}

/* === Yacht Fleet Page === */
.yacht-filters {
    background-color: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.filters-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.yacht-fleet {
    padding: 4rem 0;
    background-color: var(--gray-lighter);
}

.yachts-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

/* === Destination Detail === */
.destination-detail {
    padding: 4rem 0;
    background-color: var(--white);
}

.destination-detail.alt {
    background-color: var(--gray-lighter);
}

.dest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.dest-content.reverse {
    direction: rtl;
}

.dest-content.reverse > * {
    direction: ltr;
}

.dest-text {
    padding: 2rem 0;
}

.dest-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.dest-intro {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.dest-itinerary {
    list-style: none;
    margin: 1.5rem 0;
}

.dest-itinerary li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray);
    line-height: 1.7;
}

.dest-itinerary li strong {
    color: var(--navy);
}

.dest-highlights {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
}

.dest-highlights h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.dest-highlights ul {
    list-style: none;
}

.dest-highlights ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.dest-highlights ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.dest-season {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.dest-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

@media (max-width: 968px) {
    .dest-content {
        grid-template-columns: 1fr;
    }
    
    .dest-gallery {
        position: relative;
        top: 0;
    }
    
    .gallery-main {
        height: 400px;
    }
}

/* === Experience Detail === */
.experience-detail {
    padding: 4rem 0;
    background-color: var(--white);
}

.experience-detail.alt {
    background-color: var(--gray-lighter);
}

.exp-hero {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.exp-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.exp-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.exp-main h2 {
    margin-bottom: 1.5rem;
}

.exp-intro {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.exp-includes,
.exp-packages {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.exp-includes li,
.exp-packages li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
    line-height: 1.7;
}

.exp-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.exp-packages li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.exp-testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--gray-lighter);
    border-left: 3px solid var(--gold);
    font-style: italic;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: normal;
}

.exp-sidebar {
    position: sticky;
    top: 100px;
}

.exp-info-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-light);
}

.experience-detail.alt .exp-info-box {
    background-color: var(--gray-lighter);
}

.exp-info-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.exp-info-box ul {
    list-style: none;
}

.exp-info-box li {
    padding: 0.5rem 0;
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .exp-content-grid {
        grid-template-columns: 1fr;
    }
    
    .exp-sidebar {
        position: relative;
        top: 0;
    }
}

/* === Service Section === */
.service-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.service-section.alt {
    background-color: var(--gray-lighter);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-layout.reverse {
    direction: rtl;
}

.service-layout.reverse > * {
    direction: ltr;
}

.service-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-content h2 {
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 2rem 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
    line-height: 1.7;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.service-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--gray);
}

.service-highlight {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--navy-light);
    color: var(--white);
    border-radius: 8px;
}

.service-highlight h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 350px;
    }
}

/* === Pricing Section === */
.pricing-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.pricing-col {
    padding: 2.5rem;
    border-radius: 8px;
}

.pricing-col.included {
    background-color: var(--gray-lighter);
    border: 2px solid var(--gold);
}

.pricing-col.extra {
    background-color: var(--white);
    border: 2px solid var(--gray-light);
}

.pricing-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-col ul {
    list-style: none;
}

.pricing-col li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
    line-height: 1.6;
}

.pricing-col.included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.pricing-col.extra li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: bold;
}

.pricing-note {
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

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

/* === Forms === */
.charter-form,
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-lighter);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-help {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.form-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .charter-form,
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* === Contact Page === */
.contact-methods {
    padding: 4rem 0;
    background-color: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    padding: 2.5rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card.primary {
    background-color: var(--navy);
    color: var(--white);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-card.primary h3 {
    color: var(--gold);
}

.method-value {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
}

.method-value a {
    color: var(--gold);
}

.method-description {
    color: var(--gray);
    margin: 1rem 0;
    line-height: 1.6;
}

.method-card.primary .method-description {
    color: rgba(248, 250, 252, 0.9);
}

.method-hours {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.office-section {
    padding: 4rem 0;
    background-color: var(--gray-lighter);
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.office-details {
    margin-top: 2rem;
}

.office-details h3 {
    margin-bottom: 1rem;
}

.office-details p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.office-map {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%);
    color: var(--white);
    text-align: center;
}

@media (max-width: 968px) {
    .office-grid {
        grid-template-columns: 1fr;
    }
    
    .office-map {
        position: relative;
        top: 0;
    }
    
    .map-placeholder {
        height: 350px;
    }
}

/* === Additional Sections === */
.company-story,
.team-section,
.values-section,
.philosophy-section,
.network-section {
    padding: 4rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-intro {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-light);
}

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

.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.team-grid,
.values-grid,
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member,
.value-item,
.network-item {
    text-align: center;
    padding: 2rem;
}

.member-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.member-role {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.alternative-contact,
.faq-quick,
.faq-contact,
.social-section,
.company-info,
.emergency-section {
    padding: 4rem 0;
}

.alt-contact-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-option {
    padding: 2rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hours {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item,
.faq-item-large {
    padding: 1.5rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
}

.faq-item h4,
.faq-item-large h3 {
    margin-bottom: 0.75rem;
}

.faq-item p,
.faq-item-large p {
    color: var(--gray);
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item-large {
    margin-bottom: 2rem;
}

.social-box,
.emergency-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    text-align: center;
}

.emergency-box {
    background-color: var(--navy);
    color: var(--white);
}

.emergency-number {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2rem 0;
}

.emergency-number a {
    color: var(--gold);
}

.emergency-note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.company-details {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
}

.company-details p {
    line-height: 1.8;
}

.mt-2 {
    margin-top: 2rem;
}

/* === Legal Pages === */
.legal-content {
    padding: 4rem 0;
    background-color: var(--white);
}

.legal-document {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    line-height: 1.8;
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-lighter);
}

.legal-document h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    font-size: 2rem;
}

.legal-document h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.5rem;
}

.legal-document h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
    font-size: 1.25rem;
}

.legal-document ul, .legal-document ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-document li {
    margin: 0.75rem 0;
    color: var(--gray);
}

.legal-document strong {
    color: var(--navy);
    font-weight: 600;
}

.info-box {
    background-color: var(--gray-lighter);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    margin: 2rem 0;
}

.info-box p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-item {
    padding: 1.5rem;
    background-color: var(--gray-lighter);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.right-item h4 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.right-item p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.legal-signature {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-lighter);
    text-align: center;
    color: var(--gray);
}

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

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--navy);
    color: var(--white);
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.cookie-btn-accept {
    background-color: var(--gold);
    color: var(--navy);
}

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

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

.cookie-btn-decline:hover {
    background-color: var(--white);
    color: var(--navy);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(248, 250, 252, 0.3);
}

.cookie-btn-settings:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}