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

/* Design Tokens & CSS Custom Properties */
:root {
    /* Harmonious Color Palette */
    --bg-primary: #080b11;
    --bg-secondary: #0f131a;
    --bg-card: rgba(15, 22, 36, 0.45);
    --bg-card-hover: rgba(20, 30, 50, 0.6);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-color-hover: rgba(99, 102, 241, 0.35);
    
    /* Brand Colors */
    --primary: #6366f1;       /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.15);
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    
    --secondary: #14b8a6;     /* Teal */
    --secondary-glow: rgba(20, 184, 166, 0.15);
    
    --accent: #a855f7;        /* Purple */
    --accent-glow: rgba(168, 85, 247, 0.15);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-accent: linear-gradient(135deg, var(--secondary), var(--primary));
    --gradient-dark: radial-gradient(circle at 50% 50%, #0f172a 0%, #080b11 100%);
    --gradient-text: linear-gradient(to right, #ffffff, #cbd5e1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animation Timings */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows & Glows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.5);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --shadow-card-glow: 0 10px 30px rgba(99, 102, 241, 0.08);
}

/* Reset & Base Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-primary);
    background-image: var(--gradient-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Glowing Ambient Blobs */
.bg-blobs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    pointer-events: none;
}

.bg-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation: float-blob 22s infinite alternate ease-in-out;
}

.bg-blob-2 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: 35%;
    right: -200px;
    animation: float-blob-reverse 26s infinite alternate ease-in-out;
}

.bg-blob-3 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    bottom: -150px;
    left: 15%;
    animation: float-blob 18s infinite alternate ease-in-out;
}

@keyframes float-blob {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.15) translate(40px, 60px); }
    100% { transform: scale(0.9) translate(-20px, 30px); }
}

@keyframes float-blob-reverse {
    0% { transform: scale(1.1) translate(0, 0); }
    50% { transform: scale(0.85) translate(-60px, -40px); }
    100% { transform: scale(1.05) translate(30px, -10px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.25;
}

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

p {
    color: var(--text-secondary);
}

/* Helper Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 0.9rem 0;
    background: rgba(8, 11, 17, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-glass);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.03em;
}

.logo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: inline-block;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.25rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.35rem 0;
}

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

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle Button */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* Glassmorphism Styles */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glass), var(--shadow-card-glow);
    transform: translateY(-4px);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.85rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-primary:hover::after {
    left: 125%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.nav-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.4); /* Glossy top edge highlight */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

.hero-content {
    animation: introFade 0.8s ease forwards;
}

.hero-badge {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.05);
}

.hero-badge svg {
    color: var(--secondary);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.75rem;
    max-width: 580px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

/* Hero Visual & Editor Mock */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: introFade 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.visual-box {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative;
    z-index: 1;
    animation: float-editor 6s ease-in-out infinite;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
    background: var(--gradient-primary);
    border-radius: 24px;
    filter: blur(60px);
    opacity: 0.15;
    z-index: -2;
}

.code-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(8, 11, 18, 0.85);
}

.code-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #f59e0b; }
.code-dot.green { background: #10b981; }

.code-body {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0 1.5rem 1.5rem 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
    line-height: 1.6;
}

.code-keyword { color: #f472b6; font-weight: 600; }
.code-property { color: #60a5fa; }
.code-string { color: #34d399; }
.code-value { color: #fbbf24; }
.code-comment { color: var(--text-muted); font-style: italic; }

@keyframes introFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float-editor {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Sections Global Styling */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5.5rem auto;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.85rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.65;
}

/* Services / Pricing Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-slow);
}

.service-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.65rem;
    margin-bottom: 2.25rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.45);
    transform: scale(1.08) rotate(2deg);
}

.service-title {
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 1px;
}

/* Skills/About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5.5rem;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-visual .glass-card {
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    position: relative;
}

.about-visual .glass-card::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--gradient-primary);
    filter: blur(50px);
    opacity: 0.1;
    top: 10%;
    left: 10%;
    z-index: -1;
}

.about-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 1.75rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.about-content h3 {
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.about-text p {
    margin-bottom: 1.25rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.55rem 1.35rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 550;
    transition: var(--transition-normal);
}

.skill-tag:hover {
    border-color: var(--primary-light);
    background: rgba(99, 102, 241, 0.08);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

/* Contact Section & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
    transform: translateY(-2px);
}

.contact-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.contact-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 1.75rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(10, 15, 26, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.95rem 1.35rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(4px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.18);
}

/* Footer UI */
footer {
    border-top: 1px solid var(--border-color);
    background-color: #05070c;
    padding: 5.5rem 0 3.5rem 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 4.5rem;
    margin-bottom: 4.5rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-policies {
    display: flex;
    gap: 1.75rem;
}

.footer-policies a:hover {
    color: var(--text-secondary);
}

/* Compliance/Policy Content Layout */
.policy-page {
    padding-top: 150px;
    padding-bottom: 9rem;
}

.policy-card {
    padding: 4.5rem;
    border-radius: 24px;
}

.policy-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.75rem;
    margin-bottom: 3.5rem;
}

.policy-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.65rem;
    font-weight: 500;
}

.policy-content h2 {
    font-size: 1.85rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.policy-content ul, 
.policy-content ol {
    margin-bottom: 2rem;
    padding-left: 2.25rem;
    color: var(--text-secondary);
}

.policy-content li {
    margin-bottom: 0.75rem;
}

.policy-content strong {
    color: #ffffff;
}

/* Compliance Tables Styling */
.compliance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.compliance-table th, 
.compliance-table td {
    padding: 1.15rem 1.4rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.compliance-table th {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.compliance-table td {
    color: var(--text-secondary);
}

.compliance-table tr:last-child td {
    border-bottom: none;
}

.compliance-table tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    /* Responsive Mobile Menu Drawer Overlay */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(8, 11, 17, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.75rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-glass);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    /* Toggle burger line triggers when menu is visible */
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .policy-card {
        padding: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.75rem;
        text-align: center;
    }
}
