/* ==================
   1. IMPORTS & VARIABLES
   ================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Montserrat:wght@700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
/* Add '500' to the list of weights */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Inter:wght@300;400;600&display=swap');
:root {
    /* PALETTE: "Executive Sapphire" (High Contrast) */
    
    /* CHANGED: Darker Grey-Blue BG so white cards pop */
    --bg-color: #EEF2F6;        
    --bg-secondary: #FFFFFF;    /* Pure White Cards */
    
    /* Executive Sapphire Gradient (Deep Tech Blue) */
    --primary-color: #2563eb;   
    --gold-gradient: linear-gradient(135deg, #2563eb 0%, #60a5fa 50%, #1d4ed8 100%);
    
    /* Text Colors */
    --text-main: #111827;       /* Nearly Black for sharpness */
    --text-muted: #6b7280;      /* Cool Grey text */
    
    /* Borders & Glass */
    --border-color: rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.9);
    
    /* Shadows - Crisper to match the new contrast */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    
    --header-height: 80px;
    --container-width: 1200px;
}

/* ==================
   2. GLOBAL RESET
   ================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.8;
    padding-top: var(--header-height);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a { text-decoration: none; color: var(--text-main); transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

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

/* ==================
   3. HEADER & NAV
   ================== */
.main-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* Added subtle header shadow */
}

.main-header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    
    /* This sets the default for "ANDRE" to be Extra Bold */
    font-weight: 900; 
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #111;
    text-decoration: none;
    line-height: 1;
}

/* This targets just the "SAGE" part */
.logo .first-name {
    font-weight: 500; /* Medium Weight */
    /* Optional: Make it slightly lighter grey for more contrast? */
    /* color: #333; */ 
}

.main-nav ul { list-style: none; display: none; }

@media (min-width: 768px) {
    .main-nav { display: block; }
    .main-nav ul { display: flex; gap: 40px; align-items: center; }
    
    .main-nav a {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        position: relative;
        font-weight: 700; /* BOLD NAVIGATION */
    }
    
    .main-nav a:hover, .main-nav a.active { color: var(--primary-color); }
    
    .main-nav a::after {
        content: ''; position: absolute; width: 0; height: 2px; /* Thicker underline */
        bottom: -5px; left: 0; background: var(--primary-color);
        transition: width 0.3s ease;
    }
    .main-nav a:hover::after { width: 100%; }
}

/* ==================
   4. HERO SECTION
   ================== */
.hero {
    /* Subtle gradient to blend the new grey into white */
    background: linear-gradient(to bottom, #FFFFFF 0%, var(--bg-color) 100%);
    padding: 40px 0; 
    text-align: left;
    display: flex;
    align-items: center;
    min-height: 80vh; 
    position: relative;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0; 
    line-height: 1; 
    color: #111; /* Sharp Black */
}

.hero-line {
    display: block;
    width: 80px; 
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem 0; 
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem; 
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

/* BUTTONS */
.btn {
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border-radius: 6px; /* Slightly rounder */
    min-width: 160px;
}

.btn-primary { 
    background: var(--primary-color); /* Solid Blue */
    color: #fff; 
    border: 1px solid var(--primary-color); 
}
.btn-primary:hover { 
    background: #1d4ed8; /* Darker blue on hover */
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-secondary { 
    background: #fff; /* White background */
    color: var(--primary-color); 
    border: 1px solid var(--primary-color);
}
.btn-secondary:hover { 
    background: #eff6ff; /* Light blue tint */
}

/* DESKTOP HERO */
@media (min-width: 768px) {
    .hero { min-height: 90vh; }
    .hero h1 { font-size: 5.5rem; margin-bottom: 10px; }
    .hero-cta { flex-direction: row; gap: 20px; }
}

/* ==================
   5. PROJECT CARDS
   ================== */
.featured-projects, .projects-gallery {
    /* Tight spacing: 20px top, 80px bottom */
    padding: 20px 0 80px; 
    background: var(--bg-color); 
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 768px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.project-card img {
    width: 100%; 
    height: 250px; 
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover img { transform: scale(1.02); }

.project-info { padding: 30px; }
.project-info h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-main); font-family: 'Montserrat', sans-serif; font-weight: 700; }
.project-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.project-tech {
    display: block; font-size: 0.8rem; font-family: 'Inter', sans-serif; font-weight: 600;
    color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px;
}

.view-all-projects { text-align: center; margin-top: 60px; }

/* ==================
   6. ABOUT PAGE
   ================== */
.page-header {
    background: #fff;
    padding: 60px 0 20px; /* Reduced bottom padding */
    border-bottom: 1px solid var(--border-color);
    text-align: center; /* Centered Title */
}
.page-header h1 { font-size: 3.5rem; margin-bottom: 0.5rem; color: #111; font-family: 'Montserrat', sans-serif; }
.page-subtitle { font-size: 1.2rem; color: var(--text-muted); font-weight: 300; margin-top: 0; }

.about-content { padding: 20px 0 80px; } /* Tight spacing */

.about-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { 
    .about-grid { grid-template-columns: 300px 1fr; align-items: start; } 
}

.about-image { display: flex; justify-content: center; }
.about-image img {
    max-width: 280px; /* Smaller Photo */
    width: 100%; height: auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 15px 15px 0px rgba(37, 99, 235, 0.1); /* Blue Shadow */
}

.about-bio p.lead {
    font-size: 1.4rem; color: var(--text-main);
    font-family: 'Playfair Display', serif; margin-bottom: 2rem;
}
.about-bio p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.about-cta { margin-top: 2rem; display: flex; gap: 20px; }

/* ==================
   7. SKILLS
   ================== */
.skills-toolbox { 
    padding: 20px 0 80px; /* Tight top padding */
    background: #fff; 
    border-top: 1px solid var(--border-color); 
}
.skills-toolbox h2 { text-align: center; font-size: 2.5rem; margin-bottom: 60px; color: #111; font-family: 'Montserrat', sans-serif; }

.skills-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .skills-grid { grid-template-columns: repeat(3, 1fr); } }

.skill-category {
    background: #F9FAFB; /* Distinct from white */
    padding: 40px;
    border: 1px solid var(--border-color); height: 100%;
    transition: transform 0.3s ease;
    border-radius: 12px;
}
.skill-category:hover { transform: translateY(-5px); border-color: var(--primary-color); }

.skill-category h3 {
    font-size: 1.1rem; margin-bottom: 25px; padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color); color: var(--primary-color);
    font-weight: 700; text-transform: uppercase;
}
.skill-category ul { list-style: none; }
.skill-category li {
    margin-bottom: 12px; padding-left: 20px; position: relative;
    color: var(--text-muted); font-size: 0.95rem;
}
.skill-category li::before {
    content: "\2713"; color: var(--primary-color);
    position: absolute; left: 0; font-weight: 900;
}

/* ==================
   8. PROJECT DETAIL
   ================== */
.project-hero {
    padding: 100px 0; text-align: center; color: #fff;
    background-size: cover; background-position: center;
    position: relative;
    background-color: #111827; 
}
.project-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 24, 39, 0.8); z-index: 1; /* Dark blue-grey overlay */
}
.project-hero .container { position: relative; z-index: 2; }
.project-hero h1 { font-size: 3.5rem; margin-bottom: 15px; color: #fff; font-family: 'Montserrat', sans-serif; }

.project-body { padding: 80px 0; background: var(--bg-color); }
.project-grid-layout { display: grid; gap: 50px; }
@media (min-width: 768px) { .project-grid-layout { grid-template-columns: 2fr 1fr; } }

.project-main h2 { 
    margin-top: 0; font-size: 2rem; margin-bottom: 25px; 
    padding-bottom: 15px; border-bottom: 1px solid var(--border-color); color: #111;
}
.project-main h3 { margin-top: 50px; font-size: 1.5rem; margin-bottom: 20px; color: var(--primary-color); }
.project-main p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }

.sidebar-widget {
    background: #fff; padding: 30px;
    border: 1px solid var(--border-color); margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}
.sidebar-widget h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px; margin-bottom: 20px; font-size: 1.2rem; color: #111;
}
.tech-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.tech-list li {
    background: #f3f4f6; border: 1px solid var(--border-color);
    padding: 8px 16px; font-size: 0.85rem; color: #374151; border-radius: 6px;
    font-weight: 600;
}
.project-links { display: flex; flex-direction: column; gap: 15px; }
.project-links .btn { width: 100%; }
.project-pagination { padding: 40px 0; border-top: 1px solid var(--border-color); margin-top: 40px; }
.btn-back { font-weight: 700; color: var(--text-muted); }
.btn-back:hover { color: var(--primary-color); }

/* ==================
   9. FORMS (CONTACT & QUOTE)
   ================== */
.contact-section { padding: 80px 0; background: var(--bg-color); }
.contact-grid { display: grid; gap: 60px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 3fr 2fr; align-items: start; } }

.contact-form-wrapper {
    background: #fff; 
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
}
.contact-form-wrapper h2 { margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; color: #111; font-family: 'Montserrat', sans-serif; }

.form-group { margin-bottom: 25px; }
.form-group label {
    display: block; font-family: 'Inter', sans-serif; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; font-weight: 600;
}

/* INPUTS */
.form-control, .form-group input, .form-group textarea {
    width: 100%; padding: 16px; 
    background: #f9fafb; border: 1px solid #e5e7eb; 
    color: #111; font-size: 1rem; border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.form-control:focus, .form-group input:focus, .form-group textarea:focus {
    background: #fff; border-color: var(--primary-color); outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); /* Blue focus ring */
}

/* DROPDOWNS - BLUE ARROW */
select.form-control {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' 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 1rem center; background-size: 1.2em;
    cursor: pointer; line-height: 1.5;
}
select.form-control option { background-color: #fff; color: #333; padding: 12px; }

/* Quote Grid */
.quote-grid-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 768px) { .quote-grid-row { grid-template-columns: 1fr 1fr; } }
.form-section-title {
    font-family: 'Montserrat', sans-serif; font-size: 1.2rem; color: var(--primary-color); font-weight: 700;
    margin: 30px 0 20px 0; padding-bottom: 10px; border-bottom: 1px solid var(--border-color);
    display: flex; align-items: center; gap: 10px;
}

/* Contact List Icons */
.contact-list li { display: flex; flex-direction: column; gap: 5px; margin-bottom: 25px; }
.contact-list .icon-label {
    display: flex; align-items: center; gap: 10px;
    color: var(--primary-color); font-family: 'Inter', sans-serif;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.contact-list .icon-label i { font-size: 1.4rem; }
.contact-list a { margin-left: 32px; font-size: 1.1rem; color: var(--text-main); font-weight: 500; }
.contact-list a:hover { color: var(--primary-color); }

/* ==================
   10. MOBILE & FOOTER
   ================== */
.mobile-nav-toggle { display: flex; flex-direction: column; justify-content: space-around; width: 30px; height: 20px; background: transparent; border: none; cursor: pointer; z-index: 1100; }
.mobile-nav-toggle span { width: 100%; height: 2px; background: #111; transition: 0.3s; }

.mobile-nav-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #fff; padding: 100px 40px; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1050;
    display: flex; flex-direction: column; justify-content: center;
}
.mobile-nav-menu.open { transform: translateX(0); }
.mobile-nav-menu a { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 30px; color: #333; }
.mobile-nav-menu a.active { color: var(--primary-color); }

@media (min-width: 768px) { .mobile-nav-toggle, .mobile-nav-menu { display: none; } }

.main-footer {
    background: #111827; color: #9ca3af;
    padding: 60px 20px; text-align: center; 
}
.error-404-page .error-content { text-align: center; padding: 100px 0; }
.error-404-page h1 { font-size: 8rem; color: var(--primary-color); line-height: 1; }

/* ==================
   11. FLOATING SOCIAL BAR (Ghost Mode)
   ================== */
.social-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    opacity: 0.3; /* Ghosted by default */
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.social-bar:hover { opacity: 1; transform: translateX(5px); }
.social-bar a {
    color: var(--text-main); font-size: 1.6rem; display: block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-bar a:hover {
    color: var(--primary-color); transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.5));
}
@media (max-width: 768px) { .social-bar { display: none; } }
/* ==================
   10. MOBILE LUXURY MENU (Fixed)
   ================== */
   
/* The Toggle Button */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px; 
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}
.mobile-nav-toggle span {
    width: 30px;
    height: 3px; /* Slightly thicker for visibility */
    background-color: #111;
    transition: all 0.3s ease;
}
/* Animation */
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* The Full-Screen Overlay */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff; /* Solid White */
    z-index: 1050;
    
    /* Layout Reset */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    
    /* Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mobile-nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* RESET ANY LISTS INSIDE (This fixes the clustering) */
.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Space between items */
    width: 100%;
}
.mobile-nav-menu li {
    width: 100%;
    text-align: center;
}

/* The Links */
.mobile-nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem; /* Large and readable */
    font-weight: 800;  /* Extra Bold */
    color: #111;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -1px;
    display: block;    /* Ensures they take up space */
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: var(--primary-color);
}

/* Fix the "Start Project" Button in Mobile */
.mobile-nav-menu .btn {
    margin-top: 20px;
    width: auto;
    display: inline-block;
    font-size: 1rem; /* Smaller than nav links */
}

/* Hide toggle on desktop */
@media (min-width: 768px) {
    .mobile-nav-toggle, .mobile-nav-menu {
        display: none;
    }
}
/* ==================
   11. CONTACT PAGE
   ================== */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -1px;
}

.contact-header p {
    font-family: 'Inter', sans-serif;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form is slightly wider */
    gap: 60px;
    align-items: start;
}

/* FORM STYLING */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f9f9f9;
}

.form-control:focus {
    border-color: #111;
    background: #fff;
    outline: none;
}

.form-group.error .form-control {
    border-color: #dc3545;
    background: #fff8f8;
}

.form-error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* CONTACT INFO CARD */
.contact-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.info-item {
    margin-bottom: 30px;
}

.info-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #111;
    font-weight: 500;
}

.info-value a {
    text-decoration: none;
    color: #111;
    transition: opacity 0.3s ease;
}

.info-value a:hover {
    opacity: 0.7;
}

/* SOCIAL BUTTONS */
.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
    color: #fff !important; /* Force white text */
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-facebook {
    background-color: #1877F2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-card {
        order: -1; /* Show contact info FIRST on mobile */
        padding: 30px;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
}