/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Colors */
    --navy: #1B2A47;
    --navy-dark: #111D30;
    --navy-deeper: #0A1220;
    --green: #2C4A3B;
    --green-light: #3A6350;
    --graphite: #3A3A3A;
    --graphite-light: #6B6B6B;
    --gold: #C5A059;
    --gold-hover: #D8B56E;
    --gold-light: rgba(197, 160, 89, 0.12);
    --marble: #F5F6F8;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BD5A;
    --danger: #E74C3C;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Layout */
    --max-w: 1200px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.10);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--graphite);
    background: var(--marble);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
}

a { text-decoration:none; color:inherit; transition: color var(--transition); }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width:576px) {
    .container { padding: 0 16px; }
}

.section-padding { padding: 100px 0; }

@media (max-width:768px) {
    .section-padding { padding: 60px 0; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-label.light { color: var(--gold); }

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--graphite-light);
    line-height: 1.7;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(197,160,89,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197,160,89,0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

/* Subtle pulse for main CTA */
.pulse-subtle { animation: pulse-glow 3s ease-in-out infinite; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(197,160,89,0.25); }
    50% { box-shadow: 0 4px 25px rgba(197,160,89,0.5); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
    transition: padding var(--transition), box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,0.97);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--navy);
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: baseline;
}

.logo-t {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--navy);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--gold); }

.cta-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 12px;
    margin: -8px;
}

.mobile-menu-toggle .icon { width: 28px; height: 28px; }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    background: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    border-top: 1px solid #eee;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--navy);
    font-weight: 500;
    font-size: 1.05rem;
}

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu a.mobile-cta-menu {
    margin-top: 16px;
    padding: 12px 20px;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: none;
    transition: background var(--transition);
}

.mobile-menu a.mobile-cta-menu:active {
    background: rgba(197, 160, 89, 0.1);
}

.mobile-menu a.mobile-cta-menu svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background-image: url('../assets/img/hero_bg_1786997791798.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,29,48,0.92) 0%, rgba(44,74,59,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197,160,89,0.15);
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.7;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-checklist svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    padding: 20px 0;
    border-bottom: 3px solid var(--gold);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 40px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.trust-bar-icon {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process { background: var(--marble); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--green));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -8px;
    right: calc(50% - 50px);
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold-light);
    transition: all var(--transition);
}

.process-step:hover .step-icon-wrap {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.step-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--graphite-light);
    line-height: 1.6;
}

@media (max-width:992px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
}

@media (max-width:576px) {
    .process-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width:768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stat-number { font-size: 2.5rem; }
}

/* ============================================
   TRUST FACTORS
   ============================================ */
.trust-factors { background: var(--white); }

.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.factor-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--marble);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.factor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition);
}

.factor-card:hover .icon-wrapper {
    background: var(--gold);
}

.factor-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    transition: color var(--transition);
}

.factor-card:hover .factor-icon { color: var(--white); }

.factor-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.factor-card p {
    color: var(--graphite-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width:768px) {
    .factors-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--marble); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.price-card.highlighted {
    border-color: var(--gold);
    background: var(--navy);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.price-card.highlighted:hover { transform: scale(1.06); }

.price-card.highlighted .plan-name,
.price-card.highlighted .plan-price,
.price-card.highlighted .plan-price strong { color: var(--white); }

.price-card.highlighted .plan-desc { color: rgba(255,255,255,0.7); }

.price-card.highlighted .plan-features li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.08);
}

.price-card.highlighted .check-icon { color: var(--gold); }

.price-card.highlighted .plan-icon { color: var(--gold); }

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    color: var(--navy-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(197,160,89,0.3);
}

.plan-icon-wrap {
    margin-bottom: 16px;
}

.plan-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    margin: 0 auto;
}

.plan-name {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--graphite-light);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 1rem;
    color: var(--graphite-light);
    margin-bottom: 8px;
    line-height: 1.3;
}

.plan-price strong {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--green);
    display: inline;
}

.plan-price-period {
    font-size: 1rem;
    font-weight: 400;
}

.plan-price-note {
    font-size: 0.78rem;
    color: var(--graphite-light);
    margin-bottom: 24px;
    opacity: 0.75;
    line-height: 1.4;
}

.price-card.highlighted .plan-price-note {
    color: rgba(255,255,255,0.5);
}

.plan-features {
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.93rem;
    text-align: left;
    line-height: 1.4;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li.feature-includes {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gold);
    border-bottom-style: dashed;
}

.price-card.highlighted .feature-includes {
    color: var(--gold);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-plan { width: 100%; margin-top: auto; }

/* Subscription Banner */
.subscription-banner {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.subscription-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(197,160,89,0.15) 0%, transparent 70%);
    transform: translate(30%, -30%);
    pointer-events: none;
}

.sub-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sub-badge {
    background: rgba(197,160,89,0.15);
    color: var(--gold);
    border: 1px solid rgba(197,160,89,0.3);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-info .plan-price {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.sub-info .plan-price strong {
    color: var(--gold);
}

.sub-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.sub-features ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
}

.sub-features ul li:last-child { margin-bottom: 0; }

.sub-features .check-icon {
    width: 22px; height: 22px;
    color: var(--gold);
    margin-top: 2px;
}

/* Addons Section */
.addons-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.addons-header {
    text-align: center;
    margin-bottom: 36px;
}

.addons-header h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.addons-header p {
    font-size: 0.95rem;
    color: var(--graphite-light);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.addon-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.addon-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.addon-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.addon-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border-radius: 50%;
}

.addon-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.addon-info {
    flex: 1;
    min-width: 0;
}

.addon-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.addon-info p {
    font-size: 0.82rem;
    color: var(--graphite-light);
    line-height: 1.4;
}

.addon-price {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    padding-left: 12px;
}

/* Custom Package Banner */
.custom-package-banner {
    position: relative;
    margin-top: 40px;
    background: var(--navy);
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.custom-package-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
    transform: translate(-30%, -30%);
    pointer-events: none;
}

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

.custom-package-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.custom-package-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.custom-package-header h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin: 0;
}

.custom-package-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
    max-width: 700px;
}

.custom-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.custom-package-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.action-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

@media (max-width:992px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .price-card.highlighted { transform: none; }
    .price-card.highlighted:hover { transform: translateY(-4px); }
    .addons-grid { grid-template-columns: 1fr; }
    .subscription-banner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
    .custom-package-banner { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; }
    .custom-package-header { justify-content: center; }
    .custom-tags { justify-content: center; }
}

@media (max-width:550px) {
    .custom-package-header { 
        flex-direction: column-reverse; 
        gap: 8px;
    }
}


/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--white); }

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gallery-pair {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-item {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.image-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
}

.label-before {
    background: rgba(231,76,60,0.8);
    color: var(--white);
}

.label-after {
    background: rgba(44,74,59,0.85);
    color: var(--white);
}

.gallery-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

@media (max-width:768px) {
    .gallery-pair { flex-direction: column; }
    .gallery-arrow { transform: rotate(90deg); }
}

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guarantee-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.guarantee-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(197,160,89,0.3);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.guarantee-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.guarantee-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.93rem;
    line-height: 1.7;
}

@media (max-width:768px) {
    .guarantee-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ============================================
   TESTIMONIALS (OPINIE)
   ============================================ */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--marble);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--gold-light);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-card .quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--graphite);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    border-top: 1px solid #e4e4e4;
    padding-top: 16px;
}

@media (max-width:992px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.faq { background: var(--marble); }

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

.accordion-item {
    border: 1px solid #e4e4e4;
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.accordion-item:hover {
    border-color: var(--gold);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    transition: background var(--transition);
}

.accordion-header:hover { background: rgba(197,160,89,0.04); }

.icon-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-plus {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .icon-plus {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-body {
    padding: 0 24px 20px;
    color: var(--graphite-light);
    line-height: 1.7;
}

.accordion-body p { margin: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
    color: var(--white);
}

a.contact-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(197,160,89,0.3);
}

.contact-icon-wrap {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    border-radius: 50%;
}

.contact-icon-wrap svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

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

.contact-item span {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.5;
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--graphite);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.form-subtitle {
    color: var(--graphite-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--graphite);
}

.required { color: var(--danger); }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    background: var(--marble);
    color: var(--graphite);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    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='%236B6B6B' d='M6 8.825L0.375 3.2l.85-.85L6 7.125 10.775 2.35l.85.85z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    margin-top: 4px;
    position: relative;
}

.btn-text, .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--graphite-light);
    margin-top: 14px;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: scale-in 0.5s ease;
}

@keyframes scale-in {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--green);
}

.form-success p {
    color: var(--graphite-light);
    margin-bottom: 24px;
}

@media (max-width:768px) {
    .contact-container { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
    display: inline-flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav h4,
.footer-contact-col h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-nav a,
.footer-contact-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 8px 0;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-nav a:hover,
.footer-contact-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
}

@media (max-width:768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    z-index: 999;
    transition: all var(--transition);
    opacity: 0;
    transform: scale(0);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: var(--white);
    color: var(--graphite);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    gap: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.mobile-cta-btn, .mobile-wa-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.mobile-cta-btn {
    background: var(--gold);
    color: var(--navy-dark);
}

.mobile-cta-btn svg { width: 18px; height: 18px; }

.mobile-wa-btn {
    background: var(--whatsapp);
    color: var(--white);
}

.mobile-wa-btn svg { width: 18px; height: 18px; }

@media (max-width:768px) {
    .mobile-sticky-cta { display: flex; }
    .whatsapp-float { display: none !important; }
    body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.scroll-top svg { width: 20px; height: 20px; }

@media (max-width:768px) {
    .scroll-top { bottom: calc(90px + env(safe-area-inset-bottom)); left: 16px; width: 44px; height: 44px; }
}

/* Addon card fix for very small screens */
@media (max-width:420px) {
    .addon-card {
        flex-wrap: wrap;
        padding: 16px;
    }
    .addon-info {
        flex: 1 1 calc(100% - 60px);
    }
    .addon-price {
        width: 100%;
        padding-left: 60px;
        margin-top: 4px;
        text-align: left;
    }
}

@media (max-width:375px) {
    .hide-xs { display: none; }
}

/* ============================================
   RESPONSIVE NAVBAR
   ============================================ */
@media (max-width:960px) {
    .nav-links, .cta-nav { display: none; }
    .mobile-menu-toggle { display: block; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar, .whatsapp-float, .mobile-sticky-cta, .scroll-top { display: none !important; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero-overlay { background: rgba(0,0,0,0.6); }
    body { background: white; }
}
