@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
    --primary-color: #0B192C;   /* Deep Navy Blue */
    --secondary-color: #D4AF37; /* Gold/Bronze */
    --text-main: #212529;
    --text-muted: #6C757D;
    --bg-light: #F8F9FA;
    --white: #ffffff;
    --border-color: #DEE2E6;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Modern Shadows */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);

    --radius-md: 12px;
    --radius-pill: 50px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-light);
    /* Modern dot grid background */
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 24px 24px;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

/* Ambient Background Glows */
body::before {
    content: '';
    position: fixed;
    top: -20%; left: -10%;
    width: 60vw; height: 60vh;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    bottom: -20%; right: -10%;
    width: 60vw; height: 60vh;
    background: radial-gradient(circle, rgba(29,43,72,0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Montserrat', sans-serif;
}

p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #E5C158, var(--secondary-color));
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #0B192C, #1A2238);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

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

/* Pulse Glow Animation for Main CTAs */
.pulse-btn {
    animation: pulse-glow 2.5s infinite;
}

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

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 10px 30px rgba(11, 25, 44, 0.08);
    border: 1px solid rgba(255,255,255,0.6);
    position: sticky;
    top: 20px;
    z-index: 1000;
    padding: 10px 30px;
    margin: 20px auto;
    max-width: 1200px;
    width: 95%;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.logo img { max-height: 55px; }

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.badge-placeholder {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 35px;
    margin: 0 auto;
}

.nav-links li a {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    display: inline-block;
}

.nav-links li a::after {
    display: none;
}

.nav-links li a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, var(--primary-color), #1A2238, #0B192C);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    text-align: center;
    padding: 120px 20px;
    color: var(--white);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5.5rem) !important;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    max-width: 1000px;
    margin: 0 auto 30px;
    color: var(--white);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* General Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Trust Banner */
.trust-banner {
    background: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.raised-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 60px 40px;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Asymmetric 2026 Fluid Grid */
@media (min-width: 992px) {
    .grid-3 .card:nth-child(2) { transform: translateY(20px); }
    .grid-3 .card:nth-child(2):hover { transform: translateY(15px); }
    .grid-3 .card:nth-child(3) { transform: translateY(40px); }
    .grid-3 .card:nth-child(3):hover { transform: translateY(35px); }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.image-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    position: relative;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Dynamic Spotlight Micro-animation layer */
.card::before, .contact-form::before, .contact-info::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(29, 43, 72, 0.06) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}
.card:hover::before, .contact-form:hover::before, .contact-info:hover::before { opacity: 1; }
.card > *, .contact-form > *, .contact-info > * { position: relative; z-index: 1; }

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 35px -5px rgba(0,0,0,0.1), 0 0 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.card h3 {
    color: var(--primary-color);
    background: transparent;
    padding: 0;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card.navy-header h3 {
    background: var(--primary-color);
    color: var(--white);
    margin: -30px -30px 20px -30px;
    padding: 20px;
}

.card.gold-header h3 {
    background: var(--secondary-color);
    color: var(--primary-color);
    margin: -30px -30px 20px -30px;
    padding: 20px;
}

/* Interactive Hover Panels */
.info-panel {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hover-reveal:hover .info-panel {
    opacity: 1;
    max-height: 200px;
    margin-bottom: 10px;
}

/* Services List */
.service-list {
    text-align: left;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.service-list li:before {
    content: "✓";
    color: var(--secondary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Credit Meter Animation */
.credit-meter-container {
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.meter {
    margin-bottom: 15px;
}

.meter-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.meter-bar {
    height: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 0; /* JS will animate this */
    transition: width 1.5s ease-in-out;
    border-radius: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.contact-info {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-light);
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    height: 150px;
}

.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--bg-light);
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    color: var(--text-muted);
    appearance: none;
}

.requirements-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 20px 0;
}

.contact-info h2, .contact-info h3 {
    color: var(--white);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--white);
}

/* Modern 4-Column Footer */
.footer-modern {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-color), #1A2238);
    border-radius: var(--radius-md);
    padding: 50px;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.stat-box {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.8);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 2px 4px 6px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-right .header-btn {
        display: none;
    }

    header {
        border-radius: 20px;
        padding: 10px 20px;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        width: 100%;
        background: var(--white);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
        padding: 20px 0;
        border-radius: 20px;
        text-align: center;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Make icons in contact info use the secondary color */
.contact-info i {
    color: var(--secondary-color) !important; /* Important needed to override FontAwesome inline styles */
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-line i {
    margin-top: 5px;
    flex-shrink: 0;
    width: 20px;
}

/* 2026 Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 20%, var(--secondary-color) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Autonomous Animations */
@keyframes float-anim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating-element {
    animation: float-anim 6s ease-in-out infinite;
}
