/* ==========================================================================
   Zen Dizayn — Architecture & Interior Design Studio
   Premium Dark & Amber/Gold Aesthetic Design System
   ========================================================================== */

:root {
    --bg-main: #0a0b0e;
    --bg-surface: #111319;
    --bg-card: rgba(19, 22, 31, 0.75);
    --bg-card-hover: rgba(26, 30, 42, 0.9);
    --border-color: rgba(245, 158, 11, 0.15);
    --border-color-hover: rgba(245, 158, 11, 0.4);
    
    --primary-gold: #f59e0b;
    --primary-amber: #d97706;
    --primary-light: #fbbf24;
    --accent-emerald: #10b981;
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Ambient Glow Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.18;
}

.orb-gold {
    top: -100px;
    left: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.orb-amber {
    top: 30%;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #d97706 0%, transparent 70%);
}

.orb-dark {
    bottom: -100px;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #b45309 0%, transparent 70%);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1;
}

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

.logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 3px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
    padding: 12px 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0a0b0e;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
    transform: translateY(-1px);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
}

.mobile-drawer {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
}

.hero-badge, .page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-gold);
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Page Hero */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Section Common */
.services-section, .projects-section, .philosophy-section, .contact-section {
    padding: 80px 0;
}

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

.section-badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card.featured {
    border-color: rgba(245, 158, 11, 0.45);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(19, 22, 31, 0.8) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.service-points li {
    font-size: 13px;
    color: var(--text-dim);
    position: relative;
    padding-left: 18px;
}

.service-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.project-visual {
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.p-bodrum {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.p-levent {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
}
.p-bebek {
    background: linear-gradient(135deg, #2e1065 0%, #0f172a 100%);
}

.project-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(10, 11, 14, 0.8);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-gold);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.project-info {
    padding: 24px;
}

.project-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Philosophy */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.philosophy-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.p-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    flex-shrink: 0;
}

.p-feature h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.p-feature p {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0;
}

.philosophy-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(19, 22, 31, 0.9) 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.p-card-inner h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.p-card-inner p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* CTA Card */
.cta-banner {
    padding: 40px 0 80px;
}

.cta-card {
    background: linear-gradient(135deg, #181b24 0%, #101218 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-glow);
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-muted);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-card.primary-card {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(19, 22, 31, 0.85) 100%);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.card-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.address-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-link {
    color: #fff;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--primary-gold);
}

.sub-label {
    font-size: 12px;
    color: var(--text-dim);
}

.info-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
}

.map-wrapper iframe {
    display: block;
}

/* Contact Form */
.form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 11, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: rgba(10, 11, 14, 0.9);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}

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

/* Modern Verification Card */
.verification-card {
    background: rgba(14, 16, 22, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.verification-card:focus-within {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.vc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    margin: 0;
    cursor: pointer;
}

.vc-title svg {
    color: var(--primary-gold);
}

.vc-hint {
    font-size: 12px;
    color: var(--text-dim);
}

.vc-body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vc-img-container {
    display: flex;
    align-items: center;
    background: #0d0f15;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-sm);
    padding: 4px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.vc-image {
    height: 44px;
    width: 140px;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.vc-refresh-btn {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--primary-gold);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    transition: var(--transition);
}

.vc-refresh-btn:hover {
    background: rgba(245, 158, 11, 0.25);
    transform: rotate(90deg);
}

.vc-input-container {
    flex: 1;
}

.vc-input {
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 4px;
    text-align: center;
    color: #fff;
    padding: 10px 14px;
    background: rgba(10, 11, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.vc-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: #0a0b0e;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Alerts */
.alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #6ee7b7;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

.alert strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
}

/* Footer */
.footer {
    margin-top: auto;
    background: #08090b;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    padding: 60px 0 24px;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-contact-item svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    font-size: 12px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-drawer.open {
        display: block;
        background: #0d0f14;
        border-bottom: 1px solid var(--border-color);
        padding: 20px 24px;
    }
    .drawer-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .drawer-link {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-muted);
    }
    .drawer-link.active {
        color: var(--primary-gold);
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid, .contact-grid, .philosophy-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
    .form-row, .info-dual-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
