@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --bg-obsidian: #0B0C10;
    --bg-charcoal: #14171A;
    --bg-card: rgba(20, 23, 26, 0.75);
    --gold-primary: #D4AF37;
    --gold-dark: #AA820A;
    --gold-light: #F3E5AB;
    --text-primary: #FFFFFF;
    --text-secondary: #8F9094;
    --text-muted: #626366;
    
    /* Layout & Shadows */
    --border-gold: rgba(212, 175, 55, 0.15);
    --border-gold-focus: rgba(212, 175, 55, 0.5);
    --shadow-gold: 0 8px 32px 0 rgba(212, 175, 55, 0.08);
    --shadow-gold-hover: 0 12px 40px 0 rgba(212, 175, 55, 0.18);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   RESET & FOUNDATIONS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* ==========================================
   UTILITY CLASSES (Glassmorphism & Gradients)
   ========================================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-4px);
}

.text-gold {
    color: var(--gold-primary);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   TOP PRE-BOOKING ALERT BANNER & HEADER
   ========================================== */
.pre-booking-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: var(--bg-obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1001;
    text-align: center;
    padding: 0 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    background: var(--bg-obsidian);
    border-bottom-color: var(--border-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
}

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold-primary);
    border-radius: 4px;
    background: transparent;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--gold-primary);
    color: var(--bg-obsidian);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle svg {
    stroke: var(--text-primary);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 220px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    color: var(--bg-obsidian);
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
}

/* ==========================================
   SECTIONS GENERAL
   ========================================== */
.section {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--bg-charcoal);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================
   THE 3 PILLARS SECTION
   ========================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    padding: 40px 32px;
    text-align: center;
}

.pillar-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
}

.pillar-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.pillar-services {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.pillar-services li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-services li svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* ==========================================
   PRICING & CALCULATOR
   ========================================== */
.pricing-layout {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 48px;
    align-items: stretch;
}

.pricing-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.pricing-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin-top: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-features li svg {
    color: var(--gold-primary);
}

/* Calculator Card */
.calculator-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-selector {
    margin-bottom: 24px;
}

.calc-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-btn.active {
    background: var(--gold-primary);
    color: var(--bg-obsidian);
    font-weight: 600;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.package-btn {
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 12px 4px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.package-btn.active {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-primary);
    font-weight: 600;
}

/* Pricing Results Display */
.calc-result-box {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.result-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.result-val {
    font-size: 1.1rem;
    font-weight: 500;
}

.total-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.saving-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(42, 157, 24, 0.15);
    border: 1px solid rgba(42, 157, 24, 0.3);
    color: #4cd137;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 8px;
}

.calc-action-btn {
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

/* ==========================================
   VALUE PROPOSITION (Outcalls Edge)
   ========================================== */
.edge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.edge-card {
    padding: 40px;
}

.edge-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.edge-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ==========================================
   ABOUT VITOR (Bio)
   ========================================== */
.bio-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.bio-image {
    position: relative;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-gold);
    background-color: var(--bg-charcoal);
    border-radius: 8px;
}

.bio-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: grayscale(10%);
    transition: var(--transition-smooth);
}

.bio-logo-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 90px;
    height: 90px;
    background: rgba(11, 12, 16, 0.9);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    z-index: 5;
    transition: var(--transition-smooth);
}

.bio-logo-badge img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-image:hover .bio-logo-badge {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--gold-light);
}

/* ==========================================
   GIFT CARDS SECTION
   ========================================== */
.gift-card-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
}

.gift-card-design {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1.6 / 1;
    margin: 0 auto;
    background: linear-gradient(135deg, #1A1D20 0%, #0B0C10 100%);
    border: 3px double var(--gold-primary);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 15px rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.gift-card-design:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.gift-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.gift-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    padding: 6px;
    background: rgba(11, 12, 16, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 8px;
}

.gift-card-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.gift-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gift-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.gift-card-brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.gift-card-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.gift-card-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .gift-card-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }
}

.bio-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.bio-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
}

/* ==========================================
   INTAKE BOOKING FORM
   ========================================== */
.booking-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: stretch;
}

.booking-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.booking-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    font-weight: 300;
}

.booking-steps {
    list-style: none;
}

.booking-steps li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-card {
    padding: 48px;
}

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

.form-full {
    grid-column: span 2;
}

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

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    background: rgba(11, 12, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 14px 16px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

select.form-control option {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
}

.form-btn {
    width: 100%;
    margin-top: 12px;
}

/* Modal Popup Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(11, 12, 16, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-gold);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(42, 157, 24, 0.1);
    border: 1px solid rgba(42, 157, 24, 0.3);
    color: #4cd137;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.modal h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-textarea {
    width: 100%;
    height: 120px;
    background: rgba(11, 12, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-size: 0.9rem;
    resize: none;
    margin-bottom: 24px;
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    padding: 64px 0 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-obsidian);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    color: var(--gold-primary);
}

.footer-rights {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .edge-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .logo-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile menu toggled via Javascript class */
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        height: calc(100vh - 120px);
        background: var(--bg-obsidian);
        flex-direction: column;
        padding: 48px 24px;
        gap: 24px;
        border-top: 1px solid rgba(212, 175, 55, 0.08);
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-full {
        grid-column: span 1;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-right {
        align-items: center;
    }
}
