/* =====================================================
   PACIFIC TOURS - LUXURY OCEAN EXPERIENCE
   Premium dark theme - Full Responsive
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-deep: #0a0a0a;
    --bg-dark: #0f0f0f;
    --bg-medium: #1a1a1a;
    --bg-light: #262626;
    --bg-card: rgba(255, 255, 255, 0.05);

    --accent: #0a7ea4;
    --accent-bright: #0891b2;
    --accent-dim: rgba(10, 126, 164, 0.12);
    --accent-glow: rgba(10, 126, 164, 0.3);
    --gold: #f59e0b;
    --emerald: #10b981;

    --text-white: #fafafa;
    --text-gray: rgba(250, 250, 250, 0.7);
    --text-dim: rgba(250, 250, 250, 0.4);

    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(10, 126, 164, 0.3);

    --font-sans: 'Sora', -apple-system, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-mono: 'Space Mono', monospace;

    --section-gap: clamp(60px, 10vw, 140px);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== BULLES AQUARIUM ===== */
.global-bubbles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.global-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(10, 126, 164, 0.3) 0%,
        rgba(10, 126, 164, 0.15) 20%,
        rgba(10, 126, 164, 0.08) 40%,
        rgba(10, 126, 164, 0.04) 60%,
        transparent 100%);
    border: 1px solid rgba(10, 126, 164, 0.2);
    box-shadow:
        inset 2px 2px 6px rgba(255, 255, 255, 0.8),
        inset -1px -1px 4px rgba(10, 126, 164, 0.15),
        0 0 6px rgba(10, 126, 164, 0.15);
    animation: bubbleRise linear infinite;
}

.global-bubbles .bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 70%);
    border-radius: 50%;
}

@keyframes bubbleRise {
    0% { transform: translateY(0) translateX(0); opacity: 0.9; }
    10% { transform: translateY(-10vh) translateX(5px); }
    20% { transform: translateY(-20vh) translateX(-8px); }
    30% { transform: translateY(-30vh) translateX(10px); }
    40% { transform: translateY(-40vh) translateX(-5px); }
    50% { transform: translateY(-50vh) translateX(12px); opacity: 0.85; }
    60% { transform: translateY(-60vh) translateX(-10px); }
    70% { transform: translateY(-70vh) translateX(8px); }
    80% { transform: translateY(-80vh) translateX(-6px); opacity: 0.7; }
    90% { transform: translateY(-90vh) translateX(4px); opacity: 0.5; }
    100% { transform: translateY(-105vh) translateX(0); opacity: 0; }
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-sans); 
    background: var(--bg-deep); 
    color: var(--text-white); 
    line-height: 1.6; 
    overflow-x: hidden;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 80px); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Cursor glow - desktop only */
.cursor-glow { 
    position: fixed; 
    width: 600px; height: 600px; 
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); 
    border-radius: 50%; 
    pointer-events: none; 
    z-index: 0; 
    opacity: 0.08; 
    transform: translate(-50%, -50%);
    display: none;
}
@media (min-width: 1024px) { .cursor-glow { display: block; } }

/* ===== TYPOGRAPHY ===== */
.italic { font-family: var(--font-serif); font-style: italic; color: var(--accent); }

.section-tag { 
    display: inline-flex; 
    gap: 8px; 
    font-family: var(--font-mono);
    font-size: clamp(0.6rem, 2vw, 0.7rem); 
    font-weight: 700; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    color: var(--accent); 
    margin-bottom: 1rem;
    padding: 6px 14px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
}

.section-title-large { 
    font-size: clamp(1.75rem, 5vw, 4rem); 
    font-weight: 600; 
    line-height: 1.1; 
    letter-spacing: -0.02em;
}

/* ===== NAVIGATION ===== */
.nav { 
    position: fixed; 
    top: 0; left: 0; right: 0; 
    z-index: 1000; 
    padding: 1rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    transition: all 0.4s ease;
}

.nav.scrolled {
    padding: 0.75rem 5%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-logo { height: clamp(40px, 8vw, 60px); }

.nav-menu { display: none; gap: 2rem; list-style: none; }
.nav-menu a { font-size: 0.85rem; font-weight: 500; color: var(--text-gray); padding: 8px 0; transition: color 0.3s ease; }
.nav-menu a:hover { color: var(--accent); }

.nav-cta {
    display: none;
    padding: 10px 20px;
    background: var(--accent);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 126, 164, 0.25);
}

.nav-toggle { 
    display: flex; flex-direction: column; gap: 5px; 
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--accent); transition: all 0.3s ease; }
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

.nav-menu.active {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-deep);
    gap: 2rem;
    z-index: 1000;
}
.nav-menu.active a { font-size: 1.5rem; color: var(--text-white); }

@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .nav-cta { display: block; }
    .nav-toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }

.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(10, 126, 164, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(10, 126, 164, 0.05) 0%, transparent 40%);
}

.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite;
}
.hero-glow-1 {
    width: clamp(250px, 45vw, 450px); height: clamp(250px, 45vw, 450px);
    background: linear-gradient(135deg, rgba(10, 126, 164, 0.2), rgba(8, 145, 178, 0.15));
    opacity: 0.4; top: 10%; right: 5%;
}
.hero-glow-2 {
    width: clamp(200px, 35vw, 350px); height: clamp(200px, 35vw, 350px);
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(10, 126, 164, 0.1));
    opacity: 0.3; bottom: 10%; left: 5%; animation-delay: -4s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.2) rotate(5deg); opacity: 0.06; }
}

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

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: rgba(10, 126, 164, 0.08);
    border: 1px solid rgba(10, 126, 164, 0.2);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--emerald); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title { 
    font-size: clamp(2.25rem, 9vw, 5rem); 
    font-weight: 600; 
    line-height: 1.05; 
    letter-spacing: -0.03em; 
    margin-bottom: 1.25rem;
}
.hero-title-line { display: block; }
.hero-title-word.italic { color: var(--accent); }
.hero-title-word.outline { -webkit-text-stroke: 1.5px var(--text-white); color: transparent; }

.hero-description { 
    font-size: clamp(0.95rem, 2.5vw, 1.1rem); 
    color: var(--text-gray); 
    max-width: 480px; 
    margin: 0 auto 2rem; 
    line-height: 1.7;
}
.hero-description strong { color: var(--text-white); font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: clamp(14px, 3vw, 18px) clamp(28px, 4vw, 36px);
    background: var(--accent);
    color: #ffffff;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(10, 126, 164, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 126, 164, 0.3);
    background: var(--accent-bright);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
    display: inline-flex;
    padding: clamp(14px, 3vw, 18px) clamp(28px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(10, 126, 164, 0.15);
    transform: translateY(-3px);
}

.hero-stats { display: flex; justify-content: center; gap: clamp(1.25rem, 4vw, 2.5rem); flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { 
    font-size: clamp(1.75rem, 5vw, 2.5rem); 
    font-weight: 700; line-height: 1;
    display: flex; align-items: baseline; justify-content: center;
}
.hero-stat-plus { font-size: 0.9rem; color: var(--accent); margin-left: 2px; }
.hero-stat-label { font-size: clamp(0.65rem, 2vw, 0.75rem); color: var(--text-dim); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-stat-divider { width: 1px; height: 35px; background: var(--border); display: none; }

.hero-visual, .hero-float { display: none; }

@media (min-width: 1024px) {
    .hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
    .hero-content { text-align: left; max-width: none; margin: 0; }
    .hero-description { margin: 0 0 2rem; }
    .hero-actions { justify-content: flex-start; }
    .hero-stats { justify-content: flex-start; }
    .hero-stat { text-align: left; }
    .hero-stat-number { justify-content: flex-start; }
    .hero-stat-divider { display: block; }
    
    .hero-visual { display: flex; justify-content: center; position: relative; }
    .hero-image-container { position: relative; width: 100%; max-width: 420px; }
    .hero-image-wrapper { 
        border-radius: 24px; overflow: hidden; aspect-ratio: 3/4;
        border: 1px solid var(--border);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    }
    .hero-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
    .hero-image-wrapper:hover .hero-image { transform: scale(1.05); }
    .hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-deep) 0%, transparent 40%); pointer-events: none; }
    
    .hero-float { 
        display: flex; position: absolute; 
        background: rgba(10, 20, 32, 0.95); backdrop-filter: blur(15px);
        border: 1px solid var(--border); border-radius: 14px; 
        padding: 12px 16px; align-items: center; gap: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        animation: float 6s ease-in-out infinite;
    }
    .hero-float-1 { top: 15%; left: -20px; }
    .hero-float-2 { bottom: 25%; right: -15px; animation-delay: -3s; flex-direction: column; align-items: flex-start; gap: 4px; }
    .hero-float-icon { width: 40px; height: 40px; background: var(--accent-dim); border: 1px solid var(--border-accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .hero-float-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
    .hero-float-title { font-weight: 600; font-size: 0.85rem; }
    .hero-float-sub { font-size: 0.7rem; color: var(--text-dim); }
    .hero-float-rating { display: flex; align-items: center; gap: 6px; }
    .hero-float-rating svg { width: 16px; height: 16px; fill: var(--gold); }
    .hero-float-rating span { font-weight: 700; font-size: 1rem; }
    .hero-float-reviews { font-size: 0.7rem; color: var(--text-dim); }
    
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
}

/* ===== MARQUEE ===== */
.marquee {
    padding: 1.25rem 0;
    background: var(--bg-medium);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-content { 
    display: flex; align-items: center; gap: 2rem; 
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-content span { 
    font-family: var(--font-mono);
    font-size: clamp(0.6rem, 2vw, 0.7rem); 
    color: var(--text-dim); 
    text-transform: uppercase; letter-spacing: 0.15em; white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

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

/* ===== CONCEPT ===== */
.concept { padding: var(--section-gap) 0; }
.concept-header { margin-bottom: 2.5rem; }
.concept-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.concept-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(10px);
}
.concept-card:hover {
    border-color: rgba(10, 126, 164, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(10, 126, 164, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.concept-card-icon { 
    width: 48px; height: 48px; background: var(--accent-dim); border: 1px solid var(--border-accent);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.concept-card:hover .concept-card-icon { background: linear-gradient(135deg, var(--accent), var(--accent-bright)); }
.concept-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.concept-card:hover .concept-card-icon svg { stroke: var(--bg-deep); }

.concept-card-tag { font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.concept-card h3 { font-size: clamp(1.05rem, 3vw, 1.25rem); font-weight: 600; margin-bottom: 0.5rem; }
.concept-card p { font-size: clamp(0.85rem, 2.5vw, 0.9rem); color: var(--text-gray); line-height: 1.6; }
.concept-card-number { position: absolute; bottom: 1rem; right: 1rem; font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--border); line-height: 1; }

.concept-card-large { display: none; }

@media (min-width: 640px) {
    .concept-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .concept-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
    .concept-card-large { display: flex; flex-direction: column; grid-row: span 2; padding: 0; }
    .concept-card-large .concept-card-image { flex: 1; min-height: 200px; overflow: hidden; border-radius: 20px 20px 0 0; }
    .concept-card-large .concept-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
    .concept-card-large:hover .concept-card-image img { transform: scale(1.08); }
    .concept-card-large .concept-card-content { padding: 2rem; }
}

/* ===== MENU ===== */
.menu-section { padding: var(--section-gap) 0; background: var(--bg-dark); }
.menu-header { margin-bottom: 2rem; }
.menu-header-text { color: var(--text-gray); font-size: clamp(0.9rem, 2.5vw, 1rem); line-height: 1.7; margin-top: 1rem; }

.menu-categories { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }

.menu-category {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-category:hover {
    border-color: rgba(10, 126, 164, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(10, 126, 164, 0.3);
}

.menu-category-image { height: 140px; overflow: hidden; position: relative; }
.menu-category-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 15, 15, 0.8) 0%, transparent 50%); }
.menu-category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-category:hover .menu-category-image img { transform: scale(1.1); }

.menu-category-content { padding: 1.25rem; }
.menu-category-count { font-family: var(--font-mono); font-size: 0.55rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 8px; background: var(--accent-dim); border-radius: 100px; display: inline-block; margin-bottom: 0.5rem; }
.menu-category h3 { font-size: clamp(0.95rem, 3vw, 1.1rem); font-weight: 600; margin-bottom: 0.4rem; }
.menu-category p { font-size: clamp(0.8rem, 2.5vw, 0.85rem); color: var(--text-gray); line-height: 1.5; }

@media (min-width: 480px) {
    .menu-categories { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
    .menu-categories { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
    .menu-category-image { height: 200px; }
}

/* ===== PRICING ===== */
.pricing {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: clamp(18px, 4vw, 28px); 
    padding: clamp(1.75rem, 5vw, 3rem);
    position: relative; overflow: hidden;
}
.pricing::before { content: ''; position: absolute; top: -50%; right: -20%; width: 350px; height: 350px; background: radial-gradient(circle, rgba(10, 126, 164, 0.06) 0%, transparent 70%); pointer-events: none; }

.pricing-header { text-align: center; margin-bottom: 2rem; }
.pricing-header h3 { font-size: clamp(1.4rem, 5vw, 2rem); font-weight: 600; margin-bottom: 0.5rem; }
.pricing-header p { color: var(--text-gray); font-size: clamp(0.85rem, 2.5vw, 0.95rem); }

.pricing-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}
.pricing-card:hover {
    border-color: rgba(10, 126, 164, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.pricing-card-featured {
    background: rgba(10, 126, 164, 0.08);
    border-color: var(--accent);
    order: -1;
}
.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card-header { margin-bottom: 1rem; }
.pricing-period { font-size: clamp(1rem, 3vw, 1.2rem); font-weight: 600; display: block; }
.pricing-days { font-size: 0.7rem; color: var(--text-dim); }

.pricing-price { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 1.25rem; }
.pricing-currency { font-size: clamp(1rem, 3vw, 1.4rem); font-weight: 600; margin-top: 0.5rem; color: var(--accent); }
.pricing-amount { font-size: clamp(2.75rem, 10vw, 4rem); font-weight: 700; line-height: 1; }
.pricing-cents { font-size: clamp(1rem, 3vw, 1.4rem); font-weight: 600; margin-top: 0.5rem; }

.pricing-features { list-style: none; text-align: left; }
.pricing-features li { padding: 0.7rem 0; border-top: 1px solid var(--border); font-size: clamp(0.8rem, 2.5vw, 0.85rem); color: var(--text-gray); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

@media (min-width: 768px) {
    .pricing-cards { grid-template-columns: repeat(3, 1fr); }
    .pricing-card-featured { order: 0; transform: scale(1.05); }
    .pricing-card-featured:hover { transform: scale(1.07) translateY(-5px); }
}

/* ===== GALLERY ===== */
.gallery { padding: var(--section-gap) 0; }
.gallery-header { margin-bottom: 2rem; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s ease;
}
.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem; background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-weight: 600; font-size: 0.85rem; }

@media (min-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { 
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 220px 220px; }
    .gallery-item { aspect-ratio: auto; }
    .gallery-item-1 { grid-row: span 2; }
}

/* ===== CTA ===== */
.cta-section { padding: var(--section-gap) 0; background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(0, 77, 115, 0.08) 50%, var(--bg-deep) 100%); }
.cta-content { text-align: center; }
.cta-content h2 { font-size: clamp(1.75rem, 6vw, 3.5rem); font-weight: 600; margin-bottom: 1rem; line-height: 1.1; }
.cta-content p { font-size: clamp(0.95rem, 3vw, 1.1rem); color: var(--text-gray); margin-bottom: 2rem; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact { padding: var(--section-gap) 0; background: linear-gradient(180deg, var(--bg-medium) 0%, rgba(0, 77, 115, 0.06) 50%, var(--bg-medium) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 14px; transition: all 0.3s ease; }
.contact-card:hover { border-color: var(--accent); background: rgba(0, 212, 255, 0.04); }

.contact-card-icon { width: 44px; height: 44px; background: var(--accent-dim); border: 1px solid var(--border-accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.contact-card-content h4 { font-weight: 600; margin-bottom: 3px; font-size: 0.9rem; }
.contact-card-content p { font-size: 0.8rem; color: var(--text-gray); line-height: 1.5; }
.contact-card-content a { color: var(--text-gray); }
.contact-card-content a:hover { color: var(--accent); }

.contact-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); min-height: 280px; }
.contact-map-wrapper { width: 100%; height: 100%; min-height: 280px; }
.contact-map-wrapper iframe { width: 100%; height: 100%; min-height: 280px; filter: invert(92%) hue-rotate(180deg) brightness(0.85) contrast(0.95); }

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
    .contact-map, .contact-map-wrapper, .contact-map-wrapper iframe { min-height: 380px; }
}

/* ===== FOOTER ===== */
.footer { padding: 3.5rem 0 1.5rem; border-top: 1px solid rgba(0, 212, 255, 0.1); background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(0, 40, 70, 0.2) 100%); }

.footer-main { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { max-width: 260px; }
.footer-logo { height: 36px; margin: 0 auto 1rem; }
.footer-brand p { font-size: 0.8rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 1rem; }

.footer-social { display: flex; gap: 0.5rem; justify-content: center; }
.footer-social a { width: 40px; height: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { border-color: var(--accent); background: var(--accent-dim); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--text-gray); }
.footer-social a:hover svg { stroke: var(--accent); }

.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.footer-col h4 { font-weight: 600; margin-bottom: 0.875rem; font-size: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.75rem; color: var(--text-gray); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom { display: flex; justify-content: center; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.7rem; color: var(--text-dim); }

@media (min-width: 768px) {
    .footer-main { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; }
    .footer-logo { margin: 0 0 1rem; }
    .footer-social { justify-content: flex-start; }
    .footer-links { gap: 3.5rem; }
}

/* ===== UTILITIES ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-medium); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-bright); }

::selection { background: var(--accent); color: var(--bg-deep); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
