@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
    --black:#030303;
    --dark:#0b0b0d;
    --dark-2:#111114;
    --white:#ffffff;
    --muted:#b6b6b6;
    --line:rgba(255,255,255,.12);
    --red:#e50914;
    --red-2:#ff2b35;
    --gradient:linear-gradient(135deg,#e50914 0%,#ff424b 100%);
}

*{box-sizing:border-box}
body{
    margin:0;
    font-family:'Inter',Arial,sans-serif;
    background:var(--black);
    color:var(--white);
}
a{text-decoration:none;transition:.3s ease}
img{max-width:100%;display:block}
p{color:var(--muted);line-height:1.75}

.section-spacing{padding:60px 0}
.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--red-2);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.8px;
    margin-bottom:16px;
}
.section-kicker:before{
    content:"";
    width:28px;
    height:2px;
    background:var(--gradient);
}
.section-title{
    font-size:clamp(34px,4vw,58px);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-1.5px;
    margin-bottom:22px;
}
.section-desc{
    max-width:720px;
    font-size:17px;
}
.btn-main{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--gradient);
    color:#fff;
    padding:15px 28px;
    border-radius:999px;
    font-weight:800;
    box-shadow:0 18px 45px rgba(229,9,20,.28);
}
.btn-main:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 24px 60px rgba(229,9,20,.4);
}
.btn-outline-futemax{
    display:inline-flex;
    color:#fff;
    border:1px solid var(--line);
    padding:14px 25px;
    border-radius:999px;
    font-weight:700;
}
.btn-outline-futemax:hover{
    border-color:var(--red);
    background:rgba(229,9,20,.12);
    color:#fff;
}

.topbar{
    background:#050505;
    border-bottom:1px solid var(--line);
    font-size:13px;
}
.topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
    gap:20px;
}
.topbar p{margin:0;color:#d7d7d7}
.topbar-links{display:flex;gap:18px}
.topbar-links a{color:#d7d7d7}
.topbar-links a:hover{color:var(--red-2)}

.site-header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}
.futemax-navbar{
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
    padding:16px 0;
}
.navbar-brand img{
    height:45px;
    width:auto;
}
.navbar-toggler{
    border:1px solid var(--line);
    color:#fff;
    box-shadow:none!important;
}
.navbar-toggler i{font-size:28px}
.navbar-nav .nav-link{
    color:#fff;
    font-size:15px;
    font-weight:700;
    padding:10px 16px!important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{color:var(--red-2)}
.nav-btn{
    background:var(--red);
    border-radius:999px;
    margin-left:10px;
    padding:10px 22px!important;
}
.nav-btn:hover{background:#fff;color:#000!important}

.hero-section{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:120px;
}
.hero-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(120deg,rgba(0,0,0,.1),rgba(0,0,0,.1)),
        url('https://images.unsplash.com/photo-1530124566582-a618bc2615dc?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    transform:scale(1.03);
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 78% 35%,rgba(229,9,20,.35),transparent 28%),
        linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.78) 42%,rgba(0,0,0,.35) 100%);
}
.hero-section:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:160px;
    background:linear-gradient(0deg,#030303,transparent);
}
.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
}
.hero-content h1{
    font-size:clamp(46px,6vw,84px);
    line-height:.98;
    font-weight:800;
    letter-spacing:-3px;
    margin-bottom:26px;
}
.hero-content p{
    font-size:19px;
    max-width:650px;
    margin-bottom:34px;
    color:#e4e4e4;
}

.intro-strip{
    position:relative;
    z-index:3;
    margin-top:-70px;
}
.stat-card{
    height:100%;
    padding:28px;
    background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
    border:1px solid var(--line);
    border-radius:24px;
    backdrop-filter:blur(12px);
}
.stat-card span{
    color:var(--red-2);
    font-weight:800;
    font-size:13px;
}
.stat-card h3{
    font-size:20px;
    margin:14px 0 8px;
}
.stat-card p{
    margin:0;
    font-size:14px;
}

.about-preview{background:var(--black)}
.image-frame{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    border:1px solid var(--line);
}
.image-frame img{
    height:560px;
    width:100%;
    object-fit:cover;
}
.image-frame:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.55),transparent 55%);
}
.image-badge{
    position:absolute;
    left:28px;
    bottom:28px;
    z-index:2;
    background:rgba(0,0,0,.75);
    border:1px solid var(--line);
    border-left:4px solid var(--red);
    padding:18px 22px;
    border-radius:18px;
}
.image-badge strong{display:block;font-size:22px}
.image-badge span{color:var(--muted);font-size:14px}
.tick-list{
    display:grid;
    gap:14px;
    margin:28px 0;
}
.tick-list div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#e9e9e9;
    font-weight:600;
}
.tick-list i{color:var(--red-2);font-size:22px}

.services-section{
    background:
        radial-gradient(circle at 15% 20%,rgba(229,9,20,.18),transparent 28%),
        var(--dark);
}
.section-head{margin-bottom:50px}
.service-card{
    height:100%;
    background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
    border:1px solid var(--line);
    border-radius:28px;
    padding:34px;
    transition:.35s ease;
}
.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(229,9,20,.55);
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.service-card>i{
    width:60px;
    height:60px;
    display:grid;
    place-items:center;
    background:rgba(229,9,20,.12);
    color:var(--red-2);
    border-radius:18px;
    font-size:32px;
    margin-bottom:26px;
}
.service-card h3{
    font-size:23px;
    margin-bottom:14px;
}
.service-card a{
    display:inline-flex;
    gap:8px;
    align-items:center;
    color:#fff;
    font-weight:800;
}
.service-card a:hover{color:var(--red-2)}
.highlight-card{
    background:linear-gradient(135deg,rgba(229,9,20,.3),rgba(255,255,255,.05));
    border-color:rgba(229,9,20,.55);
}

.process-section{
    background:#050505;
}
.process-list{
    display:grid;
    gap:18px;
}
.process-item{
    display:flex;
    gap:24px;
    background:rgba(255,255,255,.055);
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
}
.process-item span{
    flex:0 0 54px;
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    background:var(--gradient);
    border-radius:50%;
    font-weight:800;
}
.process-item h3{
    margin-bottom:8px;
    font-size:22px;
}
.process-item p{margin:0}

.industry-section{
    background:
        linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
        var(--black);
}
.industry-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
    margin-top:40px;
}
.industry-box{
    min-height:180px;
    border:1px solid var(--line);
    border-radius:26px;
    padding:28px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:18px;
    text-align:center;
    background:rgba(255,255,255,.045);
}
.industry-box i{
    color:var(--red-2);
    font-size:42px;
}
.industry-box span{
    font-weight:800;
}

.gallery-preview{
    background:var(--dark);
}
.gallerySwiper .swiper-slide{
    height:420px;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--line);
}
.gallerySwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cta-section{
    padding:90px 0;
    background:#050505;
}
.cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    padding:55px;
    border-radius:34px;
    background:
        radial-gradient(circle at right,rgba(229,9,20,.38),transparent 32%),
        linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.03));
    border:1px solid var(--line);
}
.cta-box h2{
    font-size:clamp(32px,4vw,52px);
    font-weight:800;
    max-width:850px;
    letter-spacing:-1px;
}
.cta-box p{margin-bottom:0}

.site-footer{
    background:#000;
    border-top:1px solid var(--line);
    padding:80px 0 30px;
}
.footer-logo{
    width:230px;
    margin-bottom:24px;
}
.site-footer h4{
    font-size:17px;
    margin-bottom:22px;
}
.site-footer ul{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:12px;
    color:var(--muted);
}
.site-footer a{color:var(--muted)}
.site-footer a:hover{color:var(--red-2)}
.reg-no{
    font-size:13px;
    color:#888;
}
.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}
.footer-social a{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:22px;
}
.footer-social a:hover{
    background:var(--red);
    color:#fff;
}
.footer-bottom{
    border-top:1px solid var(--line);
    margin-top:50px;
    padding-top:24px;
    display:flex;
    justify-content:space-between;
    color:#777;
    font-size:13px;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    z-index:99;
    font-size:30px;
    box-shadow:0 18px 40px rgba(0,0,0,.3);
}
.whatsapp-float:hover{color:#fff;transform:translateY(-4px)}

@media(max-width:991px){
    .site-header{position:absolute}
    .topbar{display:none}
    .futemax-navbar{background:#000}
    .navbar-collapse{
        padding:18px 0;
        border-top:1px solid var(--line);
        margin-top:14px;
    }
    .nav-btn{margin-left:0;margin-top:8px;text-align:center}
    .hero-section{padding-top:100px;min-height:850px}
    .intro-strip{margin-top:0;padding-top:40px}
    .section-spacing{padding:40px 0}
    .image-frame img{height:420px}
    .industry-grid{grid-template-columns:repeat(2,1fr)}
    .cta-box{flex-direction:column;align-items:flex-start;padding:34px}
}

@media(max-width:575px){
    .navbar-brand img{height:34px}
    .hero-content h1{letter-spacing:-1.5px}
    .hero-content p{font-size:16px}
    .stat-card{padding:22px}
    .service-card{padding:26px}
    .process-item{flex-direction:column}
    .industry-grid{grid-template-columns:1fr}
    .gallerySwiper .swiper-slide{height:300px}
    .footer-bottom{flex-direction:column;gap:10px}
}


/* ==============================
   Inner Page Shared Styling
================================= */
.inner-hero{
    min-height:72vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:140px;
}
.inner-hero-bg{
    position:absolute;
    inset:0;
    background:center/cover no-repeat;
    transform:scale(1.03);
}
.about-hero .inner-hero-bg{
    background-image:url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?q=80&w=1800&auto=format&fit=crop');
}
.inner-hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 75% 35%,rgba(229,9,20,.32),transparent 30%),
        linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.78) 48%,rgba(0,0,0,.45) 100%);
}
.inner-hero:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:150px;
    background:linear-gradient(0deg,#030303,transparent);
}
.inner-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}
.inner-hero-content h1{
    font-size:clamp(44px,5.8vw,78px);
    line-height:1;
    font-weight:800;
    letter-spacing:-2.8px;
    margin-bottom:24px;
}
.inner-hero-content p{
    font-size:19px;
    color:#e2e2e2;
    max-width:760px;
}

/* ==============================
   About Page
================================= */
.about-story{
    background:var(--black);
}
.about-highlight{
    margin-top:30px;
    padding:24px 28px;
    border-radius:22px;
    border:1px solid rgba(229,9,20,.42);
    background:linear-gradient(135deg,rgba(229,9,20,.18),rgba(255,255,255,.04));
}
.about-highlight strong{
    display:block;
    margin-bottom:8px;
    color:#fff;
}
.about-highlight span{
    color:var(--red-2);
    font-weight:800;
    letter-spacing:.5px;
}
.about-image-stack{
    position:relative;
}
.about-image-stack .main-img{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:34px;
    border:1px solid var(--line);
}
.about-image-stack:before{
    content:"";
    position:absolute;
    width:70%;
    height:70%;
    right:-18px;
    bottom:-18px;
    border-radius:34px;
    background:rgba(229,9,20,.16);
    z-index:-1;
}
.floating-card{
    position:absolute;
    left:28px;
    bottom:28px;
    display:flex;
    align-items:center;
    gap:16px;
    padding:20px 22px;
    border-radius:20px;
    background:rgba(0,0,0,.78);
    border:1px solid var(--line);
    backdrop-filter:blur(12px);
}
.floating-card i{
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--gradient);
    font-size:30px;
}
.floating-card strong{
    display:block;
    font-size:17px;
}
.floating-card span{
    display:block;
    color:var(--muted);
    font-size:13px;
}
.vision-section{
    background:
        radial-gradient(circle at 50% 0%,rgba(229,9,20,.18),transparent 32%),
        var(--dark);
}
.vision-card{
    height:100%;
    padding:38px;
    border-radius:28px;
    border:1px solid var(--line);
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
}
.vision-card.featured{
    border-color:rgba(229,9,20,.5);
    background:linear-gradient(135deg,rgba(229,9,20,.24),rgba(255,255,255,.04));
}
.vision-card i{
    width:62px;
    height:62px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(229,9,20,.13);
    color:var(--red-2);
    font-size:34px;
    margin-bottom:26px;
}
.vision-card h3{
    font-size:25px;
    margin-bottom:14px;
}
.vision-card p{
    margin:0;
}
.expertise-section{
    background:#050505;
}
.expertise-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.expertise-item{
    min-height:300px;
    padding:30px;
    border-radius:28px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.045);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    transition:.35s ease;
}
.expertise-item:hover{
    transform:translateY(-8px);
    border-color:rgba(229,9,20,.55);
}
.expertise-item span{
    color:var(--red-2);
    font-weight:800;
    margin-bottom:auto;
}
.expertise-item h3{
    font-size:23px;
    margin-bottom:14px;
}
.expertise-item p{
    margin:0;
    font-size:15px;
}
.value-section{
    background:
        linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,0)),
        var(--black);
}
.value-list{
    display:grid;
    gap:18px;
}
.value-item{
    display:flex;
    gap:20px;
    padding:26px;
    border-radius:24px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.045);
}
.value-item i{
    flex:0 0 44px;
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--gradient);
    font-size:22px;
    font-weight:700;
}
.value-item h3{
    font-size:21px;
    margin-bottom:6px;
}
.value-item p{
    margin:0;
}

@media(max-width:991px){
    .inner-hero{
        min-height:650px;
        padding-top:110px;
    }
    .about-image-stack .main-img{
        height:430px;
    }
    .expertise-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:575px){
    .inner-hero-content h1{
        letter-spacing:-1.5px;
    }
    .inner-hero-content p{
        font-size:16px;
    }
    .floating-card{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:-70px;
        margin-left:18px;
        margin-right:18px;
    }
    .expertise-grid{
        grid-template-columns:1fr;
    }
    .value-item{
        flex-direction:column;
    }
}

/* ==============================
   Services Page
================================= */
.services-hero .inner-hero-bg{
    background-image:url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?auto=format&fit=crop&w=1800&q=80');
}
.service-intro{background:var(--black)}
.service-intro-panel{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.service-intro-panel div{min-height:260px;padding:30px;border-radius:26px;border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025))}
.service-intro-panel i{width:58px;height:58px;display:grid;place-items:center;border-radius:18px;background:rgba(229,9,20,.13);color:var(--red-2);font-size:32px;margin-bottom:24px}
.service-intro-panel h3{font-size:21px;margin-bottom:12px}.service-intro-panel p{margin:0;font-size:15px}
.service-detail-section{background:radial-gradient(circle at 80% 12%,rgba(229,9,20,.16),transparent 28%),var(--dark)}
.service-detail-card{position:relative;display:grid;grid-template-columns:120px 170px 1fr;gap:34px;align-items:center;padding:42px;margin-bottom:24px;border-radius:34px;border:1px solid var(--line);background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025));overflow:hidden}
.service-detail-card:before{content:"";position:absolute;width:260px;height:260px;right:-120px;top:-120px;border-radius:50%;background:rgba(229,9,20,.16)}
.service-detail-card.premium-card{border-color:rgba(229,9,20,.55);background:linear-gradient(135deg,rgba(229,9,20,.24),rgba(255,255,255,.04))}
.service-no{position:relative;z-index:1;color:rgba(255,255,255,.2);font-size:58px;font-weight:800;letter-spacing:-2px}
.service-icon{position:relative;z-index:1;width:150px;height:150px;display:grid;place-items:center;border-radius:32px;background:#080808;border:1px solid var(--line)}
.service-icon i{font-size:68px;color:var(--red-2)}
.service-copy{position:relative;z-index:1}.service-copy span{display:block;color:var(--red-2);font-size:13px;text-transform:uppercase;letter-spacing:1.5px;font-weight:800;margin-bottom:10px}
.service-copy h2{font-size:clamp(28px,3.2vw,44px);line-height:1.1;font-weight:800;letter-spacing:-1px;margin-bottom:14px}.service-copy p{max-width:880px;margin-bottom:20px}
.service-copy ul{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(2,1fr);gap:12px 18px}.service-copy li{position:relative;color:#e8e8e8;font-weight:600;padding-left:24px}.service-copy li:before{content:"";position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:50%;background:var(--red-2)}
.service-process-section{background:#050505}.work-card{height:100%;padding:32px;border-radius:28px;border:1px solid var(--line);background:rgba(255,255,255,.045)}.work-card span{width:54px;height:54px;display:grid;place-items:center;border-radius:50%;background:var(--gradient);font-weight:800;margin-bottom:28px}.work-card h3{font-size:22px;margin-bottom:12px}.work-card p{margin:0;font-size:15px}
.seo-service-section{background:var(--black);padding-top:0}.seo-service-box{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;padding:48px;border-radius:32px;border:1px solid rgba(229,9,20,.4);background:radial-gradient(circle at 0% 0%,rgba(229,9,20,.2),transparent 34%),linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.025))}.seo-service-box h2{font-size:clamp(30px,4vw,52px);font-weight:800;letter-spacing:-1.5px;line-height:1.08}.seo-service-box p{margin:0;font-size:17px}
@media(max-width:991px){.service-intro-panel{grid-template-columns:1fr}.service-intro-panel div{min-height:auto}.service-detail-card{grid-template-columns:1fr;gap:22px}.service-no{font-size:42px}.service-icon{width:110px;height:110px;border-radius:24px}.service-icon i{font-size:52px}.seo-service-box{grid-template-columns:1fr;gap:22px;padding:34px}}
@media(max-width:575px){.service-copy ul{grid-template-columns:1fr}.service-detail-card{padding:28px;border-radius:26px}}


/* ==============================
   Gallery Page
================================= */
.gallery-hero .inner-hero-bg{
    background-image:url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?q=80&w=1800&auto=format&fit=crop');
}
.gallery-intro{
    background:var(--black);
    padding-bottom:50px;
}
.gallery-note{
    display:flex;
    gap:18px;
    padding:28px;
    border-radius:26px;
    border:1px solid rgba(229,9,20,.38);
    background:linear-gradient(135deg,rgba(229,9,20,.16),rgba(255,255,255,.035));
}
.gallery-note i{
    flex:0 0 54px;
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:var(--gradient);
    font-size:30px;
}
.gallery-note p{
    margin:0;
    font-size:15px;
}
.gallery-filter-section{
    background:var(--black);
    padding-bottom:30px;
}
.gallery-filter{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.gallery-filter button{
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    color:#fff;
    padding:12px 22px;
    border-radius:999px;
    font-weight:700;
    transition:.3s ease;
}
.gallery-filter button:hover,
.gallery-filter button.active{
    border-color:var(--red);
    background:var(--gradient);
}
.gallery-grid-section{
    background:
        radial-gradient(circle at 80% 10%,rgba(229,9,20,.14),transparent 30%),
        var(--dark);
    padding-top:60px;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:18px;
}
.gallery-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:26px;
    border:1px solid var(--line);
    background:#111;
}
.gallery-card.large{
    grid-column:span 2;
}
.gallery-card.tall{
    grid-row:span 2;
}
.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.55s ease;
}
.gallery-card:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(0deg,rgba(0,0,0,.82),rgba(0,0,0,.08) 62%);
    opacity:.92;
    transition:.35s ease;
}
.gallery-caption{
    position:absolute;
    left:24px;
    right:24px;
    bottom:22px;
    z-index:2;
    transform:translateY(8px);
    transition:.35s ease;
}
.gallery-caption span{
    display:inline-flex;
    color:#fff;
    background:rgba(229,9,20,.9);
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.gallery-caption h3{
    color:#fff;
    font-size:22px;
    font-weight:800;
    margin:0;
}
.gallery-card:hover img{
    transform:scale(1.08);
}
.gallery-card:hover .gallery-caption{
    transform:translateY(0);
}
.gallery-card:hover:after{
    opacity:1;
}
.gallery-card.is-hidden{
    display:none;
}
.gallery-quality-section{
    background:#050505;
}
.quality-card{
    height:100%;
    padding:36px;
    border-radius:28px;
    border:1px solid var(--line);
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
}
.quality-card.featured{
    border-color:rgba(229,9,20,.55);
    background:linear-gradient(135deg,rgba(229,9,20,.22),rgba(255,255,255,.04));
}
.quality-card i{
    width:62px;
    height:62px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(229,9,20,.13);
    color:var(--red-2);
    font-size:34px;
    margin-bottom:26px;
}
.quality-card h3{
    font-size:24px;
    margin-bottom:14px;
}
.quality-card p{
    margin:0;
}

@media(max-width:1199px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:240px;
    }
    .gallery-card.large{
        grid-column:span 2;
    }
}
@media(max-width:575px){
    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:250px;
    }
    .gallery-card.large,
    .gallery-card.tall{
        grid-column:span 1;
        grid-row:span 1;
    }
    .gallery-filter button{
        width:100%;
    }
}


/* ==============================
   Contact Page
================================= */
.contact-hero .inner-hero-bg{
    background-image:url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80');
}
.contact-main-section{
    background:
        radial-gradient(circle at 80% 12%,rgba(229,9,20,.14),transparent 30%),
        var(--black);
}
.contact-info-list{
    display:grid;
    gap:16px;
    margin-top:34px;
}
.contact-info-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:24px;
    border-radius:24px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.045);
    color:#fff;
}
.contact-info-card:hover{
    border-color:rgba(229,9,20,.55);
    color:#fff;
    transform:translateY(-4px);
}
.contact-info-card i{
    flex:0 0 52px;
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:rgba(229,9,20,.13);
    color:var(--red-2);
    font-size:28px;
}
.contact-info-card span{
    display:block;
    color:var(--muted);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:6px;
}
.contact-info-card strong{
    display:block;
    color:#fff;
    line-height:1.5;
}
.contact-social-box{
    margin-top:26px;
    padding:26px;
    border-radius:24px;
    border:1px solid rgba(229,9,20,.38);
    background:linear-gradient(135deg,rgba(229,9,20,.15),rgba(255,255,255,.035));
}
.contact-social-box h3{
    font-size:20px;
    margin-bottom:18px;
}
.contact-form-card{
    padding:42px;
    border-radius:34px;
    border:1px solid var(--line);
    background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
    box-shadow:0 30px 100px rgba(0,0,0,.25);
}
.form-head{
    margin-bottom:30px;
}
.form-head span{
    display:inline-flex;
    color:var(--red-2);
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-size:13px;
    font-weight:800;
    margin-bottom:12px;
}
.form-head h3{
    font-size:clamp(28px,3vw,42px);
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:12px;
}
.form-head p{
    margin:0;
}
.contact-form-card label{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:9px;
}
.contact-form-card .form-control,
.contact-form-card .form-select{
    min-height:54px;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(0,0,0,.35);
    color:#fff;
    padding:14px 16px;
    box-shadow:none;
}
.contact-form-card textarea.form-control{
    min-height:150px;
}
.contact-form-card .form-control::placeholder{
    color:#777;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus{
    border-color:var(--red);
    background:rgba(0,0,0,.55);
}
.contact-form-card .form-select option{
    background:#111;
    color:#fff;
}
.map-section{
    background:var(--dark);
    padding:0 0 110px;
}
.map-box{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    border:1px solid var(--line);
    min-height:520px;
}
.map-box iframe{
    display:block;
}
.map-overlay-card{
    position:absolute;
    left:34px;
    top:34px;
    z-index:2;
    width:min(430px,calc(100% - 68px));
    padding:30px;
    border-radius:26px;
    border:1px solid var(--line);
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(14px);
}
.map-overlay-card h2{
    font-size:32px;
    font-weight:800;
    letter-spacing:-.8px;
    margin-bottom:12px;
}
.map-overlay-card p{
    margin-bottom:22px;
}
.contact-service-section{
    background:#050505;
}
.contact-service-card{
    height:100%;
    padding:34px;
    border-radius:28px;
    border:1px solid var(--line);
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
}
.contact-service-card i{
    width:62px;
    height:62px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:rgba(229,9,20,.13);
    color:var(--red-2);
    font-size:34px;
    margin-bottom:26px;
}
.contact-service-card h3{
    font-size:23px;
    margin-bottom:12px;
}
.contact-service-card p{
    margin:0;
}

@media(max-width:991px){
    .contact-form-card{
        padding:30px;
    }
    .map-section{
        padding-bottom:80px;
    }
    .map-overlay-card{
        position:relative;
        left:auto;
        top:auto;
        width:100%;
        border-radius:0;
    }
    .map-box{
        border-radius:26px;
    }
}

@media(max-width:575px){
    .contact-info-card{
        flex-direction:column;
    }
    .contact-form-card{
        padding:24px;
        border-radius:26px;
    }
}
