/* CONFIGURATION SYSTEM & GLOBAL TOKENS */
:root {
    --primary: #030712;
    --primary-light: #0b1528;
    --secondary: #2563eb;
    --secondary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --accent: #60a5fa;
    --gold: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --text-dark: #111827;
    --text-light: #4b5563;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(37, 99, 235, 0.06);
    --shadow-lg: 0 20px 50px -12px rgba(37, 99, 235, 0.12);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* PREMIUM INTERACTIVE CLASSES */
.interaction-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.interaction-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md) !important;
    border-color: #93c5fd !important;
}

/* TYPOGRAPHY COMPONENTS */
h1, h2, h3, h4 {
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 32px; }

.badge {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.text-center { text-align: center; }
.text-blue { color: var(--secondary) !important; }
.text-gold { color: var(--gold) !important; }

/* RE-ENGINEERED BUTTONS WITH HIGH GLOW EFFECTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary { background: var(--secondary-gradient); color: var(--bg-white); }
.btn-glow:hover { box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4); transform: translateY(-2px); }
.btn-gold { background: var(--gold-gradient); color: var(--primary); }

/* STICKY GLASS NAVBAR OVERLAY */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(243, 244, 246, 0.6);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -0.03em; }
.logo-icon { color: var(--secondary); }

.nav-links { display: flex; gap: 36px; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--text-light); position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--secondary); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 28px; }
.nav-phone { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* HERO DESIGN BLOCK */
.contact-hero { padding: 100px 0 60px 0; position: relative; background: #ffffff; }
.hero-bg-blur-1 { position: absolute; top: -10%; right: 5%; width: 450px; height: 450px; background: rgba(96, 165, 250, 0.12); filter: blur(100px); border-radius: 50%; z-index: 0; }
.hero-bg-blur-2 { position: absolute; bottom: 0; left: -5%; width: 350px; height: 350px; background: rgba(245, 158, 11, 0.04); filter: blur(95px); border-radius: 50%; z-index: 0; }
.contact-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.contact-hero h1 span { background: linear-gradient(120deg, #1d4ed8, #3b82f6); color: transparent; -webkit-background-clip: text; background-clip: text; }
.contact-hero p { color: var(--text-light); font-size: 1.15rem; margin-top: 20px; }

/* SPLIT FORM AND INFORMATION PANEL STYLING */
.form-info-section { padding: 40px 0 120px 0; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.split-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }

.glass-card { background: rgba(255, 255, 255, 0.9); border: 1px solid rgba(226, 232, 240, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--radius); }
.contact-form-wrapper { padding: 48px; box-shadow: var(--shadow-lg); }

/* INPUT FORM ARCHITECTURE Elements */
.project-form { display: flex; flex-direction: column; gap: 24px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; color: var(--primary); }

.project-form input, .project-form select, .project-form textarea {
    width: 100%; padding: 14px 20px; font-family: var(--font-family); font-size: 0.95rem;
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; color: var(--primary);
    transition: all 0.3s ease;
}
.project-form input:focus, .project-form select:focus, .project-form textarea:focus {
    outline: none; background: #ffffff; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.project-form select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; background-size: 16px; padding-right: 48px; }
.form-submit-btn { width: fit-content; padding: 14px 40px; margin-top: 10px; border-radius: 12px; }

/* RIGHT COLUMN: INFORMATION LIST STRIPS */
.contact-info-wrapper { display: flex; flex-direction: column; gap: 16px; }

.info-strip-card {
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 20px 28px;
    display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow-sm);
}
.info-icon-box {
    width: 46px; height: 46px; background: #eff6ff; color: var(--secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.info-strip-card span { font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; color: var(--text-light); display: block; margin-bottom: 2px; }
.info-strip-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); }

/* BLUE SLA SLA COMPONENT */
.sla-blue-box {
    background: linear-gradient(135deg, #0b255e 0%, #030a1c 100%); color: white;
    padding: 32px; border-radius: 16px; margin-top: 12px; box-shadow: var(--shadow-md);
}
.sla-blue-box h4 { color: white; font-size: 1.25rem; margin-bottom: 8px; }
.sla-blue-box p { color: #94a3b8; font-size: 0.95rem; }

/* PLAYBOOK FOOTER NEWSLETTER STRIP */
.newsletter-section { padding: 60px 0; background-color: #040a18; color: white; border-bottom: 1px solid rgba(255,255,255,0.04); }
.newsletter-container { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.newsletter-left h3 { color: white; font-size: 1.5rem; margin-bottom: 8px; }
.newsletter-left p { color: #94a3b8; font-size: 0.95rem; }
.newsletter-right { width: 100%; max-width: 450px; }
.newsletter-form { display: flex; background: rgba(255,255,255,0.05); padding: 6px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 0 20px; color: white; font-family: var(--font-family); font-size: 0.95rem; }
.newsletter-form input:focus { outline: none; }

/* TECHNICAL BRAND DEEP FOOTER BLOCK */
.footer { background-color: #020617; color: #94a3b8; padding: 100px 0 0 0; font-size: 0.95rem; }
.footer-container { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 64px; margin-bottom: 80px; }
.light-logo { color: white; margin-bottom: 24px; font-size: 1.5rem; }
.footer-col-main p { margin-bottom: 24px; line-height: 1.7; font-size: 0.9rem; }

.social-icons { display: flex; gap: 12px; }
.social-icons a { width: 40px; height: 40px; background-color: rgba(255,255,255,0.03); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; border: 1px solid rgba(255,255,255,0.05); }
.social-icons a:hover { background: var(--secondary-gradient); border-color: transparent; }

.footer-col h4 { color: white; margin-bottom: 24px; font-size: 1.05rem; font-weight: 700; }
.footer-col a { display: block; margin-bottom: 12px; color: #94a3b8; font-size: 0.9rem; }
.footer-col a:hover { color: white; transform: translateX(3px); }
.footer-col p { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 32px 0; }
.footer-bottom-container { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: #64748b; }
.footer-bottom-links a { margin-left: 24px; }
.footer-bottom-links a:hover { color: white; }

/* BALANCED RESPONSE MEDIA KEY BREAKPOINTS */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    .split-container { grid-template-columns: 1fr; gap: 48px; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .newsletter-container { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .form-row-2 { grid-template-columns: 1fr; gap: 24px; }
    .contact-form-wrapper { padding: 24px; }
    .form-submit-btn { width: 100%; }
    .nav-links, .nav-actions { display: none; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; gap: 16px; text-align: center; }
    .footer-trust-badges { flex-direction: column; gap: 10px; }
}









.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

/* Dropdown */
.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    color:#333;
    transition:.3s;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
    color:#0d6efd;
    padding-left:28px;
}

.dropdown:hover .fa-chevron-down{
    transform:rotate(180deg);
    transition:.3s;
}