/* custom.css - BizIT Solutions Premium Design System */

:root {
    --bg-dark-primary: #0D0F17; /* WhatsApp image dark background */
    --bg-dark-secondary: #0B1A3C; /* WhatsApp image secondary navy */
    --color-primary: #1A2B6B; /* WhatsApp image primary accent blue */
    --color-accent: #7CFF00; /* WhatsApp image neon green */
    --color-accent-hover: #95FF33; /* Neon green hover */
    --color-text: #E6E8EE; /* WhatsApp image text off-white */
    --color-text-muted: #9fa4bc;
    --font-satoshi: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(11, 26, 59, 0.65);
    --glass-border: rgba(230, 232, 238, 0.08);
}

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

body {
    background-color: var(--bg-dark-primary);
    color: var(--color-text);
    font-family: var(--font-satoshi);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

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

/* Premium Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 15, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: var(--bg-dark-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
    height: 70px;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover, nav a.active {
    color: var(--color-text);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.btn-contact-header {
    background-color: var(--color-accent);
    border: none;
    color: var(--bg-dark-primary) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 0 15px rgba(124, 255, 0, 0.2);
}

.btn-contact-header:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 0 20px rgba(124, 255, 0, 0.4);
}

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

/* Hero Section */
.hero-sec {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    background-color: #101218;
    /* [CHANGE 2026-07-08] what: set linear mask and right align · why: prevent text overlap and clipping · verify: visual check */
    background-image: 
        linear-gradient(to right, #101218 35%, rgba(16, 18, 24, 0.2) 65%, rgba(16, 18, 24, 0) 100%),
        url('../images/bizit-banner.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Floating background glow blobs (Alesa.my style) */
.hero-sec::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 194, 66, 0.09) 0%, rgba(39, 47, 105, 0.18) 40%, rgba(16, 18, 24, 0) 70%);
    filter: blur(100px);
    z-index: 0;
    animation: driftGlow1 28s alternate infinite ease-in-out;
    pointer-events: none;
}

.hero-sec::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 47, 105, 0.28) 0%, rgba(128, 194, 66, 0.05) 45%, rgba(16, 18, 24, 0) 70%);
    filter: blur(100px);
    z-index: 0;
    animation: driftGlow2 22s alternate infinite ease-in-out;
    pointer-events: none;
}

@keyframes driftGlow1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-4%, 6%) scale(1.08);
    }
    100% {
        transform: translate(-8%, 3%) scale(1.02);
    }
}

@keyframes driftGlow2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(6%, -4%) scale(1.12);
    }
    100% {
        transform: translate(3%, -8%) scale(1.05);
    }
}

/* Ensure container elements stay above backgrounds */
.hero-sec .container {
    position: relative;
    z-index: 1;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(128, 194, 66, 0.1);
    border: 1px solid rgba(128, 194, 66, 0.2);
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-title span {
    color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--bg-dark-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(124, 255, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(124, 255, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: rgba(230, 232, 238, 0.05);
    border-color: rgba(124, 255, 0, 0.3);
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(13, 15, 23, 0.65);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(124, 255, 0, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(124, 255, 0, 0.05);
}

/* Laptop Mockup Styling */
.laptop-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    perspective: 1000px;
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background: #1e1e1e;
    border: 12px solid #2d2d2d;
    border-radius: 12px 12px 0 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    background-color: #0d0f17;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 232, 238, 0.05);
}

.laptop-keyboard {
    width: 112%;
    height: 12px;
    background: #4a4a4a;
    margin-left: -6%;
    border-radius: 0 0 8px 8px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.laptop-keyboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2d2d2d;
    border-radius: 0 0 4px 4px;
}

/* Features Grid */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Info Section (Mission / Vision) */
.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* ISO Phase timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(231, 232, 238, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 0;
}

.timeline-dot {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--bg-dark-primary);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(128, 194, 66, 0.5);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background: var(--color-accent);
    transform: translate(-50%, -50%) scale(1.2);
}

.timeline-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    margin-right: auto;
    margin-left: 40px;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: 40px;
    margin-left: auto;
    text-align: right;
}

.phase-number {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.phase-list {
    list-style: none;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.phase-list li {
    margin-bottom: 0.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

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

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

.info-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    background: rgba(128, 194, 66, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    background: rgba(16, 18, 24, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    padding: 0.85rem 1rem;
    border-radius: 6px;
    font-family: var(--font-satoshi);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(128, 194, 66, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* MD Profile */
.md-profile-sec {
    background: linear-gradient(180deg, var(--bg-dark-primary) 0%, var(--bg-dark-secondary) 100%);
}

.md-profile-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.md-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-text);
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.badge-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(231, 232, 238, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0.25rem;
}

/* Profile Grid in About Us */
.profile-card {
    padding: 3rem; 
    border-left: 5px solid var(--color-accent);
}
.profile-grid {
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 3rem; 
    align-items: start;
}
.specialisation-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
    margin-bottom: 2rem; 
    color: var(--color-text-muted); 
    font-size: 0.95rem;
}

/* Generic 2-column list grid */
.list-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Footer */
footer {
    background-color: #080d1a;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    max-width: 320px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

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

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(231, 232, 238, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.8s ease-out forwards;
}

/* =============================================
   HAMBURGER BUTTON (mobile only, hidden on desktop)
   ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 1;
}

.mobile-nav-panel {
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #0b1020;
    border-left: 1px solid var(--glass-border);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-close {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.mobile-nav-close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 0;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--color-accent);
    padding-left: 8px;
}

.mobile-nav-cta {
    margin-top: 2rem;
    text-align: center;
    justify-content: center;
    width: 100%;
}

/* =============================================
   RESPONSIVE RULES — Tablet (≤968px)
   ============================================= */
/* [CHANGE 2026-07-08] what: full mobile responsive overhaul · why: mobile nav, hero, grids, footer broken on small screens · verify: devtools mobile emulator */
@media (max-width: 968px) {

    /* Hamburger visible, desktop nav/CTA hidden */
    .hamburger {
        display: flex;
    }

    nav#main-nav {
        display: none;
    }

    .desktop-cta {
        display: none;
    }

    /* Layout grids → single column */
    .hero-grid,
    .info-split,
    .md-profile-grid,
    .contact-grid,
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sec {
        background-image:
            linear-gradient(to bottom, rgba(16,18,24,0.85) 0%, rgba(16,18,24,0.6) 60%, rgba(16,18,24,0.9) 100%),
            url('../images/bizit-banner.png');
        background-position: center center;
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 5rem;
    }

    /* Section padding */
    section {
        padding: 5rem 0 4rem 0;
    }

    /* Grid cards */
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Timeline → left-aligned */
    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-item {
        justify-content: flex-start;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }

    .timeline-item:nth-child(odd) .timeline-card {
        margin-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .timeline-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* MD Profile grid order */
    .md-right {
        order: -1;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   RESPONSIVE RULES — Mobile (≤480px)
   ============================================= */
@media (max-width: 480px) {

    .container {
        padding: 0 1.25rem;
    }

    /* Nav height */
    .nav-wrapper {
        height: 65px;
    }

    .logo img {
        height: 36px;
    }

    /* Hero */
    .hero-sec {
        padding-top: 100px;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }

    /* Section */
    section {
        padding: 4rem 0 3rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    /* Cards */
    .glass-card {
        padding: 1.75rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .specialisation-grid,
    .list-grid-2 {
        grid-template-columns: 1fr;
    }

    /* Footer */
    footer {
        padding: 3.5rem 0 1.5rem 0;
    }

    .footer-about p {
        max-width: 100%;
    }

    /* Timeline */
    .timeline::before {
        left: 16px;
    }

    .timeline-dot {
        left: 16px;
    }

    .timeline-item {
        padding-left: 40px;
        margin-bottom: 2rem;
    }

    .timeline-card {
        padding: 1.25rem;
    }

    /* Contact info */
    .info-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* MD Quote */
    .md-quote {
        font-size: 1.1rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 26, 60, 0.95);
    border-top: 1px solid var(--color-accent);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}
.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #a0aec0;
}
.cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}
.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
}
.privacy-content h2 {
    color: var(--color-accent);
    margin-top: 30px;
}
.privacy-content p, .privacy-content ul {
    color: #a0aec0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-banner p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .cookie-banner .btn-sm {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}
