/* =========================================================
   AL-SNAD FAST
   شركة الإسناد السريع
   للمقاولات وتأجير المعدات الثقيلة

   MAIN STYLESHEET
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --dark: #07111b;
    --dark-2: #0b1724;
    --dark-3: #101f2e;

    --yellow: #f5b51b;
    --yellow-dark: #d99800;

    --red: #d62828;
    --red-dark: #a91e1e;

    --metal: #697785;
    --metal-light: #aeb8c0;

    --light: #f3f5f7;
    --white: #ffffff;

    --text: #18232e;
    --text-light: #697581;

    --border: #e1e6ea;

    --shadow:
        0 15px 45px rgba(7, 17, 27, .10);

    --shadow-dark:
        0 20px 50px rgba(0, 0, 0, .30);

    --radius: 8px;

    --transition:
        all .35s ease;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Cairo", sans-serif;

    background:
        var(--white);

    color:
        var(--text);

    line-height: 1.8;

    overflow-x: hidden;

}


body.no-scroll {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    border: none;

    cursor: pointer;

}


img {

    max-width: 100%;

    display: block;

}


ul {

    list-style: none;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1180px, 92%);

    margin-inline: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background:
        #050c13;

    color:
        #d9e0e5;

    font-size:
        13px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

}


.top-bar-inner {

    min-height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

}


.top-right,
.top-left {

    display:
        flex;

    align-items:
        center;

    gap:
        22px;

}


.top-bar span,
.top-bar a {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

}


.top-bar i {

    color:
        var(--yellow);

}


.top-bar a {

    transition:
        var(--transition);

}


.top-bar a:hover {

    color:
        var(--yellow);

}


/* =========================================================
   HEADER
========================================================= */

.main-header {

    position:
        sticky;

    top:
        0;

    z-index:
        1000;

    background:
        rgba(7,17,27,.96);

    backdrop-filter:
        blur(12px);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    transition:
        var(--transition);

}


.main-header.scrolled {

    box-shadow:
        0 10px 35px rgba(0,0,0,.25);

}


.header-inner {

    min-height:
        82px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo,
.footer-logo {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

}


.logo-icon {

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--yellow);

    color:
        var(--dark);

    font-size:
        23px;

    transform:
        skewX(-8deg);

    box-shadow:
        5px 5px 0 var(--red);

}


.logo-text {

    display:
        flex;

    flex-direction:
        column;

    line-height:
        1.3;

}


.logo-text strong {

    color:
        var(--white);

    font-size:
        18px;

    font-weight:
        900;

}


.logo-text span {

    color:
        #aab6bf;

    font-size:
        10px;

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        28px;

}


.main-nav a {

    position:
        relative;

    color:
        #d9e0e5;

    font-size:
        14px;

    font-weight:
        600;

    padding:
        29px 0;

    transition:
        var(--transition);

}


.main-nav a::after {

    content:
        "";

    position:
        absolute;

    bottom:
        20px;

    right:
        0;

    width:
        0;

    height:
        3px;

    background:
        var(--yellow);

    transition:
        var(--transition);

}


.main-nav a:hover,
.main-nav a.active {

    color:
        var(--yellow);

}


.main-nav a:hover::after,
.main-nav a.active::after {

    width:
        100%;

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    background:
        var(--yellow);

    color:
        var(--dark);

    padding:
        11px 18px;

    font-size:
        13px;

    font-weight:
        800;

    clip-path:
        polygon(
            8px 0,
            100% 0,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            0 100%,
            0 8px
        );

    transition:
        var(--transition);

}


.header-btn:hover {

    background:
        var(--white);

    transform:
        translateY(-2px);

}


/* =========================================================
   MENU TOGGLE
========================================================= */

.menu-toggle {

    display:
        none;

    width:
        45px;

    height:
        45px;

    background:
        var(--yellow);

    color:
        var(--dark);

    font-size:
        20px;

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    position:
        fixed;

    top:
        82px;

    right:
        0;

    width:
        min(360px, 90%);

    height:
        calc(100vh - 82px);

    background:
        var(--dark-2);

    z-index:
        999;

    padding:
        25px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    transform:
        translateX(110%);

    transition:
        var(--transition);

    box-shadow:
        -15px 0 40px rgba(0,0,0,.3);

}


.mobile-menu.open {

    transform:
        translateX(0);

}


.mobile-menu a {

    color:
        #e7edf1;

    padding:
        15px;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    font-weight:
        600;

}


.mobile-menu a:hover {

    color:
        var(--yellow);

}


.mobile-menu .mobile-quote {

    margin-top:
        20px;

    background:
        var(--yellow);

    color:
        var(--dark);

    text-align:
        center;

    border:
        none;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position:
        relative;

    min-height:
        690px;

    display:
        flex;

    align-items:
        center;

    background-position:
        center;

    background-size:
        cover;

    isolation:
        isolate;

    overflow:
        hidden;

}


.hero::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(7,17,27,.25),
            rgba(7,17,27,.45)
        );

    z-index:
        -2;

}


.hero-grid {

    position:
        absolute;

    inset:
        0;

    z-index:
        -1;

    opacity:
        .18;

    background-image:

        linear-gradient(
            rgba(245,181,27,.20) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(245,181,27,.20) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    transform:
        perspective(500px)
        rotateX(55deg)
        scale(1.6);

    transform-origin:
        center bottom;

}


.hero-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        760px;

    padding:
        80px 0;

}


.hero-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    color:
        var(--yellow);

    border:
        1px solid rgba(245,181,27,.45);

    background:
        rgba(7,17,27,.60);

    padding:
        7px 13px;

    font-size:
        12px;

    font-weight:
        700;

    margin-bottom:
        22px;

}


.hero-badge span {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--red);

    box-shadow:
        0 0 0 5px rgba(214,40,40,.15);

}


.hero h1 {

    color:
        var(--white);

    font-size:
        clamp(36px, 5vw, 68px);

    line-height:
        1.15;

    font-weight:
        900;

    letter-spacing:
        -1px;

}


.hero h1 strong {

    display:
        block;

    color:
        var(--yellow);

    font-weight:
        900;

}


.hero-subtitle {

    color:
        var(--white);

    font-size:
        clamp(20px, 3vw, 30px);

    font-weight:
        800;

    margin-top:
        18px;

}


.hero-description {

    max-width:
        690px;

    color:
        #d4dce2;

    font-size:
        16px;

    margin-top:
        12px;

}


.hero-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        13px;

    margin-top:
        30px;

}


.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        52px;

    padding:
        0 25px;

    font-size:
        14px;

    font-weight:
        800;

    transition:
        var(--transition);

}


.btn-primary {

    background:
        var(--yellow);

    color:
        var(--dark);

}


.btn-primary:hover {

    background:
        var(--white);

    transform:
        translateY(-3px);

}


.btn-outline {

    border:
        1px solid rgba(255,255,255,.55);

    color:
        var(--white);

    background:
        rgba(255,255,255,.05);

}


.btn-outline:hover {

    background:
        var(--white);

    color:
        var(--dark);

}


.btn-yellow {

    background:
        var(--yellow);

    color:
        var(--dark);

}


.btn-yellow:hover {

    background:
        var(--white);

    transform:
        translateY(-3px);

}


.hero-features {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        25px;

    margin-top:
        30px;

}


.hero-features div {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    color:
        #e4eaee;

    font-size:
        13px;

}


.hero-features i {

    color:
        var(--yellow);

}


.hero-scroll {

    position:
        absolute;

    bottom:
        25px;

    left:
        50%;

    transform:
        translateX(-50%);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    color:
        rgba(255,255,255,.65);

    font-size:
        10px;

    gap:
        4px;

    animation:
        scrollDown 2s infinite;

}


@keyframes scrollDown {

    0%,
    100% {

        transform:
            translate(-50%, 0);

    }

    50% {

        transform:
            translate(-50%, 7px);

    }

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    position:
        relative;

    margin-top:
        -1px;

    background:
        var(--dark-2);

    border-top:
        1px solid rgba(255,255,255,.05);

}


.stats-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.stat-card {

    min-height:
        120px;

    padding:
        20px;

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    border-left:
        1px solid rgba(255,255,255,.07);

}


.stat-card:last-child {

    border-left:
        none;

}


.stat-icon {

    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(245,181,27,.10);

    color:
        var(--yellow);

    font-size:
        22px;

}


.stat-card strong {

    display:
        block;

    color:
        var(--yellow);

    font-size:
        20px;

    font-weight:
        900;

}


.stat-card span {

    display:
        block;

    color:
        #c3ccd3;

    font-size:
        12px;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section-padding {

    padding:
        100px 0;

}


.section-heading {

    margin-bottom:
        50px;

}


.section-heading.centered {

    text-align:
        center;

    max-width:
        700px;

    margin-inline:
        auto;

    margin-bottom:
        50px;

}


.section-label {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--yellow-dark);

    font-size:
        12px;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        .5px;

}


.section-label span {

    width:
        28px;

    height:
        3px;

    background:
        var(--yellow);

}


.section-heading h2,
.about-content h2,
.equipment-header h2,
.projects-heading h2,
.quote-content h2,
.contact-info h2 {

    font-size:
        clamp(28px, 4vw, 45px);

    line-height:
        1.3;

    margin-top:
        10px;

    font-weight:
        900;

}


.section-heading h2 strong,
.about-content h2 strong,
.equipment-header h2 strong,
.projects-heading h2 strong,
.quote-content h2 strong,
.contact-info h2 strong {

    color:
        var(--yellow-dark);

}


.section-heading p {

    color:
        var(--text-light);

    margin-top:
        12px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background:
        var(--white);

}


.about-grid {

    display:
        grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap:
        80px;

    align-items:
        center;

}


.about-image {

    position:
        relative;

    padding:
        20px;

}


.image-frame {

    position:
        relative;

    overflow:
        hidden;

    border:
        10px solid var(--dark-2);

    box-shadow:
        25px 25px 0 var(--yellow);

}


.image-frame img {

    width:
        100%;

    height:
        470px;

    object-fit:
        cover;

    transition:
        transform .7s ease;

}


.image-frame:hover img {

    transform:
        scale(1.05);

}


.experience-box {

    position:
        absolute;

    bottom:
        0;

    right:
        0;

    min-width:
        160px;

    padding:
        18px;

    background:
        var(--red);

    color:
        var(--white);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    text-align:
        center;

    box-shadow:
        8px 8px 0 var(--dark);

}


.experience-box i {

    font-size:
        25px;

    margin-bottom:
        5px;

}


.experience-box strong {

    font-size:
        20px;

}


.experience-box span {

    font-size:
        11px;

    opacity:
        .9;

}


.about-content p {

    color:
        var(--text-light);

    margin-top:
        16px;

}


.about-points {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        13px;

    margin-top:
        28px;

}


.about-points div {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    font-size:
        13px;

    font-weight:
        700;

}


.about-points i {

    width:
        24px;

    height:
        24px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(245,181,27,.15);

    color:
        var(--yellow-dark);

    font-size:
        11px;

}


.text-btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--dark);

    font-weight:
        800;

    margin-top:
        28px;

    border-bottom:
        2px solid var(--yellow);

    padding-bottom:
        5px;

}


.text-btn i {

    transition:
        var(--transition);

}


.text-btn:hover i {

    transform:
        translateX(-5px);

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background:
        var(--light);

}


.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;

}


.service-card {

    position:
        relative;

    padding:
        32px 25px;

    background:
        var(--white);

    border:
        1px solid var(--border);

    overflow:
        hidden;

    transition:
        var(--transition);

}


.service-card::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    width:
        0;

    height:
        4px;

    background:
        var(--yellow);

    transition:
        var(--transition);

}


.service-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.service-card:hover::before {

    width:
        100%;

}


.service-number {

    position:
        absolute;

    left:
        18px;

    top:
        15px;

    color:
        #e6eaed;

    font-size:
        35px;

    font-weight:
        900;

}


.service-icon {

    width:
        60px;

    height:
        60px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--dark-2);

    color:
        var(--yellow);

    font-size:
        25px;

    margin-bottom:
        22px;

}


.service-card h3 {

    font-size:
        19px;

    margin-bottom:
        10px;

    font-weight:
        900;

}


.service-card p {

    color:
        var(--text-light);

    font-size:
        13px;

}


.service-card a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        22px;

    color:
        var(--dark);

    font-size:
        12px;

    font-weight:
        800;

}


.service-card a i {

    color:
        var(--yellow-dark);

}


/* =========================================================
   EQUIPMENT
========================================================= */

.equipment-section {

    background:
        var(--white);

}


.equipment-header {

    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

    gap:
        40px;

    margin-bottom:
        45px;

}


.equipment-header p {

    max-width:
        400px;

    color:
        var(--text-light);

    font-size:
        14px;

}


.equipment-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

}


.equipment-card {

    background:
        var(--white);

    border:
        1px solid var(--border);

    overflow:
        hidden;

    transition:
        var(--transition);

}


.equipment-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        var(--shadow);

}


.equipment-image {

    position:
        relative;

    height:
        230px;

    overflow:
        hidden;

    background:
        var(--dark);

}


.equipment-image::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.65)
        );

}


.equipment-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .6s ease;

}


.equipment-card:hover .equipment-image img {

    transform:
        scale(1.08);

}


.equipment-image span {

    position:
        absolute;

    z-index:
        2;

    bottom:
        15px;

    right:
        15px;

    background:
        var(--yellow);

    color:
        var(--dark);

    padding:
        5px 10px;

    font-size:
        10px;

    font-weight:
        900;

}


.equipment-info {

    padding:
        20px;

}


.equipment-info h3 {

    font-size:
        20px;

    font-weight:
        900;

}


.equipment-info p {

    color:
        var(--text-light);

    font-size:
        12px;

    margin-top:
        4px;

}


.equipment-info a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    color:
        var(--yellow-dark);

    font-size:
        12px;

    font-weight:
        800;

    margin-top:
        14px;

}


/* =========================================================
   INDUSTRIAL CTA
========================================================= */

.industrial-cta {

    position:
        relative;

    overflow:
        hidden;

    background:
        var(--dark-2);

    color:
        var(--white);

}


.industrial-pattern {

    position:
        absolute;

    inset:
        0;

    opacity:
        .08;

    background-image:

        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 30px,
            var(--yellow) 30px,
            var(--yellow) 33px
        );

}


.industrial-cta-inner {

    position:
        relative;

    z-index:
        2;

    min-height:
        240px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

}


.industrial-cta span {

    color:
        var(--yellow);

    font-size:
        13px;

    font-weight:
        800;

}


.industrial-cta h2 {

    font-size:
        clamp(27px, 4vw, 42px);

    line-height:
        1.35;

    margin-top:
        5px;

}


.industrial-cta h2 strong {

    color:
        var(--yellow);

}


/* =========================================================
   WHY US
========================================================= */

.why-section {

    background:
        var(--light);

}


.why-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        18px;

}


.why-card {

    background:
        var(--white);

    border:
        1px solid var(--border);

    padding:
        30px 22px;

    transition:
        var(--transition);

}


.why-card:hover {

    border-color:
        var(--yellow);

    transform:
        translateY(-5px);

}


.why-icon {

    width:
        55px;

    height:
        55px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--dark-2);

    color:
        var(--yellow);

    font-size:
        22px;

    margin-bottom:
        18px;

}


.why-card h3 {

    font-size:
        17px;

    font-weight:
        900;

}


.why-card p {

    color:
        var(--text-light);

    font-size:
        12px;

    margin-top:
        8px;

}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {

    background:
        var(--white);

}


.projects-heading {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        end;

    gap:
        40px;

    margin-bottom:
        40px;

}


.projects-heading p {

    max-width:
        390px;

    color:
        var(--text-light);

    font-size:
        13px;

}


.gallery-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows:
        220px;

    gap:
        12px;

}


.gallery-item {

    position:
        relative;

    overflow:
        hidden;

    background:
        var(--dark);

}


.gallery-item:nth-child(1) {

    grid-column:
        span 2;

    grid-row:
        span 2;

}


.gallery-item:nth-child(5) {

    grid-column:
        span 2;

}


.gallery-item img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .6s ease;

}


.gallery-item:hover img {

    transform:
        scale(1.08);

}


.gallery-overlay {

    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(7,17,27,.55);

    color:
        var(--yellow);

    font-size:
        28px;

    opacity:
        0;

    transition:
        var(--transition);

}


.gallery-item:hover .gallery-overlay {

    opacity:
        1;

}


.empty-gallery {

    min-height:
        250px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border:
        2px dashed var(--border);

    color:
        var(--text-light);

}


.empty-gallery i {

    font-size:
        45px;

    color:
        var(--yellow);

    margin-bottom:
        10px;

}


/* =========================================================
   QUOTE
========================================================= */

.quote-section {

    background:
        var(--light);

}


.quote-grid {

    display:
        grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap:
        70px;

    align-items:
        center;

}


.quote-content p {

    color:
        var(--text-light);

    margin-top:
        18px;

    max-width:
        520px;

}


.quote-contact {

    display:
        flex;

    flex-direction:
        column;

    gap:
        15px;

    margin-top:
        30px;

}


.quote-contact a {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

}


.quote-contact > a > i {

    width:
        50px;

    height:
        50px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--dark-2);

    color:
        var(--yellow);

    font-size:
        20px;

}


.quote-contact span {

    display:
        flex;

    flex-direction:
        column;

    font-size:
        11px;

    color:
        var(--text-light);

}


.quote-contact strong {

    color:
        var(--dark);

    font-size:
        14px;

}


.quote-form-wrapper {

    background:
        var(--dark-2);

    padding:
        35px;

    box-shadow:
        var(--shadow-dark);

    position:
        relative;

}


.quote-form-wrapper::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    width:
        100%;

    height:
        4px;

    background:
        var(--yellow);

}


.form-title {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    color:
        var(--white);

    margin-bottom:
        25px;

}


.form-title > i {

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--yellow);

    color:
        var(--dark);

    font-size:
        19px;

}


.form-title div {

    display:
        flex;

    flex-direction:
        column;

}


.form-title strong {

    font-size:
        17px;

}


.form-title span {

    color:
        #9ca8b1;

    font-size:
        10px;

}


.form-row {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        15px;

}


.form-group {

    margin-bottom:
        15px;

}


.form-group label {

    display:
        block;

    color:
        #cdd5da;

    font-size:
        11px;

    font-weight:
        700;

    margin-bottom:
        6px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width:
        100%;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.05);

    color:
        var(--white);

    outline:
        none;

    padding:
        12px 14px;

    font-size:
        12px;

    border-radius:
        2px;

    transition:
        var(--transition);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color:
        #7d8a94;

}


.form-group select option {

    color:
        var(--dark);

    background:
        var(--white);

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--yellow);

    background:
        rgba(245,181,27,.04);

}


.form-group textarea {

    resize:
        vertical;

    min-height:
        100px;

}


.form-submit {

    width:
        100%;

    min-height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    background:
        var(--yellow);

    color:
        var(--dark);

    font-size:
        13px;

    font-weight:
        900;

    transition:
        var(--transition);

}


.form-submit:hover {

    background:
        var(--white);

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background:
        var(--dark);

    color:
        var(--white);

    padding:
        90px 0;

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        1fr .8fr;

    gap:
        70px;

    align-items:
        center;

}


.contact-info h2 {

    color:
        var(--white);

}


.contact-info h2 strong {

    color:
        var(--yellow);

}


.contact-info > p {

    color:
        #9eabb5;

    margin-top:
        15px;

    max-width:
        580px;

}


.contact-list {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        15px;

    margin-top:
        30px;

}


.contact-list > a,
.contact-item {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        14px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.06);

}


.contact-icon {

    flex-shrink:
        0;

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--yellow);

    color:
        var(--dark);

}


.contact-list small {

    display:
        block;

    color:
        #87949e;

    font-size:
        9px;

}


.contact-list strong {

    display:
        block;

    color:
        var(--white);

    font-size:
        12px;

}


.contact-panel {

    position:
        relative;

    min-height:
        390px;

    overflow:
        hidden;

    padding:
        50px 40px;

    background:
        linear-gradient(
            135deg,
            var(--red),
            #871b1b
        );

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    box-shadow:
        15px 15px 0 var(--yellow);

}


.contact-panel-pattern {

    position:
        absolute;

    inset:
        0;

    opacity:
        .08;

    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 18px,
            #fff 18px,
            #fff 20px
        );

}


.contact-big-icon {

    position:
        absolute;

    left:
        -20px;

    bottom:
        -30px;

    font-size:
        210px;

    color:
        rgba(255,255,255,.08);

}


.contact-panel > *:not(.contact-panel-pattern) {

    position:
        relative;

    z-index:
        2;

}


.contact-panel span {

    font-size:
        13px;

    color:
        #ffdede;

}


.contact-panel h3 {

    font-size:
        32px;

    line-height:
        1.4;

    margin:
        10px 0 25px;

}


.contact-panel .btn {

    align-self:
        flex-start;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #040b11;

    color:
        #aeb8bf;

}


.footer-main {

    padding:
        65px 0;

    display:
        grid;

    grid-template-columns:
        1.5fr repeat(3, 1fr);

    gap:
        50px;

}


.footer-logo {

    margin-bottom:
        18px;

}


.footer-logo .logo-icon {

    width:
        43px;

    height:
        43px;

    font-size:
        19px;

}


.footer-logo strong {

    display:
        block;

    color:
        var(--white);

    font-size:
        17px;

}


.footer-logo span {

    display:
        block;

    color:
        #788691;

    font-size:
        9px;

}


.footer-about p {

    max-width:
        330px;

    font-size:
        12px;

    line-height:
        2;

}


.footer-social {

    display:
        flex;

    gap:
        8px;

    margin-top:
        20px;

}


.footer-social a {

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(255,255,255,.05);

    color:
        var(--white);

    transition:
        var(--transition);

}


.footer-social a:hover {

    background:
        var(--yellow);

    color:
        var(--dark);

}


.footer-column {

    display:
        flex;

    flex-direction:
        column;

    gap:
        9px;

}


.footer-column h4 {

    color:
        var(--white);

    font-size:
        14px;

    margin-bottom:
        8px;

}


.footer-column a {

    font-size:
        11px;

    transition:
        var(--transition);

}


.footer-column a:hover {

    color:
        var(--yellow);

    padding-right:
        5px;

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.06);

}


.footer-bottom-inner {

    min-height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    font-size:
        10px;

}


.footer-bottom strong {

    color:
        var(--yellow);

}


/* =========================================================
   FLOATING ACTIONS
========================================================= */

.floating-actions {

    position:
        fixed;

    bottom:
        22px;

    left:
        22px;

    z-index:
        900;

    display:
        flex;

    flex-direction:
        column;

    gap:
        9px;

}


.float-whatsapp,
.float-phone {

    width:
        50px;

    height:
        50px;

    border-radius:
        50%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    box-shadow:
        0 8px 25px rgba(0,0,0,.25);

    transition:
        var(--transition);

}


.float-whatsapp {

    background:
        #25d366;

    color:
        white;

}


.float-phone {

    background:
        var(--yellow);

    color:
        var(--dark);

}


.float-whatsapp:hover,
.float-phone:hover {

    transform:
        scale(1.08);

}


.float-whatsapp span {

    position:
        absolute;

    left:
        60px;

    background:
        var(--dark);

    color:
        var(--white);

    padding:
        5px 10px;

    font-size:
        10px;

    white-space:
        nowrap;

    opacity:
        0;

    transform:
        translateX(5px);

    pointer-events:
        none;

    transition:
        var(--transition);

}


.float-whatsapp:hover span {

    opacity:
        1;

    transform:
        translateX(0);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-top {

    position:
        fixed;

    bottom:
        25px;

    right:
        22px;

    width:
        45px;

    height:
        45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--dark-2);

    color:
        var(--yellow);

    border:
        1px solid rgba(255,255,255,.1);

    z-index:
        800;

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(15px);

    transition:
        var(--transition);

}


.back-top.show {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0);

}


.back-top:hover {

    background:
        var(--yellow);

    color:
        var(--dark);

}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {

    position:
        fixed;

    inset:
        0;

    z-index:
        2000;

    background:
        rgba(0,0,0,.93);

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        30px;

    opacity:
        0;

    visibility:
        hidden;

    transition:
        var(--transition);

}


.lightbox.active {

    opacity:
        1;

    visibility:
        visible;

}


.lightbox img {

    max-width:
        90vw;

    max-height:
        85vh;

    object-fit:
        contain;

    box-shadow:
        0 20px 70px rgba(0,0,0,.5);

}


.lightbox-close {

    position:
        absolute;

    top:
        25px;

    left:
        25px;

    width:
        45px;

    height:
        45px;

    border-radius:
        50%;

    background:
        var(--yellow);

    color:
        var(--dark);

    font-size:
        20px;

}


/* =========================================================
   SELECTION
========================================================= */

::selection {

    background:
        var(--yellow);

    color:
        var(--dark);

}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width:
        9px;

}


::-webkit-scrollbar-track {

    background:
        #08111a;

}


::-webkit-scrollbar-thumb {

    background:
        var(--yellow);

}


::-webkit-scrollbar-thumb:hover {

    background:
        var(--yellow-dark);

}


/* =========================================================
   RESPONSIVE
========================================================= */


/* ---------------------------------------------------------
   1100px
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .main-nav {

        gap:
            18px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-main {

        grid-template-columns:
            1.5fr 1fr 1fr;

    }


    .footer-column:last-child {

        display:
            none;

    }

}


/* ---------------------------------------------------------
   900px
--------------------------------------------------------- */

@media (max-width: 900px) {

    .top-right span:last-child {

        display:
            none;

    }


    .main-nav,
    .header-btn {

        display:
            none;

    }


    .menu-toggle {

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

    }


    .header-inner {

        min-height:
            72px;

    }


    .mobile-menu {

        top:
            72px;

        height:
            calc(100vh - 72px);

    }


    .hero {

        min-height:
            650px;

    }


    .about-grid {

        grid-template-columns:
            1fr;

        gap:
            50px;

    }


    .about-image {

        max-width:
            650px;

        margin-inline:
            auto;

        width:
            100%;

    }


    .equipment-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quote-grid {

        grid-template-columns:
            1fr;

        gap:
            45px;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

    }


    .contact-panel {

        max-width:
            650px;

    }


    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-column:last-child {

        display:
            flex;

    }

}


/* ---------------------------------------------------------
   700px
--------------------------------------------------------- */

@media (max-width: 700px) {

    .top-bar {

        display:
            none;

    }


    .hero {

        min-height:
            620px;

    }


    .hero-content {

        padding:
            70px 0;

    }


    .hero h1 {

        font-size:
            39px;

    }


    .hero-description {

        font-size:
            13px;

    }


    .hero-features {

        gap:
            12px;

        flex-direction:
            column;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .stat-card {

        border-bottom:
            1px solid rgba(255,255,255,.07);

    }


    .stat-card:nth-child(2) {

        border-left:
            none;

    }


    .section-padding {

        padding:
            70px 0;

    }


    .equipment-header,
    .projects-heading,
    .industrial-cta-inner {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .equipment-grid {

        grid-template-columns:
            1fr;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows:
            180px;

    }


    .gallery-item:nth-child(1) {

        grid-column:
            span 2;

        grid-row:
            span 2;

    }


    .gallery-item:nth-child(5) {

        grid-column:
            span 1;

    }


    .contact-list {

        grid-template-columns:
            1fr;

    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap:
            35px;

    }


    .footer-about {

        grid-column:
            span 2;

    }


    .footer-bottom-inner {

        flex-direction:
            column;

        justify-content:
            center;

        padding:
            15px 0;

        text-align:
            center;

    }

}


/* ---------------------------------------------------------
   520px
--------------------------------------------------------- */

@media (max-width: 520px) {

    .container {

        width:
            91%;

    }


    .logo-text span {

        display:
            none;

    }


    .logo-text strong {

        font-size:
            15px;

    }


    .logo-icon {

        width:
            42px;

        height:
            42px;

        font-size:
            18px;

    }


    .hero {

        min-height:
            600px;

    }


    .hero h1 {

        font-size:
            34px;

    }


    .hero-subtitle {

        font-size:
            21px;

    }


    .hero-buttons {

        flex-direction:
            column;

        width:
            100%;

    }


    .hero-buttons .btn {

        width:
            100%;

    }


    .stats-grid {

        grid-template-columns:
            1fr;

    }


    .stat-card {

        border-left:
            none;

        min-height:
            90px;

    }


    .about-points {

        grid-template-columns:
            1fr;

    }


    .image-frame img {

        height:
            350px;

    }


    .experience-box {

        min-width:
            125px;

        padding:
            12px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .why-grid {

        grid-template-columns:
            1fr;

    }


    .gallery-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows:
            220px;

    }


    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {

        grid-column:
            span 1;

    }


    .gallery-item:nth-child(1) {

        grid-row:
            span 1;

    }


    .quote-form-wrapper {

        padding:
            25px 18px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap:
            0;

    }


    .contact-panel {

        padding:
            40px 25px;

        min-height:
            340px;

    }


    .contact-panel h3 {

        font-size:
            27px;

    }


    .footer-main {

        grid-template-columns:
            1fr;

    }


    .footer-about {

        grid-column:
            auto;

    }


    .floating-actions {

        left:
            15px;

        bottom:
            15px;

    }


    .back-top {

        right:
            15px;

        bottom:
            15px;

    }

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeUp {

    from {

        opacity:
            0;

        transform:
            translateY(25px);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0);

    }

}


.hero-content > * {

    animation:
        fadeUp .8s ease both;

}


.hero-content .hero-subtitle {

    animation-delay:
        .1s;

}


.hero-content .hero-description {

    animation-delay:
        .2s;

}


.hero-content .hero-buttons {

    animation-delay:
        .3s;

}


.hero-content .hero-features {

    animation-delay:
        .4s;

}