/* ==========================================================================
   So'Evasions - Travel Planner Landing Page
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --navy: #04325d;
    --navy-light: #0a4a7c;
    --orange: #f88c2c;
    --orange-glow: rgba(248, 140, 44, 0.15);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.06);
    --whatsapp: #25D366;

    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background: var(--navy);
    min-height: 100vh;
    color: #fff;
    line-height: 1.6;
}

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

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.serif {
    font-family: var(--font-serif);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
}

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

.title-light {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.title-accent {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    color: #fff;
}

/* --------------------------------------------------------------------------
   Glass Morphism Effects
   -------------------------------------------------------------------------- */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-strong {
    background: var(--glass-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.glow {
    box-shadow: 0 0 60px var(--orange-glow), 0 0 120px var(--orange-glow);
}

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

.section {
    padding: 8rem 2rem;
    position: relative;
}

/* --------------------------------------------------------------------------
   Ambient Background
   -------------------------------------------------------------------------- */
.ambient-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(248, 140, 44, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(248, 140, 44, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 50% 0%, rgba(10, 74, 124, 0.5) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 90vw;
}

.nav-logo {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

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

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

.lang-switcher {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
    font-family: var(--font-sans);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--orange);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 1.5rem 2rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(248, 140, 44, 0.3);
}

.btn:hover::before {
    opacity: 1;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-arrow {
    font-size: 1.2rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --------------------------------------------------------------------------
   Photo Frame
   -------------------------------------------------------------------------- */
.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.photo-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-glow) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(248, 140, 44, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

.photo-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(4, 50, 93, 0.6);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   Card Hover Effect
   -------------------------------------------------------------------------- */
.card-hover {
    transition: var(--transition-smooth);
    border-radius: 16px;
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(248, 140, 44, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 2rem 4rem;
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-photo-container {
    position: absolute;
    top: 18%;
    right: 5%;
    width: 380px;
    height: auto;
    z-index: 1;
}

.hero-photo {
    width: 100%;
    height: auto;
    transform: rotate(3deg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-logo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-tag-line {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-tag-line .label {
    margin-bottom: 0;
}

.hero-tag-line .divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-tag-line .location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

.hero-title {
    margin-bottom: 3rem;
}

.hero-title .title-line1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    font-style: italic;
    display: block;
    line-height: 1;
}

.hero-title .title-line2 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    font-style: italic;
    display: block;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
}

.hero-quote {
    max-width: 400px;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--orange);
}

.hero-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.hero-quote cite {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
}

/* --------------------------------------------------------------------------
   What Section
   -------------------------------------------------------------------------- */
.what-section {
    position: relative;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.what-title {
    margin-bottom: 2rem;
}

.what-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.what-points {
    padding: 2.5rem;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.point-item.last {
    border-bottom: none;
}

.point-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.point-item span:last-child {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   Sophie Section
   -------------------------------------------------------------------------- */
.sophie-section {
    position: relative;
    overflow: hidden;
}

.sophie-glow {
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 140, 44, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}

.sophie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sophie-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.sophie-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 140, 44, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.sophie-photo::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid rgba(248, 140, 44, 0.2);
    border-radius: 24px;
    pointer-events: none;
}

.sophie-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.sophie-name {
    font-size: clamp(3rem, 8vw, 5rem);
    font-style: italic;
    margin-bottom: 2rem;
    color: #fff;
}

.sophie-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.sophie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing-section {
    position: relative;
}

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

.pricing-title {
    margin-bottom: 1rem;
}

.pricing-title .title-light,
.pricing-title .title-accent {
    display: inline;
}

.pricing-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.pricing-card {
    padding: 2rem;
    position: relative;
}

.pricing-card.popular {
    border-color: rgba(248, 140, 44, 0.3);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tier-days {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff;
}

.tier-price {
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
}

.price-value.highlight {
    color: var(--orange);
}

.price-unit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.tier-example {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.pricing-includes {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */
.process-section {
    padding: 6rem 2rem;
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-style: italic;
    color: var(--orange);
    opacity: 0.6;
    display: block;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.cta-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
    filter: blur(100px);
    opacity: 0.5;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.cta-title {
    margin-bottom: 1rem;
}

.cta-title .title-light {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    display: block;
}

.cta-accent {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-style: italic;
    color: var(--orange);
}

.cta-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-top: 0.5rem;
}

.cta-section .btn {
    margin-top: 3rem;
}

.cta-contact {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--orange);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-btn:hover {
    color: var(--orange);
    border-color: rgba(248, 140, 44, 0.3);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-social .social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.credit a {
    color: var(--orange);
    transition: opacity 0.3s;
}

.credit a:hover {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Page Header (subpages)
   -------------------------------------------------------------------------- */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 140, 44, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-section {
    padding-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

/* Removed tall/wide variants - uniform grid is cleaner */

/* Tablet: 2 columns */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-img-wrapper {
    position: absolute;
    inset: 0;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.gallery-tag {
    background: rgba(248, 140, 44, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.6rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.gallery-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.gallery-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.gallery-duration {
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 500;
}

/* CTA Mini */
.cta-mini {
    padding: 4rem 2rem;
}

.cta-mini .cta-content {
    padding: 0;
}

.cta-title-small {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-section {
    padding-top: 0;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

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

select.form-input option {
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem;
}

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

.contact-info-card {
    padding: 2rem;
}

.contact-info-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(248, 140, 44, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-info-text a {
    color: inherit;
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: var(--orange);
}

.map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    height: 250px;
    margin-top: 1rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(90%);
}

.contact-form-card {
    padding: 2rem;
}

.contact-social {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-social-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.3s, transform 0.3s;
}

.contact-social-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Active nav link */
.nav-link.active {
    color: var(--orange);
}

.mobile-nav-link.active {
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(4, 50, 93, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.open .lightbox-img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-info {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 500px;
}

.lightbox-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lightbox-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.lightbox-counter {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 500;
}

/* Hide nav buttons when only 1 image */
.lightbox.single-image .lightbox-prev,
.lightbox.single-image .lightbox-next,
.lightbox.single-image .lightbox-counter {
    display: none;
}

/* --------------------------------------------------------------------------
   Responsive - Mobile
   -------------------------------------------------------------------------- */
.hide-mobile {
    display: flex;
}

.show-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: flex !important;
    }

    .mobile-menu {
        display: flex;
    }

    /* Reduce container padding on mobile for more content space */
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-photo-container {
        position: relative;
        top: auto;
        right: auto;
        width: 200px;
        margin: 0 auto 2rem;
        order: -1;
    }

    .hero-photo {
        transform: none;
    }

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

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

    .hero-quote {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tag-line {
        flex-wrap: wrap;
    }

    .section {
        padding: 3rem 1rem;
    }

    .what-grid,
    .sophie-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sophie-photo {
        max-width: 350px;
        margin: 0 auto;
    }

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

    .process-container {
        padding: 2rem;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

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

    .footer-bottom {
        justify-content: center;
        gap: 1.5rem;
    }

    .nav {
        padding: 0.6rem 1rem;
        gap: 1rem;
    }

    .lang-switcher {
        margin-left: 0;
    }

    /* Page Header mobile */
    .page-header {
        padding: 5rem 1rem 2rem;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 16 / 10;
    }

    /* Lightbox mobile */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 0.75rem;
    }

    .lightbox-next {
        right: 0.75rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-img {
        max-height: 60vh;
    }

    .lightbox-title {
        font-size: 1.4rem;
    }

    .lightbox-info {
        padding: 0 1rem;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-title .title-line1,
    .hero-title .title-line2 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .sophie-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .cta-title .title-light,
    .cta-accent {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

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

    .process-step:last-child {
        grid-column: span 2;
    }
}

/* --------------------------------------------------------------------------
   Footer Credit - Standard
   -------------------------------------------------------------------------- */
.footer-credit {
    padding: 1rem 0;
    text-align: center;
    background: var(--navy);
}

.footer-credit p {
    margin: 0;
    font-size: 0.625rem;
    font-weight: 300;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   Sticky CTA (mobile only)
   -------------------------------------------------------------------------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(4, 50, 93, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    gap: 10px;
    width: 100%;
}

.sticky-btn-main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: var(--orange);
    overflow: hidden;
    white-space: nowrap;
}

.sticky-btn-main svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sticky-btn-wa {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.sticky-btn-wa svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Hide sticky CTA on tablet+ */
@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* Mobile: add space for sticky + credit visibility */
@media (max-width: 767px) {
    .footer-credit {
        padding-bottom: 90px;
    }
}

