/* ═══════════════════════════════════════
   SOVEREIGN VAULT - PROFESSIONAL DESIGN
   Luxury vault company aesthetic
═══════════════════════════════════════ */

:root {
    --primary-gold: #C9A961;
    --gold-light: #E5D5A8;
    --gold-dark: #A68B4A;
    --navy-black: #0B1120;
    --navy-dark: #1A2332;
    --slate-dark: #2D3748;
    --slate-medium: #4A5568;
    --slate-light: #718096;
    --white: #FFFFFF;
    --off-white: #F7FAFC;
    --border-light: #E2E8F0;
    --success: #10b981;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--slate-dark);
    background: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */

.navbar {
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Remove the ::after underline effect from logo links */
.nav-container > a {
    text-decoration: none;
}

.nav-container > a::after {
    display: none !important;
}

/* Ensure logo link doesn't get hover effects */
.logo {
    cursor: pointer;
}

.logo:hover {
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    display: block;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(11, 17, 32, 0.9) 0%, rgba(26, 35, 50, 0.85) 100%),
        url('https://images.unsplash.com/photo-1551135049-8a33b5883817?q=80&w=2070') center/cover;
    margin-top: 76px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
}

.hero-text {
    max-width: 800px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gold-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.trust-badges {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.badge-label {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════
   ACCESS SECTION
═══════════════════════════════════════ */

.access-section {
    padding: 100px 0;
    background: var(--off-white);
}

.access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.access-info {
    padding-right: 40px;
}

.security-seal {
    margin-bottom: 2rem;
}

.access-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--navy-black);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.access-description {
    font-size: 1.1rem;
    color: var(--slate-medium);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.security-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--navy-black);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--slate-medium);
}

.certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   ACCESS FORM
═══════════════════════════════════════ */

.access-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.ssl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--navy-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-subtitle {
    color: var(--slate-medium);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-black);
    margin-bottom: 0.7rem;
    letter-spacing: 0.3px;
}

.input-container {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-container input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.input-container input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.input-container input::placeholder {
    color: var(--slate-light);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(201, 169, 97, 0.05);
    border-left: 3px solid var(--primary-gold);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--slate-medium);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   SERVICES OVERVIEW
═══════════════════════════════════════ */

.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--navy-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-medium);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-gold);
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--navy-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--slate-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

.footer {
    background: var(--navy-black);
    color: var(--gold-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col p {
    color: var(--gold-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    text-align: center;
    color: var(--slate-light);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 1024px) {
    .access-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .access-info {
        padding-right: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .trust-badges {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-content {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex !important;
        max-height: 500px;
        opacity: 1;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        padding: 1rem 20px;
        width: 100%;
        display: block;
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .badge-number {
        font-size: 2.5rem;
    }

    .access-section {
        padding: 60px 0;
    }

    .access-form-container {
        padding: 30px 20px;
    }

    .access-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}