/* ===== HARTLERZE AGENCY - MAIN STYLESHEET ===== */
:root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --red-light: #EF5350;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --accent: #FF6F00;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { color: var(--black); margin-bottom: 1rem; }
.section-title p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-title .title-line {
    width: 60px; height: 4px; background: var(--red);
    margin: 1rem auto 0; border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius);
    font-family: var(--font-heading); font-weight: 600;
    font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211,47,47,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13,13,13,0.95);
    /* backdrop-filter removed — it creates a stacking context that traps
       position:fixed children (the mobile menu) on some browsers */
    padding: 0; transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; max-width: 1300px; margin: 0 auto; padding: 0 20px;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand .logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: var(--white); }
.navbar-brand .logo-text span { color: var(--red); }
.navbar-brand .logo-sub { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: -4px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
    color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
    padding: 8px 12px; border-radius: 4px; transition: var(--transition);
    font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(211,47,47,0.2); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--dark); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 10px 16px; color: rgba(255,255,255,0.8);
    font-size: 0.85rem; transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dropdown-menu a:hover { color: var(--white); background: rgba(211,47,47,0.15); padding-left: 22px; }

.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a0000 50%, #2d0000 100%);
    position: relative; overflow: hidden; padding-top: 70px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(211,47,47,0.05)"/><circle cx="80" cy="80" r="60" fill="rgba(211,47,47,0.03)"/></svg>') center/cover;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(211,47,47,0.15); border: 1px solid rgba(211,47,47,0.3);
    color: var(--red-light); padding: 6px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 span { color: var(--red); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 550px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 40px; margin-top: 4rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat .number span { color: var(--red); }
.hero-stat .label { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-visual {
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    background: linear-gradient(135deg, rgba(211,47,47,0.1), rgba(211,47,47,0.05));
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex; align-items: center; justify-content: center;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    padding: 40px; transform: rotate(-3deg);
}
.hero-grid-item {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 20px; text-align: center;
    transition: var(--transition);
}
.hero-grid-item:hover { background: rgba(211,47,47,0.1); border-color: rgba(211,47,47,0.3); }
.hero-grid-item i { font-size: 2rem; color: var(--red); margin-bottom: 8px; }
.hero-grid-item span { color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
/* Column variants set by page builder */
.services-grid-2col { grid-template-columns: repeat(2, 1fr); }
.services-grid-3col { grid-template-columns: repeat(3, 1fr); }
.services-grid-4col { grid-template-columns: repeat(4, 1fr); }
.service-card {
    background: var(--white); border: 1px solid #eee; border-radius: 12px;
    padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--red); transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px; background: rgba(211,47,47,0.08);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); }
.service-icon i { font-size: 1.5rem; color: var(--red); transition: var(--transition); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--red); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 100px 0; background: var(--black); }
.why-section .section-title h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.why-card { text-align: center; padding: 32px 20px; }
.why-icon {
    width: 80px; height: 80px; background: rgba(211,47,47,0.1);
    border: 2px solid rgba(211,47,47,0.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--red); border-color: var(--red); }
.why-icon i { font-size: 1.8rem; color: var(--red); transition: var(--transition); }
.why-card:hover .why-icon i { color: var(--white); }
.why-card h3 { color: var(--white); margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ===== PORTFOLIO ===== */
.portfolio-section { padding: 100px 0; background: var(--gray-light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.portfolio-card { border-radius: 12px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img {
    height: 220px; background: linear-gradient(135deg, var(--red-dark), var(--black));
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.portfolio-img i { font-size: 3rem; color: rgba(255,255,255,0.3); }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay {
    position: absolute; inset: 0; background: rgba(211,47,47,0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay a { color: var(--white); font-size: 1.5rem; }
.portfolio-info { padding: 20px; }
.portfolio-cat { color: var(--red); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.portfolio-info h3 { font-size: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
    background: var(--gray-light); border-radius: 12px; padding: 32px;
    position: relative; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card::before {
    content: '"'; font-size: 5rem; color: var(--red); opacity: 0.15;
    position: absolute; top: 10px; left: 20px; font-family: Georgia, serif; line-height: 1;
}
.stars { color: #FFB300; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { color: var(--gray-dark); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--red); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-company { color: var(--gray); font-size: 0.8rem; }

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--black) 100%);
    text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-text span { color: var(--red); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; line-height: 1.6; }
.footer-newsletter input {
    width: 100%; padding: 10px 14px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius);
    color: var(--white); font-size: 0.88rem; margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter input:focus { outline: none; border-color: var(--red); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0; display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--red); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, #1a0000 100%);
    text-align: center; position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== SERVICE PAGE ===== */
.service-page-section { padding: 80px 0; }
.service-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-page-grid.reverse { direction: rtl; }
.service-page-grid.reverse > * { direction: ltr; }
.service-page-content h2 { margin-bottom: 20px; }
.service-page-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.service-features { margin: 24px 0; }
.service-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--gray-dark); }
.service-features li i { color: var(--red); }
.service-img-box {
    border-radius: 16px; overflow: hidden; height: 400px;
    background: linear-gradient(135deg, var(--red-dark), var(--black));
    display: flex; align-items: center; justify-content: center;
}
.service-img-box i { font-size: 5rem; color: rgba(255,255,255,0.2); }
.service-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon {
    width: 48px; height: 48px; background: rgba(211,47,47,0.1);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { color: var(--red); font-size: 1.1rem; }
.contact-info-text h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }
.contact-info-text a:hover { color: var(--red); }
.contact-form-box { background: var(--gray-light); border-radius: 16px; padding: 40px; }
.contact-form-box h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid #ddd;
    border-radius: var(--radius); font-size: 0.9rem; font-family: var(--font-body);
    transition: var(--transition); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; display: none; }
.form-error { background: #ffebee; border: 1px solid #ef5350; color: #c62828; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; display: none; }

/* ===== BLOG ===== */
.blog-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background: linear-gradient(135deg, var(--red-dark), var(--black)); display: flex; align-items: center; justify-content: center; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-img i { font-size: 2.5rem; color: rgba(255,255,255,0.3); }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-meta span { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.blog-content h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-content p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.blog-read-more { color: var(--red); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float i { color: var(--white); font-size: 1.6rem; }
@keyframes pulse-green {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== UTILITIES ===== */
.text-red { color: var(--red); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.py-5 { padding: 80px 0; }
.bg-light { background: var(--gray-light); }
.bg-dark { background: var(--black); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-red { background: rgba(211,47,47,0.1); color: var(--red); }

/* ===== MOBILE NAV OVERLAY ===== */
#mobileNavOverlay {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 9999;          /* above everything */
    overflow-y: auto;
    padding: 8px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
#mobileNavOverlay.open { display: block; }

.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mnav-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mnav-link {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px 20px;
    color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600;
    font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.5px;
    background: none; border: none; cursor: pointer; text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.mnav-link:hover, .mnav-link:active { color: #fff; background: rgba(255,255,255,0.05); }
.mnav-arrow { font-size: 0.75rem; transition: transform 0.2s; }
.mnav-dropdown.open .mnav-arrow { transform: rotate(180deg); }

.mnav-sub { display: none; list-style: none; margin: 0; padding: 0; background: rgba(255,255,255,0.03); }
.mnav-dropdown.open .mnav-sub { display: block; }
.mnav-sub li a {
    display: block; padding: 12px 20px 12px 36px;
    color: rgba(255,255,255,0.7); font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    text-decoration: none; transition: color 0.2s, background 0.2s;
}
.mnav-sub li a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-visual { display: none; }
    .service-page-grid { grid-template-columns: 1fr; }
    .service-page-grid.reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    /* Hide desktop nav, show hamburger */
    .nav-menu { display: none !important; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }

    /* ---- Services grid ---- */
    .services-grid { grid-template-columns: 1fr 1fr !important; }

    /* ---- General ---- */
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr !important; }
}
