
/* Font Awesome icon colour */
.ico { color: var(--orange); }

/* ── Uploaded logo visibility (transparent vs solid navbar) ── */
/* On transparent nav (home hero): show light logo, hide primary */
.navbar.transparent .logo-img-primary { display: none; }
.navbar.transparent .logo-img-light   { display: block; }
/* On solid nav (scrolled / inner pages): show primary, hide light */
.navbar.solid .logo-img-primary { display: block; }
.navbar.solid .logo-img-light   { display: none; }
/* If only one logo uploaded (no separate light variant), always show it */
.navbar.transparent .logo-img-primary:only-child { display: block; }
.navbar.solid .logo-img-light:only-child          { display: block; }

/* ══════════════════════════
   HOME — HERO SLIDER
══════════════════════════ */
.hero-slider { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: all; }
.slide-1 { background: linear-gradient(to right, rgba(10,20,40,0.82) 40%, rgba(10,20,40,0.3) 100%), url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1800&q=80') center/cover no-repeat; }
.slide-2 { background: var(--navy); }
.slide-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; z-index: 0; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,20,40,0.88) 40%, rgba(10,20,40,0.5) 100%); }
.slide-3 { background: linear-gradient(to right, rgba(10,20,40,0.82) 40%, rgba(10,20,40,0.3) 100%), url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=1800&q=80') center/cover no-repeat; }
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; padding: 0 10%; }
.slide-inner { max-width: 680px; transform: translateY(20px); opacity: 0; transition: transform 1s 0.4s ease, opacity 1s 0.4s ease; }
.slide.active .slide-inner { transform: translateY(0); opacity: 1; }
.slide-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--orange-h); margin-bottom: 20px; font-weight: 500; }
.slide-tag::before { content: ''; display: block; width: 30px; height: 1.5px; background: var(--orange); }
.slide-inner h1 { font-size: clamp(2.8rem, 5vw, 5rem); color: white; line-height: 1.08; margin-bottom: 22px; font-weight: 400; }
.slide-inner h1 em { font-style: italic; color: var(--orange-h); }
.slide-inner p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 520px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-controls { position: absolute; bottom: 40px; left: 10%; display: flex; align-items: center; gap: 24px; z-index: 10; }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--orange); width: 44px; }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrow { width: 42px; height: 42px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 1rem; transition: all 0.25s; background: transparent; }
.slider-arrow:hover { border-color: var(--orange); background: rgba(232,93,38,0.2); color: var(--orange-h); }
.scroll-indicator { position: absolute; bottom: 40px; right: 10%; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; z-index: 10; }
.scroll-line { width: 1.5px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
.slider-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--orange); transition: width 0.1s linear; z-index: 10; }

/* Trust Bar */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 32px; padding: 22px 48px; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 42px; height: 42px; background: rgba(232,93,38,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.8rem; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.trust-text span { font-size: 0.72rem; color: var(--muted); }
.trust-divider { width: 1px; height: 32px; background: var(--border); flex-shrink: 0; }

/* Intro section */
.intro { padding: 110px 48px; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1260px; margin: 0 auto; }
.intro-text h2 { font-size: clamp(2rem, 3vw, 3rem); color: var(--navy); margin-bottom: 22px; }
.intro-text h2 em { font-style: italic; color: var(--orange); }
.intro-text p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.intro-visual { position: relative; }
.intro-img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.intro-stat-card { position: absolute; bottom: -20px; left: -20px; background: white; border-radius: 8px; padding: 20px 28px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.intro-stat-card .big { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.intro-stat-card .small { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.intro-stat-card-2 { position: absolute; top: -16px; right: -16px; background: var(--navy); border-radius: 8px; padding: 18px 26px; box-shadow: var(--shadow-lg); }
.intro-stat-card-2 .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--orange-h); line-height: 1; margin-bottom: 4px; }
.intro-stat-card-2 .small { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Services Preview */
.services-preview { background: var(--cream); padding: 110px 48px; }
.services-preview-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1260px; margin: 0 auto 52px; }
.services-preview-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.8rem); color: var(--navy); }
.services-preview-header h2 em { font-style: italic; color: var(--orange); }
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1260px; margin: 0 auto; background: var(--border); border-radius: 8px; overflow: hidden; }
.svc-card { display: block; background: white; padding: 40px 36px; text-decoration: none; transition: all var(--transition); }
.svc-card:hover { background: var(--navy); }
.svc-card:hover .svc-title, .svc-card:hover .svc-link { color: white; }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.6); }
.svc-icon { font-size: 2.2rem; margin-bottom: 18px; }
.svc-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; transition: color var(--transition); }
.svc-desc { font-size: 0.83rem; line-height: 1.8; color: var(--muted); margin-bottom: 18px; transition: color var(--transition); }
.svc-link { font-size: 0.78rem; font-weight: 500; color: var(--orange); transition: color var(--transition); }

/* Bahamas section */
.bahamas-section { background: var(--navy); padding: 110px 48px; }
.bahamas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1260px; margin: 0 auto; }
.bahamas-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: white; margin-bottom: 20px; }
.bahamas-text h2 em { font-style: italic; color: var(--orange-h); }
.bahamas-text p { font-size: 0.95rem; line-height: 1.9; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.bahamas-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.b-feat { background: rgba(255,255,255,0.04); padding: 36px; text-align: center; }
.b-feat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--orange-h); line-height: 1; margin-bottom: 8px; }
.b-feat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Blog Preview */
.blog-preview { padding: 110px 48px; }
.blog-preview-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1260px; margin: 0 auto 52px; }
.blog-preview-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); }
.blog-preview-header h2 em { font-style: italic; color: var(--orange); }
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1260px; margin: 0 auto; }
.blog-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); text-decoration: none; color: inherit; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: var(--navy); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat { position: absolute; top: 14px; left: 14px; background: var(--orange); color: white; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; font-weight: 500; }
.blog-card-body { padding: 28px; }
.blog-card-date { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.blog-card-link { font-size: 0.78rem; font-weight: 500; color: var(--orange); display: flex; align-items: center; gap: 6px; }

/* CTA Banner */
.cta-banner { background: var(--navy); padding: 80px 48px; text-align: center; }
.cta-banner h2 { font-size: clamp(1.9rem, 3vw, 3rem); color: white; margin-bottom: 16px; }
.cta-banner h2 em { font-style: italic; color: var(--orange-h); }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 36px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ABOUT PAGE */
.about-story { padding: 110px 48px; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; max-width: 1260px; margin: 0 auto; }
.about-story-text h2 { font-size: clamp(2rem, 3vw, 3rem); color: var(--navy); margin-bottom: 22px; }
.about-story-text h2 em { font-style: italic; color: var(--orange); }
.about-story-text p { font-size: 0.95rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.about-img-block { position: relative; }
.about-main-img { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; padding: 36px; }
.about-main-img-inner { z-index: 1; position: relative; }
.about-main-img-inner .year { font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 400; color: rgba(232,93,38,0.2); line-height: 1; position: absolute; top: -80px; left: 0; }
.about-main-img-inner .label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.about-main-img-inner .value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: white; }
.about-float-card { position: absolute; top: -24px; right: -24px; background: var(--orange); color: white; padding: 28px; border-radius: 8px; box-shadow: 0 20px 50px rgba(232,93,38,0.4); text-align: center; }
.about-float-card .num { font-family: 'Playfair Display', serif; font-size: 2.8rem; line-height: 1; margin-bottom: 6px; }
.about-float-card .txt { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85; }
.timeline-section { background: var(--cream); padding: 100px 48px; }
.timeline-section h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 60px; text-align: center; }
.timeline-section h2 em { font-style: italic; color: var(--orange); }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1.5px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-bottom: 52px; }
.timeline-item:nth-child(even) .tl-content { order: 3; text-align: left; }
.timeline-item:nth-child(even) .tl-empty { order: 1; }
.timeline-item:nth-child(odd) .tl-content { text-align: right; }
.tl-dot { width: 48px; height: 48px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.9rem; color: white; font-weight: 400; flex-shrink: 0; box-shadow: 0 4px 16px rgba(232,93,38,0.35); z-index: 1; }
.tl-year { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.tl-desc { font-size: 0.82rem; line-height: 1.75; color: var(--muted); }
.values-section { padding: 100px 48px; }
.values-section-header { text-align: center; max-width: 580px; margin: 0 auto 60px; }
.values-section-header h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); }
.values-section-header h2 em { font-style: italic; color: var(--orange); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: 1260px; margin: 0 auto; background: var(--border); border-radius: 8px; overflow: hidden; }
.value-card { background: white; padding: 44px 32px; transition: background var(--transition); }
.value-card:hover { background: var(--navy); }
.value-card:hover .v-title { color: white; }
.value-card:hover .v-desc { color: rgba(255,255,255,0.6); }
.v-icon { font-size: 2rem; margin-bottom: 20px; }
.v-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; transition: color var(--transition); }
.v-desc { font-size: 0.83rem; line-height: 1.8; color: var(--muted); transition: color var(--transition); }
.team-section { background: var(--navy); padding: 100px 48px; text-align: center; }
.team-section h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: white; margin-bottom: 16px; }
.team-section h2 em { font-style: italic; color: var(--orange-h); }
.team-section p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 36px; line-height: 1.85; }

/* SERVICES PAGE */
.services-intro { padding: 90px 48px 60px; background: var(--cream); }
.services-intro-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.services-intro-inner h2 { font-size: clamp(1.8rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 18px; }
.services-intro-inner h2 em { font-style: italic; color: var(--orange); }
.services-intro-inner p { font-size: 0.96rem; line-height: 1.9; color: var(--muted); }
.service-block { padding: 90px 48px; }
.service-block:nth-child(even) { background: var(--cream); }
.service-block-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-block-num { font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(232,93,38,0.12); line-height: 1; margin-bottom: -16px; }
.service-block-icon { width: 64px; height: 64px; background: rgba(232,93,38,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.service-block-meta h2 { font-size: clamp(1.7rem, 2.5vw, 2.3rem); color: var(--navy); margin-bottom: 16px; }
.service-block-meta h2 em { font-style: italic; color: var(--orange); }
.service-block-meta p { font-size: 0.92rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.detail-card { background: white; border-radius: 8px; padding: 36px; border: 1px solid var(--border); margin-bottom: 18px; }
.detail-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.detail-card h4::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.detail-list li { font-size: 0.85rem; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.detail-list li::before { content: '→'; color: var(--orange); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.services-cta-strip { background: var(--navy); padding: 70px 48px; text-align: center; }
.services-cta-strip h2 { font-size: clamp(1.7rem, 2.6vw, 2.6rem); color: white; margin-bottom: 14px; }
.services-cta-strip h2 em { font-style: italic; color: var(--orange-h); }
.services-cta-strip p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 32px; line-height: 1.85; }

/* COMPLIANCE PAGE */
.compliance-intro { padding: 80px 48px; }
.compliance-intro-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.compliance-intro-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 20px; }
.compliance-intro-text h2 em { font-style: italic; color: var(--orange); }
.compliance-intro-text p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.risk-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.risk-box { background: var(--cream); border-radius: 8px; padding: 24px; border-left: 3px solid var(--orange); }
.risk-box h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.risk-box p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }
.services-breakdown { background: var(--cream); padding: 90px 48px; }
.breakdown-header { max-width: 1260px; margin: 0 auto 56px; }
.breakdown-header h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); }
.breakdown-header h2 em { font-style: italic; color: var(--orange); }
.breakdown-grid { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.breakdown-card { background: white; border-radius: 8px; padding: 36px; border: 1px solid var(--border); transition: all var(--transition); }
.breakdown-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.breakdown-card-icon { font-size: 2rem; margin-bottom: 16px; }
.breakdown-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.breakdown-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.breakdown-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.breakdown-card ul li { font-size: 0.8rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.breakdown-card ul li::before { content: '✓'; color: var(--orange); font-weight: 600; flex-shrink: 0; }
.why-compliance { padding: 90px 48px; }
.why-compliance-inner { max-width: 1260px; margin: 0 auto; }
.why-compliance-inner h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); margin-bottom: 44px; }
.why-compliance-inner h2 em { font-style: italic; color: var(--orange); }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.challenge-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--cream); border-radius: 8px; }
.challenge-icon { width: 48px; height: 48px; background: rgba(232,93,38,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.challenge-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.challenge-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.75; }
.compliance-cta { background: var(--navy); padding: 90px 48px; text-align: center; }
.compliance-cta h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: white; margin-bottom: 14px; }
.compliance-cta h2 em { font-style: italic; color: var(--orange-h); }
.compliance-cta p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 32px; line-height: 1.85; }

/* MARITIMES PAGE */
.maritime-hero-img { height: 100vh; min-height: 600px; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; padding: 0 10%; }
.maritime-intro { padding: 90px 48px; }
.maritime-intro-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.maritime-intro-text h2 { font-size: clamp(1.9rem, 2.8vw, 2.8rem); color: var(--navy); margin-bottom: 20px; }
.maritime-intro-text h2 em { font-style: italic; color: var(--orange); }
.maritime-intro-text p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 14px; }
.yacht-card { background: var(--navy); border-radius: 12px; padding: 44px; color: white; position: relative; overflow: hidden; }
.yacht-card::before { content: '⚓'; position: absolute; font-size: 8rem; right: -10px; bottom: -20px; opacity: 0.06; }
.yacht-card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 16px; }
.yacht-card-desc { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.yacht-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.yacht-stat { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 18px; }
.yacht-stat .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--orange-h); line-height: 1; margin-bottom: 4px; }
.yacht-stat .lbl { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.maritime-cards { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.maritime-card { background: white; border-radius: 8px; padding: 40px; border: 1px solid var(--border); transition: all var(--transition); }
.maritime-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-top: 3px solid var(--orange); }
.maritime-card-icon { font-size: 2rem; margin-bottom: 16px; }
.maritime-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.maritime-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.maritime-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.maritime-card ul li { font-size: 0.82rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.maritime-card ul li::before { content: '→'; color: var(--orange); font-weight: 600; flex-shrink: 0; }
.cta-strip { background: var(--navy); padding: 90px 48px; text-align: center; }
.cta-strip h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: white; margin-bottom: 14px; }
.cta-strip h2 em { font-style: italic; color: var(--orange-h); }
.cta-strip p { font-size: 0.96rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 32px; line-height: 1.85; }

/* CONTACT PAGE */
.contact-section { padding: 80px 48px 110px; }
.contact-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info-col h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); margin-bottom: 18px; }
.contact-info-col h2 em { font-style: italic; color: var(--orange); }
.contact-info-col > p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 44px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.contact-item:first-of-type { border-top: 1px solid var(--border); }
.contact-icon { width: 48px; height: 48px; background: rgba(232,93,38,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 5px; }
.contact-detail-value { font-size: 0.9rem; color: var(--navy); line-height: 1.55; }
.contact-detail-value a { color: var(--orange); text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }
.office-map { margin-top: 36px; }
.office-map-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.office-map-placeholder::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=700&q=60') center/cover no-repeat; opacity: 0.3; }
.office-map-pin { position: relative; z-index: 1; text-align: center; color: white; }
.office-map-pin .pin { font-size: 2.5rem; }
.office-map-pin p { font-size: 0.75rem; letter-spacing: 0.1em; opacity: 0.7; margin-top: 4px; }
.contact-form-col { background: white; border-radius: 10px; padding: 52px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-heading { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success-msg { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 8px; padding: 20px 24px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; color: #166534; font-size: 0.9rem; line-height: 1.6; }
.faq-section { background: var(--cream); padding: 90px 48px; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); color: var(--navy); }
.faq-header h2 em { font-style: italic; color: var(--orange); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; }
.faq-question h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); font-weight: 400; }
.faq-toggle { width: 32px; height: 32px; background: rgba(232,93,38,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; transition: all var(--transition); }
.faq-item.open .faq-toggle { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 0.88rem; color: var(--muted); line-height: 1.85; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 200px; }

/* BLOG PAGE */
.blog-layout { padding: 80px 48px 110px; }
.blog-layout-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.blog-featured { margin-bottom: 48px; }
.blog-featured-card { background: var(--navy); border-radius: 10px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; text-decoration: none; color: inherit; transition: all var(--transition); }
.blog-featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-featured-img { position: relative; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.blog-featured-body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-cat { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-h); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.blog-featured-cat::before { content: ''; display: block; width: 18px; height: 2px; background: var(--orange); border-radius: 2px; }
.blog-featured-body h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); color: white; margin-bottom: 14px; line-height: 1.2; }
.blog-featured-body p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 22px; }
.blog-featured-link { font-size: 0.8rem; font-weight: 500; color: var(--orange-h); display: flex; align-items: center; gap: 6px; }
.blog-featured-date { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.posts-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.posts-label::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
.posts-grid { display: flex; flex-direction: column; gap: 22px; }
.post-card { background: white; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); display: grid; grid-template-columns: 200px 1fr; transition: all var(--transition); text-decoration: none; color: inherit; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.post-card-img { overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.06); }
.post-card-body { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.post-cat { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; background: rgba(232,93,38,0.1); color: var(--orange); padding: 4px 8px; border-radius: 4px; width: fit-content; margin-bottom: 10px; font-weight: 500; }
.post-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.post-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.post-date { font-size: 0.7rem; color: var(--muted); }
.sidebar-widget { background: var(--cream); border-radius: 8px; padding: 28px; margin-bottom: 24px; }
.sidebar-widget-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); display: inline-block; }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cat { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--navy); text-decoration: none; transition: color var(--transition); }
.sidebar-cat:hover { color: var(--orange); }
.sidebar-cat-count { background: var(--orange); color: white; font-size: 0.65rem; padding: 2px 7px; border-radius: 10px; }
.newsletter-widget { background: var(--navy); }
.newsletter-widget .sidebar-widget-title { color: white; }
.newsletter-widget p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 16px; }
.newsletter-input { width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); color: white; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; outline: none; margin-bottom: 10px; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--orange); }
.recent-posts { display: flex; flex-direction: column; gap: 14px; }
.recent-post { display: flex; gap: 12px; align-items: center; text-decoration: none; color: inherit; }
.recent-post-img { width: 60px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--navy); }
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title { font-size: 0.82rem; color: var(--navy); line-height: 1.35; margin-bottom: 4px; transition: color var(--transition); }
.recent-post:hover .recent-post-title { color: var(--orange); }
.recent-post-date { font-size: 0.7rem; color: var(--muted); }

/* BLOG ARTICLE PAGE */
.article-layout { padding: 80px 48px 110px; }
.article-layout-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.article-cat-badge { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; background: rgba(232,93,38,0.1); color: var(--orange); padding: 5px 10px; border-radius: 4px; font-weight: 500; }
.article-date { font-size: 0.75rem; color: var(--muted); }
.article-body h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--navy); margin-bottom: 24px; line-height: 1.15; }
.article-content { font-size: 0.95rem; line-height: 1.9; color: var(--text); }
.article-content p { margin-bottom: 20px; }
.article-content h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 16px; }
.article-content h3 { font-size: 1.2rem; color: var(--navy); margin: 28px 0 12px; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { margin-bottom: 8px; color: var(--muted); font-size: 0.93rem; }
.article-featured-img { width: 100%; height: 400px; object-fit: cover; border-radius: 8px; margin-bottom: 36px; background: var(--navy); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--orange); text-decoration: none; margin-bottom: 32px; font-weight: 500; }
.back-link:hover { color: var(--navy); }

/* SERVICE DETAIL PAGE */
.service-detail-layout { padding: 80px 48px 110px; }
.service-detail-inner { max-width: 1260px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.service-detail-body h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--navy); margin: 32px 0 16px; }
.service-detail-body h2 em { font-style: italic; color: var(--orange); }
.service-detail-body p { font-size: 0.94rem; line-height: 1.9; color: var(--muted); margin-bottom: 16px; }
.service-sidebar-cta { background: var(--navy); border-radius: 10px; padding: 36px; color: white; }
.service-sidebar-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 12px; }
.service-sidebar-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
