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

:root {
    --teal: #1a9e96;
    --teal-dark: #158a83;
    --dark: #2d2d2d;
    --dark-bg: #3a3a3a;
    --light-gray: #f5f5f5;
    --text: #666;
    --text-dark: #333;
    --white: #fff;
}

/* Topbar */
.topbar { background: var(--teal); position: sticky; top: 0; z-index: 1001; width: 100%; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 8px 20px; display: flex; align-items: center; justify-content: flex-end; }
.topbar-desktop { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #fff; }
.topbar-desktop a { color: #fff; text-decoration: none; transition: opacity .2s; }
.topbar-desktop a:hover { opacity: .8; }
.topbar-sep { color: rgba(255,255,255,.35); }
.topbar-mobile { display: none; font-size: 14px; font-weight: 700; }
.topbar-mobile a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 7px; }

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 36px;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

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

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    transition: color 0.3s;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--teal);
}

nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown > a::after {
    content: ' \25BE';
    font-size: 10px;
}

nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    min-width: 220px;
    padding: 10px 0;
    z-index: 100;
    border-top: 2px solid var(--teal);
}

nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

nav ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

nav ul li.dropdown .dropdown-menu li a:hover {
    background: var(--teal);
    color: var(--white);
}

nav ul li.nav-quote-btn {
    margin-left: auto;
}
nav ul li.nav-quote-btn a {
    background: var(--teal);
    color: var(--white) !important;
    padding: 8px 22px !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: opacity 0.2s;
}
nav ul li.nav-quote-btn a:hover {
    opacity: 0.85;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    outline: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 90px;
    color: var(--white);
}

/* Background image layer — animates independently so overlay stays sharp */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    animation: heroBgZoom 8s ease-out both;
    z-index: 0;
}

/* Dark gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,30,30,0.88) 0%, rgba(10,30,30,0.72) 55%, rgba(10,30,30,0.50) 100%);
    z-index: 1;
}

/* Blueprint grid — subtle engineering motif, pure CSS, zero network cost */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,158,150,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,158,150,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 2;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Left accent bar gives an engineering-drawing feel */
.hero-content {
    max-width: 700px;
    padding-left: 28px;
    border-left: 4px solid var(--teal);
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    animation: heroFadeUp 0.65s ease both;
    animation-delay: 0.1s;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    font-style: normal;
    animation: heroFadeUp 0.65s ease both;
    animation-delay: 0.2s;
}

.hero-title-accent {
    color: var(--teal);
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: 560px;
    animation: heroFadeUp 0.65s ease both;
    animation-delay: 0.32s;
}

/* Inline trust chips */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
    animation: heroFadeUp 0.65s ease both;
    animation-delay: 0.44s;
}

.hero-trust-item {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    padding: 5px 13px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-stars { color: #f5a623; letter-spacing: 1px; }

.hero-trust-sep {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.65s ease both;
    animation-delay: 0.56s;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 15px 38px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 3px;
    transition: background 0.25s, transform 0.2s;
}

.btn-hero-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 3px;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.btn-hero-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* Animations — opacity + transform only (compositor-thread, no layout cost) */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBgZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero::before { animation: none; }
    .hero-eyebrow,
    .hero-title,
    .hero-sub,
    .hero-trust-row,
    .hero-buttons { animation: none; }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
}

.btn-teal:hover {
    background: var(--teal-dark);
}

/* Teal Bar */
.teal-bar {
    background: var(--teal);
    height: 6px;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--light-gray);
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--teal);
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--teal);
}

.service-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

/* About / Welcome Section */
.welcome-section {
    padding: 80px 20px;
    background: var(--white);
}

.welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.welcome-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.welcome-text .section-divider {
    margin: 0 0 25px 0;
}

.welcome-text > p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: row-reverse;
}

.value-item .value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.value-item .value-content {
    text-align: right;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.value-item p {
    font-size: 13px;
    line-height: 1.6;
}

.welcome-image img {
    width: 100%;
    border-radius: 5px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/cta-bg.jpg') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--light-gray);
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.testimonial-card .author {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 20px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-reach .footer-logo {
    margin-bottom: 20px;
}

.footer-reach .footer-logo img {
    height: 50px;
}

.footer-reach p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-reach a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-reach a:hover {
    color: var(--teal);
}

.footer-col ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--teal);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--teal);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    z-index: 999;
    transition: background 0.3s;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--teal-dark);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
}

/* About Page */
.about-intro {
    padding: 80px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-card .value-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* Services Page */
.services-page-section {
    padding: 80px 20px;
}

.services-page-section:nth-child(even) {
    background: var(--light-gray);
}

.services-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.services-page-grid.reverse {
    direction: rtl;
}

.services-page-grid.reverse > * {
    direction: ltr;
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list li::before {
    content: '\2713';
    color: var(--teal);
    font-weight: 700;
}

.services-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-content .section-divider {
    margin: 0 0 25px;
}

/* Projects Page */
.projects-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card .project-info {
    padding: 20px;
}

.project-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Required field indicators */
.req-note { font-size: 13px; color: var(--text); white-space: nowrap; }
.req-star { color: #e53935; font-weight: 700; }
.req-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #e53935; background: #fdecea; padding: 1px 5px; border-radius: 3px; vertical-align: middle; }
.opt-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #888; background: #f0f0f0; padding: 1px 5px; border-radius: 3px; vertical-align: middle; }

.contact-form label,
.contact-form .file-upload label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .file-upload {
    margin-bottom: 20px;
}

.contact-form .file-upload input[type="file"] {
    padding: 10px;
    border: 1px dashed #ddd;
    background: var(--light-gray);
}

.contact-info-side {
    padding: 30px;
}

.contact-info-side h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-left: 3px solid var(--teal);
}

.contact-detail .icon {
    width: 45px;
    height: 45px;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail span {
    font-size: 15px;
    color: var(--text-dark);
}

.contact-detail a {
    color: var(--text-dark);
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--teal);
}

/* Get Quote Page */
.quote-section {
    padding: 80px 20px;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.quote-form h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.quote-form p.subtitle {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 14px;
}

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

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--teal);
}

.quote-form textarea {
    height: 120px;
    resize: vertical;
}

.quote-contact-info {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
}

.quote-contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.quote-contact-info .contact-detail {
    background: rgba(255,255,255,0.1);
    border-left-color: var(--teal);
}

.quote-contact-info .contact-detail span,
.quote-contact-info .contact-detail a {
    color: rgba(255,255,255,0.9);
}

/* Testimonials on pages */
.page-testimonials {
    padding: 60px 20px;
    background: var(--light-gray);
}

.page-testimonials h2 {
    text-align: center;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--white);
    padding: 30px;
    text-align: center;
}

.testimonial-item .stars {
    color: #f5a623;
    margin-bottom: 10px;
}

.testimonial-item p {
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-item .author {
    font-weight: 700;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-inner,
    .services-page-grid,
    .contact-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .value-item {
        flex-direction: row;
    }

    .value-item .value-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .topbar-desktop { display: none; }
    .topbar-mobile { display: flex; }
    .topbar-inner { justify-content: center; padding: 9px 20px; }
    header { top: 34px; }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li.nav-quote-btn {
        margin-left: 0;
    }
    nav ul li.nav-quote-btn a {
        display: block;
        text-align: center;
        margin-top: 8px;
        padding: 12px 0 !important;
        border-radius: 4px;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li.dropdown .dropdown-menu {
        position: static;
        display: none;
        min-width: 100%;
        border-top: none;
        padding-left: 20px;
    }

    nav ul li.dropdown.open .dropdown-menu {
        display: block;
    }

    /* Hero — tablet/mobile */
    .hero {
        min-height: 540px;
        padding: 90px 0 70px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        padding-left: 20px;
        border-left-width: 3px;
    }

    .hero-trust-sep { display: none; }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .services-grid,
    .testimonials-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .hero-sub   { font-size: 15px; }
    .hero-trust-row { gap: 6px; }
}
