/* ========================================
   VARIABLES & RESET
   ======================================== */
:root {
    --navy: #1b2d4e;
    --navy-dark: #152340;
    --navy-light: #243a5e;
    --blue-accent: #5ba3d9;
    --blue-light: #e8f1fa;
    --text-dark: #1b2d4e;
    --text-body: #5a6a7e;
    --text-light: #8a96a6;
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-input: #f0f3f7;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.arrow {
    font-size: 18px;
}

/* ========================================
   SECTION LABEL
   ======================================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--blue-accent);
}

.label-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--blue-accent);
    text-transform: uppercase;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.logo-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 2px;
}

.logo-white .logo-text {
    color: #fff;
}

.logo-white .logo-sub {
    color: rgba(255,255,255,0.6);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 8px;
    margin-left: 12px;
}

.nav-phone-btn {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    padding-top: 72px;
    background: var(--bg-white);
}

.hero-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-template-rows: 1fr auto;
    overflow: hidden;
}

.hero-content {
    padding: 60px 48px 20px max(24px, calc((100vw - 1320px) / 2 + 24px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-row: 1;
    grid-column: 1;
}

.hero-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--navy);
}

.text-accent {
    color: var(--blue-accent);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-images {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    grid-row: 1 / 3;
    grid-column: 2;
    max-height: 650px;
    margin-top: 8px;
    margin-right: 8px;
}

.hero-img {
    overflow: hidden;
    position: relative;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-main {
    grid-row: 1 / -1;
}

.hero-stats {
    border-top: 1px solid var(--border);
    padding: 32px 0 40px 0;
    margin: 0 48px 0 max(24px, calc((100vw - 1320px) / 2 + 24px));
    display: flex;
    gap: 80px;
    grid-row: 2;
    grid-column: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    display: block;
}

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

/* ========================================
   MARQUEE
   ======================================== */
.marquee {
    background: var(--navy);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    white-space: nowrap;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.services h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
}

.services-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 400px;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.services-grid .service-card:nth-child(-n+3) {
    grid-column: span 2;
}

.services-grid .service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27,45,78,0.1);
}

.service-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--navy);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.service-card h3 {
    padding: 24px 24px 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

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

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 24px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-accent);
    transition: gap var(--transition);
}

.more-link:hover {
    gap: 10px;
}

.more-link span {
    font-size: 16px;
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.why-us-left {
    display: flex;
    flex-direction: column;
}

.why-us-left h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.why-us-left > p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 32px;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 150px;
}

.why-us-img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    position: relative;
    box-shadow: 0 20px 60px rgba(27,45,78,0.12);
}

.why-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 16px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: var(--bg-light);
    border-color: var(--border);
    transform: translateX(4px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(91,163,217,0.2);
}

.benefit-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ========================================
   PROJECTS
   ======================================== */
.projects {
    padding: 100px 0;
    background: var(--bg-light);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.projects h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(27,45,78,0.85));
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--blue-accent);
    text-transform: uppercase;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: var(--navy);
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form {
    flex: 1;
}

.opening-hours {
    flex: 1;
}

.contact h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--blue-accent);
    display: block;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
}

.opening-hours {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.opening-hours .contact-label {
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.hours-row .day {
    font-size: 15px;
    color: var(--blue-accent);
    font-weight: 500;
}

.hours-row .time {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    font-size: 15px;
    font-family: inherit;
    color: var(--navy);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(91,163,217,0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235a6a7e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-dark);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-nav a {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-contact a,
.footer-contact span {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.social-links a:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

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

.footer-legal a {
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* Tablet */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 50% 50%;
        grid-template-rows: 1fr auto;
    }

    .hero-content {
        padding: 40px 30px 20px 24px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-stats {
        gap: 40px;
        padding: 24px 24px 32px;
        margin: 0;
    }

    .hero-images {
        max-height: 500px;
        margin-right: 8px;
    }

    .services h2,
    .why-us-left h2,
    .projects h2,
    .contact h2 {
        font-size: 36px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

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

    .services-grid .service-card:nth-child(-n+3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .why-us-inner {
        gap: 40px;
    }

    .why-us-right {
        padding-top: 100px;
    }

    .why-us-img {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 180px 40px 40px;
        gap: 0;
        align-items: center;
        justify-content: center;
        z-index: 998;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: rgba(255,255,255,0.6);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: color var(--transition);
    }

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

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 999;
    }

    .mobile-menu-btn.active span {
        background: #fff;
    }

    .navbar {
        z-index: 1001;
    }

    .navbar.menu-open {
        background: var(--navy-dark);
        border-bottom: none;
        backdrop-filter: none;
    }

    .navbar.menu-open .logo-text {
        color: #fff;
    }

    .navbar.menu-open .logo-sub {
        color: rgba(255,255,255,0.5);
    }

    .navbar.menu-open .logo-icon rect,
    .navbar.menu-open .logo-icon path {
        stroke: #fff;
        fill: #fff;
    }

    .navbar.menu-open .logo-icon rect {
        fill: none;
    }

    .nav-phone-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: auto;
        margin-bottom: 100px;
        padding: 14px 28px !important;
        background: var(--blue-accent) !important;
        border: none !important;
        border-radius: var(--radius-sm) !important;
        color: #fff !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        letter-spacing: 0 !important;
        text-transform: none !important;
        width: 100%;
    }

    .navbar.menu-open .logo {
        position: relative;
        z-index: 1002;
    }

    /* Hero mobile */
    .hero-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .hero-content {
        padding: 64px 20px 24px;
        grid-row: 1;
        grid-column: 1;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .hero-images {
        display: none;
    }

    .hero-stats {
        grid-row: 2;
        grid-column: 1;
        padding: 14px 20px;
        margin: 0 20px 16px;
        gap: 0;
        justify-content: space-around;
        background: var(--bg-light);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        text-align: center;
    }

    .stat {
        flex: 1;
        padding: 8px 0;
    }

    .stat + .stat {
        border-left: 1px solid var(--border);
    }

    .stat-number {
        font-size: 30px;
    }

    /* Services mobile */
    .services {
        padding: 60px 0;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .services-desc {
        text-align: left;
    }

    .services h2 {
        font-size: 32px;
    }

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

    .services-grid .service-card:nth-child(-n+3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }

    /* Why us mobile */
    .why-us {
        padding: 60px 0;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-left h2 {
        font-size: 32px;
    }

    .why-us-right {
        padding-top: 0;
    }

    .why-us-img {
        height: 280px;
    }

    /* Projects mobile */
    .projects {
        padding: 60px 0;
    }

    .projects h2 {
        font-size: 32px;
    }

    .projects-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .projects-header .more-link {
        padding-left: 0;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .project-card {
        height: 200px;
        border-radius: var(--radius-sm);
    }

    .project-overlay {
        opacity: 0;
        transform: translateY(10px);
        padding: 12px;
    }

    .project-card:active .project-overlay,
    .project-card.touched .project-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .project-tag {
        font-size: 9px;
    }

    .project-title {
        font-size: 14px;
    }

    /* CTA mobile */
    .cta-banner {
        padding: 48px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

    /* Contact mobile */
    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper h3 {
        font-size: 24px;
    }

    /* Footer mobile */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Marquee mobile */
    .marquee {
        padding: 16px 0;
        margin: 0 20px;
        border-radius: var(--radius);
    }

    .marquee-content {
        font-size: 12px;
        gap: 24px;
        padding-right: 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-images {
        display: none;
    }

    .hero-content {
        padding: 64px 16px 20px;
    }

    .hero-stats {
        padding: 14px 16px;
        margin: 0 16px 12px;
    }

    .section-label {
        margin-bottom: 12px;
    }

    .label-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .services h2,
    .why-us-left h2,
    .projects h2,
    .contact h2 {
        font-size: 28px;
    }

    .benefit-item {
        padding: 12px 0;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .why-us-img {
        height: 220px;
    }

    .project-card {
        height: 160px;
    }

    .opening-hours {
        margin-top: 24px;
        padding-top: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
