/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1e;
    --black-elevated: #222228;
    --gold: #d4a843;
    --gold-light: #e8c96a;
    --gold-pale: rgba(212, 168, 67, 0.1);
    --magenta: #a83279;
    --magenta-light: #c94a95;
    --purple: #6b2fa0;
    --purple-light: #8a4cc0;
    --gradient-brand: linear-gradient(135deg, var(--gold) 0%, var(--magenta) 50%, var(--purple) 100%);
    --gradient-brand-h: linear-gradient(90deg, var(--gold) 0%, var(--magenta) 50%, var(--purple) 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(212,168,67,0.15) 0%, rgba(168,50,121,0.15) 50%, rgba(107,47,160,0.15) 100%);
    --text: #e8e4e0;
    --text-muted: #9a9498;
    --text-dim: #6a6468;
    --white: #ffffff;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    --shadow: 0 4px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 40px rgba(168,50,121,0.15);
    --radius: 14px;
    --transition: 0.35s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
    line-height: 1.25;
    color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-gradient {
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(168, 50, 121, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35);
}

/* ===== SECTION UTILITIES ===== */
.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ===== GRADIENT DIVIDER ===== */
.gradient-line {
    height: 2px;
    background: var(--gradient-brand-h);
    border: none;
    opacity: 0.5;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition);
}

.logo:hover { opacity: 0.85; }

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--black);
}

/* Animated gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(107,47,160,0.18) 0%, transparent 65%);
    border-radius: 50%;
    animation: orbFloat 10s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: orbFloat 10s ease-in-out 5s infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 500px;
    margin: 0 auto 16px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(168,50,121,0.25));
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero h1 {
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.18rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero grid pattern overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

/* Hero bottom gradient fade */
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black), transparent);
    z-index: 2;
}

/* Gradient border bottom */
.hero-gradient-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand-h);
    z-index: 3;
}

/* Animated floating particles */
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
}

.hero-particle:nth-child(1) {
    background: var(--gold);
    top: 20%; left: 15%;
    animation: particleDrift 8s ease-in-out infinite;
}
.hero-particle:nth-child(2) {
    background: var(--magenta);
    top: 35%; right: 20%;
    animation: particleDrift 8s ease-in-out 2s infinite;
}
.hero-particle:nth-child(3) {
    background: var(--purple);
    bottom: 30%; left: 25%;
    animation: particleDrift 8s ease-in-out 4s infinite;
}
.hero-particle:nth-child(4) {
    background: var(--gold);
    top: 60%; right: 12%;
    animation: particleDrift 8s ease-in-out 1s infinite;
}
.hero-particle:nth-child(5) {
    background: var(--magenta);
    bottom: 25%; right: 35%;
    animation: particleDrift 8s ease-in-out 3s infinite;
}
.hero-particle:nth-child(6) {
    background: var(--purple-light);
    top: 15%; right: 40%;
    animation: particleDrift 8s ease-in-out 6s infinite;
}

@keyframes particleDrift {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(15px, -20px); opacity: 0.6; }
    50% { transform: translate(-10px, -35px); opacity: 0.4; }
    75% { transform: translate(20px, -15px); opacity: 0.5; }
}

/* ===== TAB CONTENT PAGES ===== */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* ===== PAGE HERO (shared for tab pages) ===== */
.page-hero {
    padding: 130px 0 70px;
    text-align: center;
    background: var(--black-light);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 30% 20%, rgba(212,168,67,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 70% 80%, rgba(107,47,160,0.06) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .section-subtitle {
    margin: 0 auto;
    max-width: 650px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 90px 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-image: var(--gradient-brand) 1;
    border-radius: var(--radius);
    opacity: 0.5;
    pointer-events: none;
}

/* Gradient overlay on image */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.value-card {
    background: var(--black-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-brand);
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow);
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* Mission banner */
.mission-banner {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--black-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mission-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-brand-soft);
}

.mission-banner .container {
    position: relative;
    z-index: 2;
}

.mission-banner h2 {
    margin-bottom: 16px;
}

.mission-banner p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ===== PROCESS PAGE ===== */
.process-timeline {
    padding: 90px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-brand);
    transform: translateX(-50%);
    opacity: 0.4;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 0 0 6px var(--black), 0 0 20px rgba(168,50,121,0.3);
}

.timeline-card {
    width: calc(50% - 60px);
    background: var(--black-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-light);
}

.timeline-card h3 {
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.8;
}

/* Services */
.services-section {
    padding: 90px 0;
    background: var(--black-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-section .section-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    background: var(--black-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand-h);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-ring {
    width: 60px;
    height: 60px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.75;
}

/* FAQ */
.faq-section {
    padding: 90px 0;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-header .section-subtitle {
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-card);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    font-size: 1.02rem;
    gap: 16px;
}

.faq-question .faq-toggle {
    font-size: 1.4rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition);
    min-width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active {
    border-color: rgba(168,50,121,0.3);
    box-shadow: var(--shadow-glow);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 90px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--black-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand-h);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}

.contact-detail div h4 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    color: var(--text-muted);
}

.contact-detail div p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--black-card);
    border-radius: var(--radius);
    padding: 44px;
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--black-elevated);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--magenta);
    box-shadow: 0 0 0 3px rgba(168,50,121,0.15);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239a9498' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--black-card);
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-light);
    color: var(--text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-dim);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper img { height: 360px; }

    .timeline::before { left: 30px; }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 80px;
    }

    .timeline-dot { left: 30px; }
    .timeline-card { width: 100%; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--white) !important;
        padding: 14px 34px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .section { padding: 70px 0; }
    .page-hero { padding: 100px 0 60px; }

    .hero-logo { max-width: 320px; }

    .about-values { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}