@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
    --primary: #002a70;
    --primary-dark: #001d4d;
    --gold-gradient: linear-gradient(90deg, #f5ecb0, #ce9e51);
    --gold: #ce9e51;
    --gold-light: #f5ecb0;
    --glass-bg: rgba(0, 42, 112, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 42, 112, 0.15);
    --glass-blur: blur(12px);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --section-padding: 80px 0;
    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Roboto", sans-serif;
    --bg-dark: #0e1f3d;
    --bg-darker: #0a1628;
    --bg-card: rgba(255, 255, 255, 0.06);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    background: var(--bg-darker);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 1.25rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(206, 158, 81, 0.4);
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 158, 81, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/image2.png") center / cover no-repeat;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 15, 40, 0) 0%,
        rgba(0, 20, 50, 0.8) 50%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-logo {
    max-width: 500px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.4));
}

.hero h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.5;
    }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(206, 158, 81, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: var(--section-padding);
}
.section-light {
    background: linear-gradient(180deg, #0e1f3d 0%, #0a1628 100%);
}
.section-dark {
    background: linear-gradient(180deg, #0a1628 0%, #071020 100%);
}

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

/* Inline Form */
.inline-form {
    background: rgba(0, 42, 112, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 40px;
}

.inline-form-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.inline-form input {
    flex: 1;
    min-width: 180px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.inline-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}
.inline-form input::placeholder {
    color: var(--text-muted);
}

.inline-form .btn-submit {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.inline-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 158, 81, 0.3);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.popup-form {
    background: linear-gradient(135deg, #0e1f3d 0%, #0a1628 100%);
    border: 1px solid rgba(206, 158, 81, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}
.popup-form p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.125rem;
}
.popup-form .form-group {
    margin-bottom: 16px;
}

.popup-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
}

.popup-form input:focus {
    outline: none;
    border-color: var(--gold);
}
.popup-form input::placeholder {
    color: var(--text-muted);
}
.popup-form .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.content-image:hover img {
    transform: scale(1.05);
}

.full-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 40px 0;
}
.full-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bullet List */
.bullet-list {
    list-style: none;
    margin-top: 20px;
}

.bullet-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

.bullet-list li::before {
    content: "\2726";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Info Grid */
.info-grid {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.info-item {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    font-weight: 600;
    color: var(--gold-light);
    min-width: 160px;
}
.info-value {
    color: var(--text-light);
}

/* Reasons - 3 columns + 2 centered */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.reasons-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 66.67%;
    margin: 0 auto;
}

.reason-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.reason-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(206, 158, 81, 0.08);
    line-height: 1;
}

.reason-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.reason-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Agent */
.agent-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.agent-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.agent-badge {
    padding: 8px 16px;
    background: rgba(206, 158, 81, 0.15);
    border: 1px solid rgba(206, 158, 81, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    color: var(--gold-light);
}

.agent-form {
    margin: 0 auto;
}
.agent-form-card {
    padding: 32px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}
.form-input::placeholder {
    color: var(--text-muted);
}

/* Phone Float */
.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(206, 158, 81, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-float:hover {
    transform: scale(1.1);
}
.phone-float svg {
    color: var(--primary-dark);
    width: 24px;
    height: 24px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease;
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .agent-images-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    body {
        font-size: 1.125rem;
    }
    .nav-links {
        display: none;
    }
    .hero h2 {
        font-size: 1.25rem;
    }
    .inline-form-inner {
        flex-direction: column;
    }
    .inline-form input {
        min-width: 100%;
    }
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    .reasons-row2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
