/* 
 * Muhammad Ahmad - Portfolio Design System
 * Theme: Premium Corporate & Creative Agency
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #0A0D14;
    --bg-card: rgba(18, 24, 38, 0.6);
    --bg-card-hover: rgba(26, 34, 54, 0.85);

    --accent-gold: #C5A880;
    /* Subtle champagne gold */
    --accent-gold-glow: rgba(197, 168, 128, 0.15);
    --accent-gold-bright: #E2D4C0;

    --accent-blue: #3E8BFF;
    --accent-blue-glow: rgba(62, 139, 255, 0.1);

    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-hover: rgba(197, 168, 128, 0.25);

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #4B5563;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glow-gold: 0 0 25px rgba(197, 168, 128, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Soft Glows (Clean Elegant Spheres) */
.bg-glow-1 {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
    z-index: -9;
    pointer-events: none;
    filter: blur(120px);
}

.bg-glow-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(62, 139, 255, 0.04) 0%, transparent 70%);
    z-index: -9;
    pointer-events: none;
    filter: blur(120px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

/* Typography & Links */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 700;
}

h3 {
    letter-spacing: 0.1em;
}

.serif-title {
    font-family: var(--font-serif);
    font-weight: 600;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 13, 20, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: 80vw;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.logo-img {
    height: 72px;
    width: 72px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo span {
    color: var(--accent-gold);
}

nav {
    margin-left: auto;
    margin-right: 4rem;
}

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

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

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

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

.btn-contact {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
}

.btn-contact:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: var(--glow-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-btn.linkedin-btn {
    color: #0077B5;
    border-color: rgba(0, 119, 181, 0.25);
}

.social-btn.linkedin-btn:hover {
    background-color: #0077B5;
    border-color: #0077B5;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.45);
}

.social-btn.whatsapp-btn {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.25);
}

.social-btn.whatsapp-btn:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.45);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 105;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

/* Main Structure */
main {
    max-width: 80vw;
    margin: 0 auto;
    padding: 6.5rem 2rem 2rem 2rem;
}

section {
    padding: 5rem 0;
    scroll-margin-top: 95px;
}

.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent-gold);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-top: 1rem;
    font-style: italic;
    font-family: var(--font-serif);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(85vh - 6.5rem);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-badge {
    align-self: flex-start;
    border-left: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.2rem 0 0.2rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    font-family: var(--font-serif);
    font-style: italic;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 900px;
    line-height: 1.7;
    text-align: justify;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.stat-num {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Portrait Image Container */
.portrait-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 0.75;
    width: 100%;
    max-width: 450px;
    height: auto;
    justify-self: center;
    /* Standard portrait ratio */
}

.portrait-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 75%, rgba(10, 13, 20, 0.9) 100%);
    pointer-events: none;
}

/* Portfolio Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.project-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    background: #06080c;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

.project-card:hover .project-card-image img {
    transform: scale(1.04);
}

.project-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--text-primary);
}

.project-link-icon {
    font-size: 1.25rem;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.project-card:hover .project-link-icon {
    transform: translate(3px, -3px);
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: justify;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Skills Layout */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--accent-gold);
    font-family: var(--font-serif);
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.skill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
}

/* Experience Timeline - 2 Column Grid */
.timeline-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.timeline-item {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.timeline-marker {
    display: none;
    /* Hide old markers since we transitioned to cards */
}

.timeline-header-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-org {
    color: var(--accent-gold);
    font-family: var(--font-serif);
    font-size: 0.95rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.timeline-role {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.timeline-body-list {
    list-style: none;
}

.timeline-body-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
}

.timeline-body-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Roles & Responsibilities Section */
.accordion-item {
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 0;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-serif);
}

.accordion-title:hover {
    color: var(--accent-gold);
}

.accordion-title span {
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

.accordion-item[open] .accordion-title span {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.accordion-content {
    margin-top: 1rem;
    padding-left: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

/* Contact Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
}

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

.contact-info-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.info-details h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-details p {
    font-size: 1.1rem;
    font-weight: 500;
}

.form-field {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.85rem 1.15rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-hint {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.error-msg {
    display: none;
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    font-weight: 500;
}

/* User interaction-based feedback */
.form-field input:user-invalid,
.form-field textarea:user-invalid {
    border-color: #EF4444;
    background-color: rgba(239, 68, 68, 0.02);
}

.form-field input:user-invalid+.error-msg,
.form-field textarea:user-invalid+.error-msg {
    display: block;
}

.form-field input:user-valid,
.form-field textarea:user-valid {
    border-color: rgba(197, 168, 128, 0.5);
}

.form-fallback-valid {
    border-color: rgba(197, 168, 128, 0.5) !important;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.form-row .form-field {
    flex: 1;
}

.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #121620 !important;
    border: 1px solid var(--border-glass) !important;
    color: var(--text-primary) !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.iti__dial-code,
.iti__country-name {
    color: var(--text-primary) !important;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: var(--glow-gold);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Form Response Notification styles */
.form-status {
    padding: 1.15rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-bright);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* Footer Section */
footer {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

/* Mobile Socials & Actions Container inside Drawer */
.nav-mobile-socials,
.nav-mobile-contact {
    display: none;
}

/* Responsive Adaptability */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 92vw;
        padding: 1.25rem 1rem;
    }

    main {
        max-width: 92vw;
        padding: 6.5rem 1rem 2rem 1rem;
    }

    nav {
        margin: 0;
        position: fixed;
        top: 0;
        right: -320px;
        width: 280px;
        max-width: 80vw;
        height: 80vh;
        background: rgba(10, 13, 20, 0.98);
        backdrop-filter: blur(24px);
        border-left: 1px solid var(--border-glass);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 4.5rem 2rem 3rem 2.5rem;
        gap: 0.1rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.85rem;
    }

    nav a {
        font-size: 1.3rem;
        width: 100%;
        display: block;
        padding: 0.15rem 0;
    }

    .nav-mobile-contact {
        display: block;
        margin-top: 0.75rem;
        width: 100%;
    }

    .nav-mobile-contact .btn-contact {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-mobile-socials {
        display: flex;
        gap: 1.25rem;
        margin-top: 0.75rem;
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 2rem;
    }

    .nav-mobile-socials .social-btn {
        display: flex;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--transition-smooth);
    }

    .nav-mobile-socials .social-btn.linkedin-btn:hover {
        background: #0077B5;
        border-color: #0077B5;
        box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
    }

    .nav-mobile-socials .social-btn.whatsapp-btn:hover {
        background: #25D366;
        border-color: #25D366;
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    }

    .nav-mobile-socials .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .menu-toggle {
        display: flex;
        z-index: 101;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-actions .btn-contact,
    .header-actions .social-btn {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .role-badge {
        align-self: center;
        border-left: none;
        border-bottom: 2px solid var(--accent-gold);
        padding: 0 0 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .portrait-container {
        max-width: 380px;
        margin: 0 auto;
    }

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

    .timeline-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {

    .header-actions .btn-contact,
    .header-actions .social-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .nav-container {
        max-width: 95vw;
        padding: 1rem 0.5rem;
    }

    main {
        max-width: 95vw;
        padding: 6rem 0.5rem 2rem 0.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 0;
        padding-bottom: 0.75rem;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 30px;
        width: 30px;
    }

    .header-actions {
        gap: 0.75rem;
    }
}