/**
 * Main Stylesheet
 * Zahrani Abadi Wisata - Landing Page
 */

:root {
    --brand-red: #E31E24;
    --brand-navy: #1E2B7A;
    --gold-accent: #C5A059;
    --text-main: #1A1D23;
    --text-light: #64748B;
    --bg-body: #FDFDFD;
    --white: #FFFFFF;
    --border-soft: #F1F5F9;
    --shadow-premium: 0 20px 50px rgba(30, 43, 122, 0.08);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --green-success: #10B981;
    --orange-warning: #F59E0B;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg-body); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

.container { 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0 5%; 
}

.badge { 
    display: inline-block; 
    padding: 8px 18px; 
    background: rgba(30, 43, 122, 0.08); 
    color: var(--brand-navy); 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1.2px; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    border: 1px solid rgba(30, 43, 122, 0.15); 
}

.badge-gold { 
    background: rgba(197, 160, 89, 0.1); 
    color: var(--gold-accent); 
    border-color: var(--gold-accent); 
}

.badge-red { 
    background: rgba(227, 30, 36, 0.1); 
    color: var(--brand-red); 
    border-color: var(--brand-red); 
}

.badge-green { 
    background: rgba(16, 185, 129, 0.1); 
    color: var(--green-success); 
    border-color: var(--green-success); 
}

/* --- PROMO BAR --- */
.promo-bar {
    background: linear-gradient(135deg, var(--brand-red) 0%, #C41E3A 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.promo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-bar i { 
    margin-right: 8px; 
    animation: pulse 2s infinite; 
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- NAVIGATION --- */
nav { 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(20px); 
    padding: 18px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

nav .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-nav { 
    height: 48px; 
    transition: var(--transition); 
}

.logo-nav:hover { 
    transform: scale(1.05); 
}

.nav-links { 
    display: flex; 
    gap: 35px; 
    align-items: center; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-size: 14px; 
    font-weight: 600; 
    transition: var(--transition); 
    position: relative;
}

.nav-links a:hover { 
    color: var(--brand-red); 
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-red);
    transition: width 0.3s;
}

.nav-links a:hover::after { 
    width: 100%; 
}

.btn-reserve { 
    background: linear-gradient(135deg, var(--brand-red) 0%, #C41E3A 100%);
    color: white !important; 
    padding: 12px 28px; 
    border-radius: 12px; 
    font-size: 14px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-reserve:hover::before { 
    left: 100%; 
}

.btn-reserve:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.4);
}

.btn-reserve::after { 
    display: none; 
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--brand-navy);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero { 
    padding: 60px 0 80px; 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    min-height: 80vh; 
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 43, 122, 0.02) 0%, transparent 100%);
    z-index: -1;
    border-radius: 0 0 0 200px;
}

.hero-text { 
    flex: 1.2; 
}

.hero-text h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: 4.2rem; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    color: var(--brand-navy);
    letter-spacing: -1px;
}

.hero-text h1 .highlight { 
    color: var(--brand-red); 
    font-style: italic; 
    position: relative;
    display: inline-block;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(227, 30, 36, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.hero-text .subheadline { 
    font-size: 19px; 
    color: var(--text-light); 
    max-width: 580px; 
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-text .subheadline strong {
    color: var(--brand-navy);
    font-weight: 700;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red) 0%, #C41E3A 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--brand-navy);
    padding: 16px 35px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--brand-navy);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--brand-navy);
    color: white;
    transform: translateY(-3px);
}

.trust-bar { 
    display: flex; 
    gap: 50px; 
    padding-top: 35px; 
    border-top: 2px solid var(--border-soft);
    margin-top: 10px;
}

.trust-item { 
    position: relative; 
}

.trust-item h3 { 
    font-size: 2.8rem; 
    color: var(--brand-red); 
    font-weight: 800; 
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.trust-item p { 
    font-size: 11px; 
    color: var(--text-light); 
    text-transform: uppercase; 
    letter-spacing: 1.2px; 
    font-weight: 700; 
}

.trust-item i {
    position: absolute;
    top: -5px;
    right: -15px;
    color: var(--gold-accent);
    font-size: 20px;
}

.hero-img-box { 
    flex: 0.8; 
    height: 500px; 
    position: relative;
}

.hero-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 40px 15px; 
    box-shadow: var(--shadow-premium);
}

.hero-img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-img-badge h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-img-badge p {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-red);
}

/* --- INFINITE SLIDER --- */
.slider-section { 
    background: white; 
    padding: 50px 0; 
    border-top: 1px solid var(--border-soft); 
    border-bottom: 1px solid var(--border-soft); 
    overflow: hidden; 
}

.slider-title { 
    text-align: center; 
    font-size: 12px; 
    font-weight: 800; 
    color: var(--text-light); 
    letter-spacing: 2.5px; 
    text-transform: uppercase; 
    margin-bottom: 35px; 
}

.logo-track { 
    display: flex; 
    width: calc(250px * 14); 
    animation: scrollRight 40s linear infinite; 
}

.logo-item { 
    width: 250px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 40px; 
}

.logo-item img { 
    max-width: 160px; 
    max-height: 50px; 
    filter: grayscale(1); 
    opacity: 0.4; 
    transition: 0.4s; 
}

.logo-item img:hover { 
    filter: grayscale(0); 
    opacity: 1; 
    transform: scale(1.1);
}

@keyframes scrollRight {
    0% { transform: translateX(calc(-250px * 7)); }
    100% { transform: translateX(0); }
}

/* --- VALUE PROPOSITION --- */
.value-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, white 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.5s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-accent);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(197, 160, 89, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--brand-red);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--brand-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* --- BENTO GRID & PACKAGES --- */
.section-padding { 
    padding: 100px 0; 
}

.bento-grid { 
    display: grid; 
    grid-template-columns: repeat(12, 1fr); 
    gap: 25px; 
}

.card-main { 
    grid-column: span 8; 
    background: var(--white); 
    border-radius: 35px; 
    padding: 40px; 
    border: 1px solid var(--border-soft); 
    display: flex; 
    gap: 40px; 
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.card-main:hover::before {
    opacity: 1;
}

.card-side { 
    grid-column: span 4; 
    background: var(--white); 
    border-radius: 35px; 
    border: 1px solid var(--border-soft); 
    overflow: hidden; 
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
}

.card-main:hover, .card-side:hover { 
    transform: translateY(-12px); 
    box-shadow: var(--shadow-premium); 
    border-color: var(--gold-accent); 
}

.pkg-img { 
    width: 320px; 
    height: 420px; 
    border-radius: 25px; 
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-side img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
}

.pkg-content {
    flex: 1;
}

.pkg-price { 
    font-size: 2.8rem; 
    font-weight: 800; 
    color: var(--brand-red); 
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
}

.pkg-price-old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 10px;
}

.pkg-discount {
    display: inline-block;
    background: var(--green-success);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 10px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: var(--green-success);
    margin-top: 3px;
    font-size: 16px;
}

.urgency-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 30, 36, 0.1);
    color: var(--brand-red);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
}

.urgency-tag i {
    animation: pulse 2s infinite;
}

/* --- CALCULATOR --- */
.calc-pro { 
    background: linear-gradient(135deg, var(--brand-navy) 0%, #162056 100%);
    color: white; 
    border-radius: 35px; 
    padding: 45px; 
    grid-column: span 4;
    position: relative;
    overflow: hidden;
}

.calc-pro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
}

.calc-pro > * {
    position: relative;
    z-index: 1;
}

.input-group { 
    margin-bottom: 25px; 
}

.input-group label { 
    display: block; 
    font-size: 11px; 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    opacity: 0.8; 
    font-weight: 700;
    letter-spacing: 1px;
}

.input-group select { 
    width: 100%; 
    padding: 16px; 
    border-radius: 14px; 
    border: none; 
    background: rgba(255,255,255,0.12); 
    color: white; 
    outline: none; 
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.input-group select:hover {
    background: rgba(255,255,255,0.18);
}

.input-group select option {
    background: var(--brand-navy);
    color: white;
}

.total-display { 
    background: rgba(255,255,255,0.08); 
    padding: 35px; 
    border-radius: 20px; 
    text-align: center; 
    border: 2px dashed rgba(255,255,255,0.2);
    margin: 25px 0;
}

.total-display p {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.total-display h4 { 
    font-size: 2.5rem; 
    color: var(--gold-accent); 
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.total-display small {
    font-size: 12px;
    opacity: 0.6;
}

/* --- GUARANTEE SECTION --- */
.guarantee-section {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #162056 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.guarantee-item {
    text-align: center;
}

.guarantee-item i {
    font-size: 48px;
    color: var(--gold-accent);
    margin-bottom: 20px;
    display: block;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- TESTIMONIALS SECTION --- */
.testi-section {
    padding: 100px 0;
    background: white;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testi-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    transition: var(--transition);
    position: relative;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-accent);
}

.testi-card .stars {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFA500;
}

.testi-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 25px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-red), var(--gold-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.testi-info h4 {
    font-size: 16px;
    color: var(--brand-navy);
    margin-bottom: 3px;
    font-weight: 700;
}

.testi-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, #F8FAFC 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--brand-red);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    color: var(--brand-navy);
    font-size: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--brand-red);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--brand-red);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--brand-navy);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-red), var(--gold-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 14px;
    color: var(--brand-navy);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.contact-detail a {
    color: var(--brand-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--brand-navy);
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 16px;
    color: var(--brand-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--brand-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--brand-navy);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* --- FINAL CTA --- */
.final-cta {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #162056 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: white;
    color: var(--brand-navy);
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(255,255,255,0.2);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,255,255,0.3);
    background: var(--gold-accent);
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--brand-navy);
    transform: translateY(-3px);
}
