/* Variables */
:root {
    --primary: #1e3a8a; /* Deep Navy Blue */
    --primary-light: #dbeafe;
    --accent: #ea580c; /* Vibrant Orange for CTA */
    --accent-hover: #c2410c;
    --text-dark: #0f172a;
    --text-body: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.2;
}

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

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-accent {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-massive {
    padding: 18px 40px;
    font-size: 1.3rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #172554;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.btn-outline {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(234, 88, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-info i {
    color: var(--primary);
    margin-right: 6px;
}

.top-contact a {
    color: var(--text-dark);
    font-weight: 600;
}

.top-contact a:hover {
    color: var(--accent);
}

.top-contact i {
    color: var(--accent);
}

.divider {
    margin: 0 10px;
    color: var(--border);
}

/* Header */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2rem;
    color: var(--primary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
}

.desktop-nav a:hover {
    color: var(--accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-box {
    max-width: 650px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 6px 16px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero h1 {
    color: white;
    font-size: 4.5rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
}

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

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* Audience Section */
.audience-section {
    padding: 100px 0;
    background-color: white;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.split-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.audience-list i {
    font-size: 2rem;
    margin-top: 4px;
}

.audience-list h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background-color: var(--primary);
    color: white;
}

.trust-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-item i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.trust-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.trust-item p {
    color: var(--primary-light);
    font-weight: 300;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background-color: var(--text-dark);
    color: white;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #020617;
    color: #94a3b8;
    padding: 60px 0 20px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo i {
    color: var(--primary-light);
}

.footer-brand p {
    max-width: 350px;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }
    
    .split-image {
        width: 100%;
        height: 350px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }
    
    .desktop-nav, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-text-box {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2, .split-text h2, .trust-section h2, .final-cta h2 {
        font-size: 2.5rem;
    }
}
