/* ===================================
   قص خرسانة وفتحات كور الكويت
   Industrial premium theme — design DNA preserved
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors — preserved */
    --primary-dark: #1a1a1a;
    --primary-metal: #2c3e50;
    --accent-rust: #d4671c;
    --accent-chrome: #c0c0c0;
    
    /* Secondary Colors — preserved */
    --warm-leather: #8b6f47;
    --engine-red: #b22222;
    --oil-black: #0d0d0d;
    --concrete-gray: #95a5a6;
    --warning-yellow: #f39c12;
    
    /* Background Colors — preserved */
    --bg-workshop: rgba(26, 26, 26, 0.85);
    --bg-surface: #2c2c2c;
    --bg-hover: #3a3a3a;
    
    /* Text Colors — preserved */
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #999999;
    
    /* Fonts — Tajawal for Arabic */
    --font-title: 'Tajawal', sans-serif;
    --font-display: 'Tajawal', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    --font-number: 'Tajawal', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    direction: rtl;
    text-align: right;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 2px solid rgba(212, 103, 28, 0.3);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    max-width: min(46vw, 360px);
}

.site-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease, height 0.35s ease;
}

.site-logo--nav {
    height: clamp(52px, 6vw, 85px);
    width: auto;
}

.navbar.scrolled .site-logo--nav {
    height: clamp(46px, 5vw, 68px);
}

.nav-brand:hover .site-logo--nav {
    transform: translateY(-1px) scale(1.03);
    filter:
        drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 16px rgba(212, 103, 28, 0.35));
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.hero-logo-wrap--compact {
    margin-bottom: 10px;
}

.site-logo--hero {
    height: clamp(88px, 16vw, 140px);
    width: auto;
    filter:
        drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 22px rgba(212, 103, 28, 0.25));
    animation: logoFloat 4.5s ease-in-out infinite;
}

.site-logo--hero-sm {
    height: clamp(52px, 10vw, 78px);
    width: auto;
    opacity: 0.95;
    filter:
        drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 14px rgba(212, 103, 28, 0.2));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.site-logo--footer {
    height: clamp(72px, 12vw, 100px);
    width: auto;
    margin-bottom: 8px;
}

.footer-logo a:hover .site-logo--footer {
    transform: translateY(-2px);
    filter:
        drop-shadow(0 8px 22px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 18px rgba(212, 103, 28, 0.35));
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rust);
}

.logo-icon .brand-svg {
    width: 36px;
    height: 36px;
    transition: var(--transition-smooth);
}

.logo-icon:hover .brand-svg {
    transform: rotate(-20deg) scale(1.08);
    filter: drop-shadow(0 0 8px rgba(212, 103, 28, 0.6));
}

.brand-name {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(270deg, var(--accent-rust), var(--warning-yellow));
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-rust);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.btn-login {
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    padding: 10px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(212, 103, 28, 0.3);
    color: var(--text-light) !important;
}

.btn-login::before {
    display: none;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 103, 28, 0.5);
    color: var(--text-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--accent-rust);
    transition: var(--transition-fast);
}

/* ===== Hero Slider ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--oil-black);
}

.hero-slider .hero-swiper {
    width: 100%;
    height: 200vh;
    height: 100dvh;
}
@media(max-width:767px){
    .hero-slider .hero-swiper{
        height: 150dvh !important;
    } 
}
.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.38)),
        var(--hero-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 13, 13, 0.45) 100%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.35) 0%, rgba(13, 13, 13, 0.15) 45%, rgba(13, 13, 13, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    padding: 200px 24px 150px;
    width: 100%;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
   
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-brand {
    font-family: var(--font-title);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 800;
    color: var(--accent-rust);
    margin-bottom: 14px;
   
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(26px, 4.8vw, 50px);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 10px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    text-wrap: balance;
    /* padding-top: 100px !important; */
}

.divider {
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-rust), var(--warning-yellow), var(--accent-rust), transparent);
    margin: 26px auto;
}

.hero-tagline {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 34px;
    line-height: 1.85;
    max-width: 720px;
    margin-inline: auto;
    text-wrap: pretty;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    /* padding-bottom: 100px !important; */
}

.hero-buttons .btn {
    border-radius: 50px;
}

.hero-pagination {
    bottom: 36px !important;
    z-index: 5;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    margin: 0 6px !important;
    transition: transform 0.35s ease, background 0.35s ease, width 0.35s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-rust);
    width: 28px;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(212, 103, 28, 0.55);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 103, 28, 0.55);
    background: rgba(13, 13, 13, 0.55);
    backdrop-filter: blur(8px);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-nav:hover {
    background: var(--accent-rust);
    border-color: var(--accent-rust);
    box-shadow: 0 8px 24px rgba(212, 103, 28, 0.35);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev {
    right: 22px;
}

.hero-nav-next {
    left: 22px;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    opacity: 0.85;
}

.scroll-arrow {
    width: 28px;
    height: 46px;
    border: 2px solid var(--accent-rust);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-rust);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===== About — same site identity, centered cards layout ===== */
.about {
    --about-ink: var(--text-light);
    --about-muted: var(--text-gray);
    --about-surface: linear-gradient(145deg, var(--bg-surface), #242424);
    --about-bg: var(--primary-dark);
    --about-line: rgba(212, 103, 28, 0.22);
    --about-accent: var(--accent-rust);
    position: relative;
    padding: clamp(72px, 9vw, 120px) 0;
    background:
        radial-gradient(ellipse at top, rgba(212, 103, 28, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, #141414 0%, var(--primary-dark) 45%, var(--oil-black) 100%);
    overflow: hidden;
    text-align: center;
}

.about-header {
    max-width: 820px;
    margin: 0 auto 48px;
}

.about-heading {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--about-ink);
    line-height: 1.3;
    margin-bottom: 14px;
}

.about-heading span {
    color: var(--about-accent);
}

.about-underline {
    width: 88px;
    height: 4px;
    margin: 0 auto 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-metal) 0%, var(--about-accent) 55%, var(--warning-yellow) 100%);
}

.about-intro {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.95;
    color: var(--about-muted);
    max-width: 46ch;
    margin: 0 auto;
    text-wrap: pretty;
}

.about-frame {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 18px 10px;
}

.about-corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 3px solid var(--about-accent);
    pointer-events: none;
    z-index: 2;
}

.about-corner-tr {
    top: 0;
    right: 0;
    border-left: 0;
    border-bottom: 0;
    border-top-right-radius: 6px;
}

.about-corner-tl {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top-left-radius: 6px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-card {
    background: var(--about-surface);
    border: 1px solid var(--about-line);
    border-radius: 18px;
    padding: 28px 20px 26px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
    height: 100%;
}

.about-card:hover,
.about-card.aos-animate:hover {
    transform: translate3d(0, -8px, 0) !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(212, 103, 28, 0.18);
    border-color: var(--accent-rust);
}

.about-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 103, 28, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rust);
    background: rgba(212, 103, 28, 0.08);
    transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover .about-card-icon {
    border-color: var(--accent-rust);
    color: var(--text-light);
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    box-shadow: 0 8px 20px rgba(212, 103, 28, 0.35);
}

.about-card-icon svg {
    width: 28px;
    height: 28px;
}

.about-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    color: var(--about-ink);
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--about-muted);
    margin: 0 auto;
    max-width: 28ch;
}

.about-cta-wrap {
    margin-top: 42px;
    display: flex;
    justify-content: center;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    color: #fff;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(212, 103, 28, 0.35);
    cursor: pointer;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(212, 103, 28, 0.5);
}

@media (max-width: 1024px) {
    .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .about-frame {
        padding: 26px 14px 8px;
    }
}

@media (max-width: 640px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-frame {
        padding: 24px 10px 6px;
    }

    .about-corner {
        width: 28px;
        height: 28px;
        border-width: 2.5px;
    }

    .about-card {
        padding: 24px 18px 22px;
    }

    .about-card p {
        max-width: none;
    }

    .about-cta {
        width: 100%;
        max-width: 360px;
    }
}

.btn {
    padding: 15px 36px;
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(212, 103, 28, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 103, 28, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-rust);
}

.btn-secondary:hover {
    background: var(--accent-rust);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 103, 28, 0.4);
}

.btn-compact {
    padding: 12px 22px;
    font-size: 15px;
    margin-top: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-rust);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-rust);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-rust), var(--warning-yellow));
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    letter-spacing: 0;
    margin-top: 22px;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-surface), #242424);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 103, 28, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-rust), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 103, 28, 0.3);
    border-color: var(--accent-rust);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(212, 103, 28, 0.3);
    color: var(--text-light);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 30px rgba(212, 103, 28, 0.5);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-icon i {
    font-size: 40px;
    color: var(--text-light);
}

.service-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-rust);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
    color: var(--warning-yellow);
}

/* ===== Why Us / Stats band DNA ===== */
.stats {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary-metal), var(--oil-black));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,103,28,0.1)" stroke-width="2"/></svg>');
    opacity: 0.1;
}

.why-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 10px 12px;
}

.stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    color: var(--accent-rust);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 10px rgba(212, 103, 28, 0.35));
}

.stat-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(212, 103, 28, 0.25);
}

.stat-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 280px;
    margin-inline: auto;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: var(--section-padding);
    background: var(--oil-black);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--bg-surface);
    border: 2px solid transparent;
    color: var(--text-gray);
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition-fast);
    min-height: 44px;
}

.filter-btn:hover,
.filter-btn.active {
    background: transparent;
    border-color: var(--accent-rust);
    color: var(--accent-rust);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(55%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 5px;
    color: var(--text-light);
}

.gallery-overlay p {
    color: var(--accent-rust);
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-view {
    width: 50px;
    height: 50px;
    background: var(--accent-rust);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-view:hover {
    background: var(--warning-yellow);
    transform: scale(1.1);
}

/* ===== Process Section ===== */
.process {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 260px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-number);
    font-size: 72px;
    font-weight: 900;
    color: var(--accent-rust);
    opacity: 0.12;
    z-index: 0;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--bg-surface), #242424);
    border: 3px solid var(--accent-rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
    color: var(--accent-rust);
}

.process-step:hover .step-icon {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 103, 28, 0.4);
}

.step-icon svg {
    width: 42px;
    height: 42px;
}

.step-icon i {
    font-size: 40px;
    color: var(--accent-rust);
}

.step-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--text-light);
}

.step-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.process-arrow {
    font-size: 32px;
    color: var(--accent-rust);
    animation: slideLeft 1.5s ease-in-out infinite;
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background: var(--oil-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 48px;
    margin-top: 60px;
}

.info-card {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    border-right: 4px solid var(--accent-rust);
    border-left: none;
}

.info-card:hover {
    transform: translateX(-10px);
    box-shadow: 5px 5px 20px rgba(212, 103, 28, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 24px;
    color: var(--text-light);
}

.info-card h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-action {
    color: var(--accent-rust);
    font-weight: 700;
    font-size: 18px;
    word-break: break-word;
}

.contact-action:hover {
    color: var(--warning-yellow);
}

.contact-form {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid rgba(212, 103, 28, 0.2);
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-hover);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
    direction: rtl;
    text-align: right;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-rust);
    background: var(--primary-dark);
}

.form-group select option {
    background: var(--bg-hover);
    color: var(--text-light);
}

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

.btn-full {
    width: 100%;
}

.form-hint {
    margin-top: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Footer ===== */
.footer {
    background: var(--oil-black);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(212, 103, 28, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-flex;
    max-width: 100%;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-rust);
    color: var(--text-light);
    transform: translateY(-5px);
}

.footer-col h4 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-rust);
    padding-right: 10px;
}

.footer-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-rust), #e07a2c);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 103, 28, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 103, 28, 0.6);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
    }
    
    .process-arrow {
        transform: rotate(-90deg);
        animation: none;
    }
    
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: auto;
        width: min(80%, 350px);
        max-width: 350px;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition-smooth);
        border-right: 2px solid var(--accent-rust);
        border-left: none;
        overflow-y: auto;
        transform: translateX(-110%);
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }
    
    .brand-name {
        font-size: 16px;
        max-width: 180px;
        line-height: 1.3;
    }

    .site-logo--nav {
        height: 48px;
    }

    .nav-brand {
        max-width: min(58vw, 200px);
    }
    
    .hero-content {
        padding: 110px 16px 110px;
    }
    
    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .hero-nav {
        display: none;
    }

    .hero-pagination {
        bottom: 28px !important;
    }

    .scroll-indicator {
        display: none;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .service-card,
    .info-card,
    .contact-form {
        padding: 25px 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .brand-name {
        font-size: 14px;
        max-width: 140px;
    }

    .site-logo--nav {
        height: 42px;
    }

    .site-logo--hero {
        height: 78px;
    }

    .site-logo--hero-sm {
        height: 48px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .hero-pagination {
        bottom: 78px !important;
    }
}

/* ===== AOS — soft reveal from below (original personality) ===== */
[data-aos] {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translate3d(0, 56px, 0);
}

[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos="fade-down"] {
    transform: translate3d(0, -40px, 0);
}

[data-aos="fade-down"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos="fade-left"] {
    transform: translate3d(-48px, 0, 0);
}

[data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(48px, 0, 0);
}

[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
}

a,
button,
.btn,
.filter-btn,
.nav-toggle,
.nav-link,
.service-card,
.service-link,
.gallery-item,
.btn-view,
.scroll-top,
.info-card a,
.footer-social a,
.footer-col ul li a,
select,
summary,
[role="button"],
.js-phone,
.js-whatsapp,
.hero-nav,
.hero-pagination .swiper-pagination-bullet,
.about-cta,
.about-card {
    cursor: pointer;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    cursor: text;
}

/* Premium hover polish — must beat AOS transform after reveal */
.service-card {
    cursor: pointer;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease;
}

.service-card:hover,
.service-card.aos-animate:hover {
    transform: translate3d(0, -10px, 0) !important;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover,
.gallery-item.aos-animate:hover {
    transform: translate3d(0, -6px, 0) !important;
}

.filter-btn {
    cursor: pointer;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
}

.btn {
    cursor: pointer;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.info-card {
    cursor: default;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step .step-icon {
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-item:hover,
.stat-item.aos-animate:hover {
    transform: translate3d(0, -8px, 0) !important;
}

.stat-item:hover .stat-icon svg {
    filter: drop-shadow(0 0 16px rgba(212, 103, 28, 0.55));
    transition: filter 0.45s ease;
}

.process-step:hover .step-icon,
.process-step.aos-animate:hover .step-icon {
    transform: translate3d(0, -10px, 0);
}

@media (prefers-reduced-motion: reduce) {
    .logo-icon-large,
    .scroll-arrow::before,
    .process-arrow,
    .site-logo--hero {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--oil-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-rust), #e07a2c);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #e07a2c, var(--warning-yellow));
}

/* ===== Selection Styles ===== */
::selection {
    background: var(--accent-rust);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--accent-rust);
    color: var(--text-light);
}
