/* =========================================
   MODERN THEME VARIABLES (Deep Slate & Electric Cyan)
   ========================================= */
:root {
    --primary: #06b6d4;        /* Electric Cyan */
    --primary-dark: #0891b2;   /* Deep Cyan */
    --primary-light: #cffafe;  /* Light Cyan BG */
    --accent: #f59e0b;         /* Warm Amber/Gold */
    --bg-body: #f8fafc;        /* Slate 50 */
    --bg-card: #ffffff;        /* Pure White */
    --bg-dark: #0f172a;        /* Slate 900 */
    --text-main: #0f172a;      /* Slate 900 */
    --text-muted: #475569;     /* Slate 600 */
    --border: #e2e8f0;         /* Slate 200 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-muted);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
.text-link { font-weight: 600; border-bottom: 2px solid var(--primary-light); }
.text-link:hover { border-bottom-color: var(--primary); color: var(--primary-dark); }

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3 { color: var(--text-main); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); letter-spacing: -0.01em; margin-bottom: 0.5rem; }
h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-main); }
p { margin-bottom: 1.25rem; font-size: 1.05rem; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: var(--radius); font-weight: 600;
    cursor: pointer; transition: var(--transition); text-decoration: none !important;
    font-size: 1rem; border: 2px solid transparent; gap: 8px;
}
.btn-primary { 
    background-color: var(--primary); color: #fff; border-color: var(--primary); 
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}
.btn-primary:hover { 
    background-color: var(--primary-dark); border-color: var(--primary-dark); 
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4); 
}
.btn-secondary { background-color: transparent; color: var(--bg-dark); border-color: var(--border); }
.btn-secondary:hover { background-color: var(--bg-dark); color: #fff; border-color: var(--bg-dark); transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 76px; }
.logo { 
    font-size: 1.35rem; font-weight: 800; color: var(--text-main); 
    display: flex; align-items: center; gap: 10px; text-decoration: none !important;
}
.logo:hover { color: var(--text-main); }

.nav-menu ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.nav-menu a:hover { color: var(--primary); }
.nav-cta {
    background-color: var(--bg-dark); color: #fff !important;
    padding: 10px 24px; border-radius: var(--radius);
}
.nav-cta:hover { background-color: var(--primary); transform: translateY(-1px); }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-toggle span { width: 24px; height: 2.5px; background-color: var(--text-main); transition: var(--transition); border-radius: 2px; }

/* =========================================
   HERO SECTION (Unique Gradient & Glow)
   ========================================= */
.hero {
    background: var(--bg-dark);
    color: #fff; padding: 7rem 0 6rem; text-align: center; position: relative; overflow: hidden;
}
.hero-glow {
    position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    pointer-events: none; filter: blur(40px);
}
.hero-glow::before {
    content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.hero-badge {
    display: inline-block; background: rgba(6, 182, 212, 0.15); color: var(--primary);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
    margin-bottom: 1.5rem; border: 1px solid rgba(6, 182, 212, 0.3); text-transform: uppercase; letter-spacing: 0.05em;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; color: #94a3b8; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-link { color: var(--primary); font-weight: 600; border-bottom: 1px dashed var(--primary); }
.hero-link:hover { color: #fff; border-bottom-style: solid; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================
   MAIN CONTENT & SECTIONS
   ========================================= */
.main-content { padding: 4rem 20px; }
.content-section {
    background-color: var(--bg-card); padding: 3.5rem; margin-bottom: 2.5rem;
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.content-section:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }

.section-header { margin-bottom: 2.5rem; }
.header-line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin-top: 0.75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 700px; }

.highlight-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f9ff 100%); 
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0;
}
.highlight-box p { margin-bottom: 0; color: var(--bg-dark); font-weight: 600; font-size: 1.1rem; }

/* =========================================
   CARD GRIDS (Services)
   ========================================= */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem;
}
.service-card {
    background: var(--bg-body); padding: 2rem; border-radius: var(--radius);
    border: 1px solid var(--border); position: relative; overflow: hidden;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 0; color: var(--text-muted); }

/* =========================================
   TIMELINE (Process)
   ========================================= */
.process-timeline { margin-top: 2.5rem; position: relative; padding-left: 20px; }
.process-timeline::before {
    content: ''; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item { position: relative; padding-left: 50px; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker {
    position: absolute; left: 0; top: 0; width: 40px; height: 40px;
    background: var(--bg-dark); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; border: 3px solid var(--bg-card);
    box-shadow: var(--shadow-md); z-index: 2;
}
.timeline-content h3 { margin-bottom: 0.5rem; color: var(--primary-dark); }
.timeline-content p { margin-bottom: 0; }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-container { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none;
    font-size: 1.05rem; font-weight: 700; color: var(--text-main); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition); font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.5rem; font-weight: 300; color: var(--primary); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer p { padding-bottom: 1.5rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-item.active .faq-answer { max-height: 300px; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    background: var(--bg-dark); color: #fff; padding: 6rem 0; text-align: center;
    position: relative; overflow: hidden;
}
.contact-section::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.contact-wrapper { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.contact-section h2 { color: #fff; }
.contact-section > .container > .contact-wrapper > p { color: #94a3b8; font-size: 1.15rem; margin-bottom: 3.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3.5rem;
}
.contact-card {
    background: rgba(255,255,255,0.03); padding: 2.5rem 2rem; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    transition: var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.contact-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-card h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card p, .contact-card a { color: #e2e8f0; font-size: 1.1rem; margin-bottom: 0; font-weight: 500; }
.contact-card a:hover { color: var(--primary); }
.contact-cta-wrapper { margin-top: 1rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background-color: #020617; color: #64748b; text-align: center; padding: 3rem 0; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer p { margin-bottom: 0.5rem; }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        position: absolute; top: 76px; left: 0; width: 100%; background: var(--bg-card);
        border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
        max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
    }
    .nav-menu.active { max-height: 400px; }
    .nav-menu ul { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
    
    .content-section { padding: 2rem 1.5rem; }
    .hero { padding: 5rem 0 4rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .process-timeline { padding-left: 10px; }
    .timeline-item { padding-left: 40px; }
    .timeline-marker { width: 32px; height: 32px; font-size: 0.9rem; left: 0; }
    .process-timeline::before { left: 15px; }
}