/* ============================================
   Ministry of Environment - RAC/MAC Platform
   Main Stylesheet
   ============================================ */

:root {
    --primary: #0a2d5e;
    --primary-dark: #071f42;
    --primary-light: #1a4a8a;
    --accent: #00b4d8;
    --accent-light: #48cae4;
    --accent-dark: #0077b6;
    --teal: #0096c7;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --text: #1e293b;
    --text-light: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --font-main: 'Outfit', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --nav-height: 80px;
    --btn-dark-blue: #102D60;
    --btn-radius: 8px;
    --btn-pad-v: 8px;
    --btn-pad-h: 24px;
    --btn-height: 48px;
    --btn-width: 192px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--btn-height);
    padding: var(--btn-pad-v) var(--btn-pad-h);
    border-radius: var(--btn-radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--btn-dark-blue);
    color: var(--white);
    border-color: var(--btn-dark-blue);
    min-width: var(--btn-width);
}
.btn-primary:hover {
    background: #1a3d7a;
    border-color: #1a3d7a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(16,45,96,0.4);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    border-radius: var(--btn-radius);
    height: var(--btn-height);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,180,216,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    border-radius: var(--btn-radius);
    height: var(--btn-height);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
    border-radius: var(--btn-radius);
    height: var(--btn-height);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    height: var(--nav-height);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 58px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links li a {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    border: none;
}
.nav-links li a:hover { color: var(--primary); background: transparent; }
.nav-links li a.active {
    background: #102D60;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
}

/* Join as Provider — same style as other links */
.nav-links li a.nav-join-btn {
    background: transparent;
    color: var(--gray-600);
    border-radius: 8px;
    font-weight: 500;
    padding: 10px 20px;
}
.nav-links li a.nav-join-btn:hover { background: transparent; color: var(--primary); }
.nav-links li a.nav-join-btn.active {
    background: #102D60;
    color: #ffffff;
    font-weight: 600;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-primary {
    min-width: unset; width: 192px; height: 48px; padding: 8px 24px;
    border-radius: 8px; font-size: 0.92rem;
}
.nav-actions .btn-primary.nav-active {
    background: #102D60;
    border-color: #102D60;
    color: #ffffff;
    border-bottom: 2.5px solid #0BA5CB;
    border-radius: 8px 8px 6px 6px;
}
.lang-switcher {
    position: relative;
    display: flex; align-items: center; gap: 4px;
    font-family: var(--font-main); font-size: 0.88rem; font-weight: 600;
    color: var(--gray-600); cursor: pointer;
    padding: 6px 12px; border-radius: var(--btn-radius);
    border: 1px solid var(--gray-200); transition: var(--transition); user-select: none;
}
.lang-switcher:hover { border-color: var(--primary); color: var(--primary); }
.lang-switcher i { font-size: 0.65rem; transition: transform 0.2s; }
.lang-switcher.open i { transform: rotate(180deg); }
.lang-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--btn-radius); box-shadow: var(--shadow);
    overflow: hidden; min-width: 72px; z-index: 100;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
    display: block; width: 100%; padding: 8px 16px;
    background: none; border: none;
    font-family: var(--font-main); font-size: 0.88rem; font-weight: 600;
    color: var(--gray-600); cursor: pointer; text-align: center; transition: var(--transition);
}
.lang-option:hover, .lang-option.active { background: var(--gray-100); color: var(--primary); }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none;
    padding: 8px; margin-left: auto; border-radius: var(--radius);
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: all 0.3s ease; }
.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); }
.mobile-menu {
    display: none; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px 24px 20px;
    animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
    display: block; padding: 12px 16px; font-family: var(--font-main);
    font-weight: 500; color: var(--gray-600); border-radius: var(--radius); transition: var(--transition);
}
.mobile-menu ul li a:hover { background: var(--gray-100); color: var(--primary); }
.mobile-cta { margin-top: 8px; width: 100%; justify-content: center !important; min-width: unset !important; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-height);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg, rgba(16,45,96,0.92) 0%, rgba(16,45,96,0.85) 40%, rgba(11,165,203,0.70) 100%);
}
.hero-bg-gradient {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(105deg, #102D60 0%, #0f3a7a 45%, #0BA5CB 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0; z-index: 2;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0,180,216,0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 80px 0 40px; }
.hero-inner { display: flex; flex-direction: column; max-width: 600px; }
.hero-text { color: var(--white); animation: fadeInUp 0.8s ease both; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent-light); font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.02em; margin-bottom: 24px;
}
.hero-badge::before { content: '•'; color: var(--accent-light); }
.hero-title {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 8px; letter-spacing: -0.02em;
}
.hero-title .highlight { color: var(--accent-light); display: block; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 440px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { position: relative; z-index: 3; background: var(--white); padding: 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding: 0 24px; max-width: 1200px; margin: 0 auto;
    transform: translateY(-50%);
}
.stat-item {
    background: #102D60; border-radius: 12px; padding: 32px 24px;
    text-align: center; color: var(--white);
    box-shadow: 0 8px 32px rgba(16,45,96,0.28);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-item:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(16,45,96,0.38); }
.stat-number {
    font-family: var(--font-main); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--white);
}
.stat-label { font-size: 0.82rem; color: #0BA5CB; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 60px 0 80px; background: #f0f0f0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 32px; font-weight: 700; color: #0a0a0a; line-height: 1.2; margin-bottom: 10px;
}
.section-header p {
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 15px; color: #444444; line-height: 24px; max-width: 600px; margin: 0 auto;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    background: #FAFAFA; border: 1px solid #102D60; border-radius: 8px;
    padding: 32px 28px; transition: box-shadow var(--transition);
    display: flex; flex-direction: column; gap: 10px;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.service-card h3 { font-family: 'Poppins', var(--font-main), sans-serif; font-size: 1.05rem; font-weight: 700; color: #0a0a0a; }
.service-card p { font-family: 'Poppins', var(--font-main), sans-serif; font-size: 0.875rem; color: #333333; line-height: 1.6; }
.service-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 18px; font-weight: 500; color: #102D60;
    text-decoration: underline; text-underline-offset: 2px; margin-top: auto; transition: var(--transition);
}
.service-link:hover { color: #1a4a8a; gap: 7px; }
.service-link i { font-size: 0.7rem; }

/* ============================================
   TECHNICIANS SECTION
   ============================================ */
.technicians-section { padding: 60px 0 80px; background: linear-gradient(180deg, #0BA5CBCC 0%, #102D60 80%); }
.section-actions { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section-actions .section-label { flex: 1; }
.section-actions h2 { font-family: 'Poppins', var(--font-main), sans-serif; font-size: 1.75rem; font-weight: 700; color: white; margin-bottom: 4px; }
.section-actions p { font-family: 'Poppins', var(--font-main), sans-serif; color: white; font-size: 0.9rem; }
.section-actions .btn-primary {
    background: #102D60; border-color: #102D60; color: #fff;
    min-width: unset; padding: 10px 28px; height: 44px;
    border-radius: 8px; font-size: 0.95rem; font-weight: 600;
}
.section-actions .btn-primary:hover { background: #1a3d7a; border-color: #1a3d7a; transform: none; box-shadow: none; }

/* ============================================
   TECH GRID
   ============================================ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

/* ============================================
   TECH CARD
   Figma: width 354px, image height 265px
   border-radius top-left/top-right 6px
   border 1px #102D60
   ============================================ */
.tech-card {
    background: #ffffff;
    border: 1px solid #102D60;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tech-card:hover {
    box-shadow: 0 8px 28px rgba(16,45,96,0.20);
    transform: translateY(-3px);
}

/* Image container — Figma: 354×265px proportions */
.tech-image-wrap {
    position: relative;
    width: 100%;
    height: 265px;
    overflow: hidden;
    background: #dde3ec;
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #102D60;
    flex-shrink: 0;
}

/* Base image style */
.tech-image-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.tech-card:hover .tech-image-wrap img { transform: scale(1.05); }

/* ── Per-image object-position to match screenshots ──
   tech1 (1200×800): subject in center, slightly above middle
   tech2 (2560×1707): subject center, full body visible
   tech3 (1200×801): subject right-center, AC unit top-right
   tech4 (2048×856): subject right-center, wide shot
*/
.tech-img-1 { object-position: 45% 18%; }  /* Kasun Silva — face + torso */
.tech-img-2 { object-position: 50% 10%; }  /* Tharindu — full body green uniform */
.tech-img-3 { object-position: 60% 12%; }  /* Dhanushka — fixing AC, face visible */
.tech-img-4 { object-position: 55% 8%;  }  /* Nimesh — thumbs up, AC behind */

/* Verified badge */
.verified-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    color: #017B6E;
    border: 1px solid #017B6E;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    backdrop-filter: blur(4px);
}

/* Info section */
.tech-info {
    padding: 14px 14px 16px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

/* Row 1: Name + Star rating */
.tech-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.tech-name {
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
}
.tech-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    flex-shrink: 0;
    margin-left: 8px;
}
.tech-rating i { color: #f59e0b; font-size: 0.82rem; }

/* Row 2: Location */
.tech-location {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 0.78rem;
    color: #555555;
    margin-bottom: 10px;
    line-height: 1.4;
}
.tech-location i { color: #555555; font-size: 0.70rem; margin-top: 2px; flex-shrink: 0; }

/* Row 3: Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}
.tech-tag {
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #333333;
    background: transparent;
    padding: 0;
}

/* Row 4: Price + Arrow */
.tech-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}
.tech-price { display: flex; flex-direction: column; gap: 1px; }
.tech-price span {
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 0.72rem; color: #555555; font-weight: 400; line-height: 1.3;
}
.tech-price strong {
    font-family: 'Poppins', var(--font-main), sans-serif;
    font-size: 1.1rem; font-weight: 700; color: #0a0a0a; line-height: 1.2;
}

/* Circle arrow */
.tech-btn {
    width: 34px; height: 34px;
    background: transparent;
    color: #0a0a0a;
    border: 1.5px solid #0a0a0a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem;
    transition: all 0.3s ease;
    cursor: pointer; text-decoration: none; flex-shrink: 0;
}
.tech-btn:hover { background: #102D60; border-color: #102D60; color: #ffffff; }

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section { padding: 88px 0; background: var(--off-white); }
.trust-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; }
.trust-text h2 { font-family: var(--font-main); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--primary); line-height: 1.25; margin-bottom: 16px; }
.trust-text p { color: var(--text-light); font-size: 0.97rem; line-height: 1.7; margin-bottom: 28px; max-width: 360px; }
.trust-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-item {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 18px 20px; display: flex; align-items: flex-start; gap: 12px; transition: all var(--transition);
}
.trust-item:hover { border-color: var(--accent-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.trust-item i { color: var(--teal); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.trust-item span { font-size: 0.9rem; font-weight: 600; color: var(--gray-800); line-height: 1.4; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { position: relative; overflow: hidden; padding: 72px 0; background: #0BA5CB; }
.cta-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; }
.cta-bg-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(11,165,203,0.80); }
.cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.cta-content h2 { font-family: var(--font-main); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta-content p { color: rgba(255,255,255,0.92); font-size: 1rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-primary { background: #102D60; border-color: #102D60; color: var(--white); min-width: unset; }
.cta-btns .btn-primary:hover { background: #0d2450; border-color: #0d2450; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #102D60; padding: 0; box-shadow: 0 -4px 12px rgba(0,0,0,0.25); height: 80px; display: flex; align-items: center; }
.footer .container { width: 100%; max-width: 100%; padding: 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 0 36px; }
.footer-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.footer-logo-img { height: 38px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; gap: 0; }
.footer-logo-si { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.95); font-family: var(--font-main); line-height: 1.4; }
.footer-logo-ta { font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.70); font-family: var(--font-main); line-height: 1.4; }
.footer-logo-en { font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.70); font-family: var(--font-main); line-height: 1.4; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.75); font-family: var(--font-main); font-size: 0.9rem; font-weight: 500; transition: var(--transition); text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.footer-copy p { color: rgba(255,255,255,0.55); font-size: 0.82rem; white-space: nowrap; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .tech-image-wrap { height: 230px; }
}
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-image-wrap { height: 260px; }
    .trust-inner { grid-template-columns: 1fr; gap: 40px; }
    .trust-text p { max-width: 100%; }
}
@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .nav-container { gap: 0; }
    .nav-logo-img { height: 44px; }
    .hero { min-height: auto; padding: calc(var(--nav-height) + 20px) 0 0; }
    .hero-content { padding: 48px 0 48px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; transform: translateY(-40px); }
    .stat-item { padding: 24px 16px; }
    .services-section { padding: 40px 0 60px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .technicians-section { padding: 60px 0; }
    .section-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .tech-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .tech-image-wrap { height: 200px; }
    .trust-section { padding: 60px 0; }
    .trust-features { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 20px; }
    .footer { height: auto; padding: 24px 0; }
    .footer-nav { gap: 16px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .tech-grid { grid-template-columns: 1fr; }
    .tech-image-wrap { height: 265px; }
    .hero-desc { font-size: 0.93rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); transform: translateY(-30px); }
}