/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-blue: #0B1B3D;      /* Deep Navy */
    --secondary-blue: #1A365D;    /* Medium Navy */
    --accent-blue: #2B4C7E;       /* Lighter Navy */
    
    --primary-gold: #D4AF37;      /* Rich Gold */
    --light-gold: #F5D76E;        /* Bright Gold */
    --dark-gold: #AA8C2C;         /* Deep Gold */
    --gradient-gold: linear-gradient(135deg, #F5D76E 0%, #D4AF37 50%, #AA8C2C 100%);
    
    --text-dark: #1E293B;
    --text-body: #475569;
    --text-light: #F8FAFC;
    
    --bg-main: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-section: #F1F5F9;
    
    /* Layout & Utilities */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(11, 27, 61, 0.05), 0 2px 4px -1px rgba(11, 27, 61, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(11, 27, 61, 0.08), 0 4px 6px -2px rgba(11, 27, 61, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(11, 27, 61, 0.1), 0 10px 10px -5px rgba(11, 27, 61, 0.04);
    --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.4);
    --shadow-blue: 0 10px 25px -5px rgba(11, 27, 61, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-blue) !important;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--primary-blue) !important;
    border-color: transparent;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.shadow-pulse {
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* ==========================================================================
   Badges
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-small {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(11, 27, 61, 0.05);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    background-color: rgba(11, 27, 61, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: rgba(212, 175, 55, 0.15);
}

.shape-2 {
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-color: rgba(43, 76, 126, 0.5);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.hero-icon {
    font-size: 6rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    transform: rotate(-5deg);
}

.circle-decoration, .circle-decoration-2 {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    animation: spin 30s linear infinite;
}

.circle-decoration {
    width: 450px;
    height: 450px;
}

.circle-decoration-2 {
    width: 550px;
    height: 550px;
    border-color: rgba(255, 255, 255, 0.1);
    animation-direction: reverse;
    animation-duration: 40s;
}

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

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.glass-card h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.glass-card p {
    font-size: 0.875rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.glass-card p.positive {
    color: #4ade80;
    font-weight: 600;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.floating-card-1 {
    top: 50px;
    left: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 50px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 100px 0;
    background-color: var(--bg-main);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-main);
    border: 1px solid rgba(11, 27, 61, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(11, 27, 61, 0.02) 0%, transparent 100%);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(11, 27, 61, 0.05);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--dark-gold);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feat-icon-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--dark-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.feature-list h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.feature-list p {
    color: var(--text-body);
}

.features-image-col {
    position: relative;
    padding-right: 2rem;
}

.feat-image-placeholder {
    background: var(--primary-blue);
    border-radius: 30px;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
}

.feat-main-icon {
    font-size: 8rem;
    color: var(--primary-gold);
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.feat-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transform: translateY(-40px) translateX(-20px);
}

.feat-badge i {
    font-size: 1.5rem;
}

/* ==========================================================================
   Banner CTA
   ========================================================================== */
.banner-cta {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.banner-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.banner-text {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    color: var(--text-light);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.banner-action {
    position: relative;
    z-index: 1;
    margin-left: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #050E20;
    color: var(--text-light);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 1.5rem 0;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--primary-blue);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info i {
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
    
    .banner-action {
        margin-left: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add a hamburger menu for real production */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .circle-decoration {
        width: 350px;
        height: 350px;
    }
    
    .circle-decoration-2 {
        width: 400px;
        height: 400px;
    }
    
    .features-image-col {
        padding-right: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 0.75rem;
    }
    
    .floating-card-1, .floating-card-2 {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 10px;
        animation: none;
    }
    
    .hero-image-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .hero-image-placeholder {
        margin-top: 2rem;
    }
}
