/* ================================================================
   FTIL — Fredluck Mine Trade & Investment Limited
   styles.css — Complete Stylesheet
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --red:       #c0392b;
  --red-dark:  #96281b;
  --red-light: #e74c3c;
  --black:     #0d0d0d;
  --dark:      #1a1a1a;
  --dark-2:    #2a2a2a;
  --gray:      #555;
  --gray-lt:   #888;
  --border:    #e0e0e0;
  --white:     #ffffff;
  --off:       #f8f6f3;
  --font-h:    'Playfair Display', Georgia, serif;
  --font-b:    'DM Sans', sans-serif;
  --r:         10px;
  --r-lg:      18px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --hh:        72px;   /* header height */
  --bnh:       62px;   /* bottom nav height */
  --ease:      .35s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:var(--font-b);color:var(--dark);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden;padding-top:var(--hh);padding-bottom:var(--bnh);}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{cursor:pointer;border:none;background:none;font-family:var(--font-b);}
input,select,textarea{font-family:var(--font-b);}

.container{width:100%;max-width:1200px;margin:0 auto;padding:0 24px;}

/* ── ANIMATIONS ── */
@keyframes slideUp    {from{opacity:0;transform:translateY(48px)}to{opacity:1;transform:translateY(0)}}
@keyframes slideDown  {from{opacity:0;transform:translateY(-48px)}to{opacity:1;transform:translateY(0)}}
@keyframes slideLeft  {from{opacity:0;transform:translateX(60px)}to{opacity:1;transform:translateX(0)}}
@keyframes slideRight {from{opacity:0;transform:translateX(-60px)}to{opacity:1;transform:translateX(0)}}
@keyframes fadeScale  {from{opacity:0;transform:scale(.92)}to{opacity:1;transform:scale(1)}}
@keyframes fadeIn     {from{opacity:0}to{opacity:1}}
@keyframes float      {0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes heroIn     {from{opacity:0;transform:translateY(32px) skewY(2deg)}to{opacity:1;transform:translateY(0) skewY(0)}}
@keyframes shimmer    {0%{background-position:-400px 0}100%{background-position:400px 0}}
@keyframes pulse      {0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}

.reveal       {opacity:0;transform:translateY(48px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-left  {opacity:0;transform:translateX(-60px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal-left.visible{opacity:1;transform:translateX(0);}
.reveal-right {opacity:0;transform:translateX(60px);transition:opacity .7s var(--ease),transform .7s var(--ease);}
.reveal-right.visible{opacity:1;transform:translateX(0);}
.reveal-scale {opacity:0;transform:scale(.92);transition:opacity .6s var(--ease),transform .6s var(--ease);}
.reveal-scale.visible{opacity:1;transform:scale(1);}
.delay-1{transition-delay:.1s!important}
.delay-2{transition-delay:.2s!important}
.delay-3{transition-delay:.3s!important}
.delay-4{transition-delay:.4s!important}
.delay-5{transition-delay:.5s!important}
.delay-6{transition-delay:.6s!important}

/* ── HEADER ── */
.site-header{position:fixed;top:0;left:0;right:0;z-index:1000;height:var(--hh);background:var(--white);border-bottom:1px solid rgba(0,0,0,.08);box-shadow:0 2px 20px rgba(0,0,0,.07);transition:box-shadow var(--ease);}
.site-header.scrolled{box-shadow:0 4px 32px rgba(0,0,0,.13);}
.header-inner{max-width:1200px;margin:0 auto;padding:0 24px;height:100%;display:flex;align-items:center;justify-content:space-between;}
.header-logo img{height:52px;width:auto;object-fit:contain;transition:opacity var(--ease);}
.header-logo:hover img{opacity:.85;}
.header-nav{display:flex;align-items:center;gap:32px;}
.header-nav a{font-size:.9rem;font-weight:500;color:var(--dark);position:relative;padding-bottom:4px;transition:color var(--ease);}
.header-nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--red);transition:width var(--ease);}
.header-nav a:hover,.header-nav a.active{color:var(--red);}
.header-nav a:hover::after,.header-nav a.active::after{width:100%;}
.nav-cta{background:var(--red);color:var(--white)!important;padding:10px 22px!important;border-radius:6px;transition:background var(--ease),transform var(--ease)!important;}
.nav-cta::after{display:none!important;}
.nav-cta:hover{background:var(--red-dark)!important;transform:translateY(-2px);}
.hamburger{display:none;flex-direction:column;gap:5px;width:38px;height:38px;padding:7px;border-radius:8px;transition:background var(--ease);}
.hamburger:hover{background:var(--off);}
.hamburger span{display:block;width:100%;height:2.5px;background:var(--dark);border-radius:2px;transition:transform .3s,opacity .3s,width .3s;}
.hamburger.open span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;width:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}

/* ── DRAWER ── */
.drawer-overlay{display:none;position:fixed;inset:0;z-index:1001;background:rgba(0,0,0,.5);backdrop-filter:blur(4px);}
.drawer-overlay.open{display:block;animation:fadeIn .25s;}
.mobile-drawer{position:fixed;top:0;right:0;bottom:0;z-index:1002;width:min(320px,85vw);background:var(--white);box-shadow:-8px 0 48px rgba(0,0,0,.2);padding:24px;display:flex;flex-direction:column;gap:20px;transform:translateX(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);}
.mobile-drawer.open{transform:translateX(0);}
.drawer-close{align-self:flex-end;width:36px;height:36px;border-radius:50%;background:var(--off);color:var(--dark);font-size:1rem;display:flex;align-items:center;justify-content:center;transition:background var(--ease);}
.drawer-close:hover{background:var(--red);color:var(--white);}
.drawer-logo img{height:50px;width:auto;}
.drawer-nav{display:flex;flex-direction:column;gap:4px;flex:1;}
.drawer-nav a{display:flex;align-items:center;gap:14px;padding:14px 16px;border-radius:var(--r);font-size:1rem;font-weight:500;color:var(--dark);transition:background var(--ease),color var(--ease);}
.drawer-nav a:hover,.drawer-nav a.active{background:var(--red);color:var(--white);}
.drawer-nav a i{width:18px;text-align:center;}
.drawer-footer-brand{border-top:1px solid var(--border);padding-top:16px;font-size:.78rem;color:var(--gray-lt);line-height:1.6;}

/* ── MOBILE BOTTOM NAV ── */
.mobile-bottom-nav{display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;height:var(--bnh);background:var(--white);border-top:1px solid var(--border);box-shadow:0 -4px 20px rgba(0,0,0,.10);padding-bottom:env(safe-area-inset-bottom);}
.mobile-bottom-nav a{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;font-size:.68rem;font-weight:500;color:var(--gray-lt);transition:color var(--ease);padding:8px 4px;position:relative;}
.mobile-bottom-nav a::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:0;height:3px;background:var(--red);border-radius:0 0 4px 4px;transition:width var(--ease);}
.mobile-bottom-nav a i{font-size:1.1rem;}
.mobile-bottom-nav a.active{color:var(--red);}
.mobile-bottom-nav a.active::before{width:40%;}

/* ── IMAGE SLOTS ── */
.img-slot{width:100%;height:100%;background:linear-gradient(135deg,#1a1a1a 0%,#2a2a2a 100%);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;color:rgba(255,255,255,.25);font-size:.7rem;text-align:center;padding:12px;position:relative;overflow:hidden;}
.img-slot i{font-size:2.5rem;opacity:.3;}
.img-slot-label{font-size:.62rem;opacity:.5;font-family:monospace;word-break:break-all;max-width:140px;line-height:1.4;}
.img-slot::before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,transparent,rgba(255,255,255,.04),transparent);background-size:400px 100%;animation:shimmer 2.5s infinite linear;}
.img-slot img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}

/* ── SECTIONS ── */
.section{padding:90px 0;}
.section-sm{padding:60px 0;}
.section-dark{background:var(--dark);color:var(--white);}
.section-off{background:var(--off);}
.section-label{display:inline-flex;align-items:center;gap:10px;font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--red);margin-bottom:14px;}
.section-label::before{content:'';width:32px;height:2px;background:var(--red);border-radius:2px;}
h2.section-title{font-family:var(--font-h);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:700;line-height:1.15;color:var(--dark);margin-bottom:16px;}
.section-dark h2.section-title{color:var(--white);}
.section-desc{font-size:1.05rem;color:var(--gray);max-width:580px;line-height:1.75;}
.section-dark .section-desc{color:rgba(255,255,255,.65);}

.btn{display:inline-flex;align-items:center;gap:10px;padding:14px 30px;border-radius:8px;font-size:.9rem;font-weight:600;letter-spacing:.03em;transition:transform .25s,box-shadow .25s,background .25s;cursor:pointer;}
.btn-red{background:var(--red);color:var(--white);}
.btn-red:hover{background:var(--red-dark);transform:translateY(-3px);box-shadow:0 8px 24px rgba(192,57,43,.35);}
.btn-outline{border:2px solid var(--red);color:var(--red);}
.btn-outline:hover{background:var(--red);color:var(--white);transform:translateY(-3px);}
.btn-white{background:var(--white);color:var(--red);}
.btn-white:hover{background:var(--off);transform:translateY(-3px);}

/* ── HERO ── */
.hero{min-height:calc(100dvh - var(--hh));position:relative;overflow:hidden;display:flex;align-items:center;background:var(--dark);}
.hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,#0d0d0d 0%,#1a1a1a 40%,#2a0a09 100%);}
.hero-bg-img{position:absolute;inset:0;}
.hero-bg-img .img-slot{height:100%;background:none;}
.hero-bg-img img{object-fit:cover;opacity:.35;}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(13,13,13,.9) 0%,rgba(192,57,43,.3) 100%);}
.hero-pattern{position:absolute;inset:0;opacity:.04;background-image:radial-gradient(circle,#fff 1px,transparent 1px);background-size:32px 32px;}
.hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:60px 24px;width:100%;}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(192,57,43,.2);border:1px solid rgba(192,57,43,.4);color:#e77;padding:6px 16px;border-radius:100px;font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;margin-bottom:24px;animation:heroIn .8s .2s both;}
.hero-title{font-family:var(--font-h);font-size:clamp(2.2rem,6vw,5rem);font-weight:900;line-height:1.08;color:var(--white);margin-bottom:24px;animation:heroIn .8s .4s both;}
.hero-title .accent{color:var(--red-light);}
.hero-subtitle{font-size:clamp(.95rem,2vw,1.15rem);color:rgba(255,255,255,.7);max-width:540px;line-height:1.75;margin-bottom:40px;animation:heroIn .8s .6s both;}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;animation:heroIn .8s .8s both;}
.hero-stats{display:flex;gap:40px;flex-wrap:wrap;margin-top:60px;padding-top:40px;border-top:1px solid rgba(255,255,255,.1);animation:heroIn .8s 1s both;}
.stat-item{display:flex;flex-direction:column;gap:4px;}
.stat-number{font-family:var(--font-h);font-size:2.4rem;font-weight:900;color:var(--white);line-height:1;}
.stat-number .unit{color:var(--red-light);}
.stat-label{font-size:.78rem;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.08em;}

/* ── PAGE HERO ── */
.page-hero{min-height:260px;position:relative;overflow:hidden;display:flex;align-items:flex-end;background:var(--dark);padding-bottom:48px;}
.page-hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,#0d0d0d,#2a0a09);}
.page-hero-img{position:absolute;inset:0;}
.page-hero-img .img-slot{height:100%;background:none;}
.page-hero-img img{object-fit:cover;opacity:.3;}
.page-hero-overlay{position:absolute;inset:0;background:rgba(13,13,13,.7);}
.page-hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 24px;width:100%;}
.page-hero-label{display:flex;align-items:center;gap:8px;color:var(--red-light);font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;font-weight:600;margin-bottom:10px;}
.page-hero-label::before{content:'';width:24px;height:2px;background:var(--red-light);border-radius:2px;}
.page-hero h1{font-family:var(--font-h);font-size:clamp(1.8rem,4vw,3rem);font-weight:800;color:var(--white);line-height:1.1;animation:slideUp .7s both;}
.breadcrumb{display:flex;align-items:center;gap:8px;color:rgba(255,255,255,.5);font-size:.82rem;margin-top:12px;}
.breadcrumb a{color:rgba(255,255,255,.6);transition:color var(--ease);}
.breadcrumb a:hover{color:var(--red-light);}
.breadcrumb i{font-size:.65rem;}

/* ── SERVICES ── */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px;}
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:36px 28px;transition:box-shadow var(--ease),transform var(--ease),border-color var(--ease);position:relative;overflow:hidden;}
.service-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:0;background:var(--red);border-radius:4px 0 0 4px;transition:height var(--ease);}
.service-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-6px);border-color:transparent;}
.service-card:hover::before{height:100%;}
.service-icon{width:54px;height:54px;border-radius:14px;background:rgba(192,57,43,.1);color:var(--red);display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:20px;transition:background var(--ease),color var(--ease);}
.service-card:hover .service-icon{background:var(--red);color:var(--white);}
.service-card h3{font-family:var(--font-h);font-size:1.15rem;font-weight:700;margin-bottom:10px;color:var(--dark);}
.service-card p{font-size:.9rem;color:var(--gray);line-height:1.7;}

/* ── WHY CHOOSE US ── */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;margin-top:40px;}
.why-img-wrap{position:relative;border-radius:var(--r-lg);overflow:hidden;height:480px;}
.why-badge{position:absolute;bottom:24px;left:24px;background:var(--red);color:var(--white);padding:14px 20px;border-radius:var(--r);box-shadow:var(--shadow-lg);animation:float 3s ease-in-out infinite;}
.why-badge strong{display:block;font-size:1.6rem;font-weight:900;}
.why-badge span{font-size:.78rem;opacity:.85;}
.why-list{display:flex;flex-direction:column;gap:20px;margin-top:28px;}
.why-item{display:flex;gap:16px;align-items:flex-start;}
.why-icon{flex-shrink:0;width:40px;height:40px;border-radius:10px;background:rgba(192,57,43,.1);color:var(--red);display:flex;align-items:center;justify-content:center;font-size:1rem;}
.why-item h4{font-size:.95rem;font-weight:600;margin-bottom:4px;}
.why-item p{font-size:.85rem;color:var(--gray);line-height:1.65;}

/* ── PROJECT CARDS ── */
.projects-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px;}
.project-card{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--ease),box-shadow var(--ease);background:var(--dark);}
.project-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);}
.project-card-img{height:220px;position:relative;overflow:hidden;}
.project-card-img .img-slot{height:100%;}
.project-card-img img{transition:transform .5s;}
.project-card:hover .project-card-img img{transform:scale(1.06);}
.project-card-overlay{position:absolute;inset:0;background:rgba(192,57,43,.75);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity var(--ease);}
.project-card:hover .project-card-overlay{opacity:1;}
.project-card-overlay a{background:var(--white);color:var(--red);padding:10px 22px;border-radius:6px;font-weight:600;font-size:.85rem;}
.project-card-body{padding:24px;background:var(--white);}
.project-tag{font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--red);margin-bottom:8px;}
.project-card-body h3{font-family:var(--font-h);font-size:1.05rem;font-weight:700;margin-bottom:8px;color:var(--dark);}
.project-card-body p{font-size:.85rem;color:var(--gray);line-height:1.65;}

/* ── FILTER BAR ── */
.filter-bar{display:flex;gap:10px;flex-wrap:wrap;margin-top:36px;margin-bottom:40px;}
.filter-btn{padding:8px 20px;border-radius:100px;border:1.5px solid var(--border);font-size:.82rem;font-weight:600;color:var(--gray);transition:all var(--ease);background:var(--white);}
.filter-btn.active,.filter-btn:hover{background:var(--red);color:var(--white);border-color:var(--red);}
.portfolio-item{transition:opacity .4s,transform .4s;}
.portfolio-item.hidden{opacity:0;transform:scale(.95);pointer-events:none;position:absolute;}

/* ── GALLERY ── */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:40px;}
.gallery-item{border-radius:var(--r);overflow:hidden;position:relative;cursor:pointer;height:240px;}
.gallery-item.wide{grid-column:span 2;}
.gallery-item .img-slot{height:100%;}
.gallery-item img{transition:transform .5s;width:100%;height:100%;object-fit:cover;}
.gallery-item:hover img{transform:scale(1.08);}
.gallery-caption{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.75));color:var(--white);padding:32px 16px 14px;transform:translateY(100%);transition:transform var(--ease);font-size:.85rem;}
.gallery-item:hover .gallery-caption{transform:translateY(0);}
.lightbox{display:none;position:fixed;inset:0;z-index:2000;background:rgba(0,0,0,.95);align-items:center;justify-content:center;}
.lightbox.open{display:flex;animation:fadeIn .25s;}
.lightbox-close{position:absolute;top:20px;right:24px;color:var(--white);font-size:1.8rem;opacity:.7;transition:opacity var(--ease);}
.lightbox-close:hover{opacity:1;}
.lightbox-img{max-width:90vw;max-height:85vh;border-radius:var(--r);object-fit:contain;}
.lightbox-prev,.lightbox-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);color:var(--white);width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;transition:background var(--ease);}
.lightbox-prev{left:16px;}
.lightbox-next{right:16px;}
.lightbox-prev:hover,.lightbox-next:hover{background:var(--red);}

/* ── TEAM ── */
.team-ceo-card{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;background:var(--dark);border-radius:var(--r-lg);padding:48px;margin-top:50px;overflow:hidden;}
.team-ceo-img{height:440px;border-radius:var(--r-lg);overflow:hidden;position:relative;}
.team-ceo-img .img-slot{height:100%;}
.role-tag{display:inline-block;background:var(--red);color:var(--white);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:5px 14px;border-radius:100px;margin-bottom:18px;}
.team-ceo-info h2{font-family:var(--font-h);font-size:clamp(1.8rem,3vw,2.6rem);font-weight:800;color:var(--white);margin-bottom:20px;}
.team-ceo-info blockquote{border-left:3px solid var(--red);padding-left:18px;color:rgba(255,255,255,.7);font-size:1.05rem;line-height:1.75;font-style:italic;margin-bottom:20px;}
.team-ceo-info p{color:rgba(255,255,255,.65);font-size:.9rem;line-height:1.75;}
.team-socials{display:flex;gap:12px;margin-top:24px;}
.team-socials a{width:38px;height:38px;border-radius:50%;border:1.5px solid rgba(255,255,255,.2);color:rgba(255,255,255,.7);display:flex;align-items:center;justify-content:center;font-size:.85rem;transition:all var(--ease);}
.team-socials a:hover{background:var(--red);border-color:var(--red);color:var(--white);}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:50px;}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;transition:box-shadow var(--ease),transform var(--ease);text-align:center;}
.team-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-6px);}
.team-card-img{height:240px;position:relative;overflow:hidden;}
.team-card-img .img-slot{height:100%;}
.team-card-img img{transition:transform .5s;width:100%;height:100%;object-fit:cover;}
.team-card:hover .team-card-img img{transform:scale(1.05);}
.team-card-body{padding:20px 16px;}
.team-card-body h3{font-family:var(--font-h);font-size:1rem;font-weight:700;color:var(--dark);margin-bottom:4px;}
.team-role{font-size:.78rem;color:var(--red);font-weight:600;text-transform:uppercase;letter-spacing:.08em;}
.team-card-socials{display:flex;gap:8px;justify-content:center;margin-top:12px;}
.team-card-socials a{width:32px;height:32px;border-radius:50%;border:1.5px solid var(--border);color:var(--gray);display:flex;align-items:center;justify-content:center;font-size:.75rem;transition:all var(--ease);}
.team-card-socials a:hover{background:var(--red);border-color:var(--red);color:var(--white);}

/* ── CONTACT ── */
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:56px;margin-top:50px;}
.contact-info-item{display:flex;gap:16px;align-items:flex-start;padding:20px 0;border-bottom:1px solid var(--border);}
.contact-info-item:last-child{border-bottom:none;}
.ci-icon{flex-shrink:0;width:44px;height:44px;border-radius:12px;background:rgba(192,57,43,.1);color:var(--red);display:flex;align-items:center;justify-content:center;font-size:1rem;}
.contact-info-item h4{font-size:.85rem;font-weight:700;margin-bottom:4px;color:var(--dark);}
.contact-info-item p,.contact-info-item a{font-size:.88rem;color:var(--gray);line-height:1.6;}
.contact-info-item a:hover{color:var(--red);}
.contact-form-wrap{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:36px;}
.contact-form-wrap h3{font-family:var(--font-h);font-size:1.4rem;font-weight:700;margin-bottom:24px;color:var(--dark);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:16px;}
.form-group label{font-size:.82rem;font-weight:600;color:var(--dark);}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;border:1.5px solid var(--border);border-radius:8px;font-size:.9rem;color:var(--dark);background:var(--off);transition:border-color var(--ease),box-shadow var(--ease);outline:none;-webkit-appearance:none;}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(192,57,43,.1);background:var(--white);}
.form-group textarea{resize:vertical;min-height:130px;}
.map-wrap{margin-top:40px;height:280px;border-radius:var(--r-lg);overflow:hidden;background:var(--dark);}
.map-wrap iframe{width:100%;height:100%;border:none;}
.map-wrap .img-slot{height:100%;}

/* ── PARTNERS ── */
.partners-section{padding:40px 0;background:var(--off);overflow:hidden;}
.partners-label{text-align:center;font-size:.78rem;color:var(--gray-lt);text-transform:uppercase;letter-spacing:.12em;font-weight:600;margin-bottom:24px;}
.partners-track{display:flex;gap:48px;align-items:center;flex-wrap:wrap;justify-content:center;}
.partner-logo{height:36px;display:flex;align-items:center;opacity:.4;filter:grayscale(1);transition:opacity var(--ease),filter var(--ease);font-family:var(--font-h);font-size:1rem;font-weight:700;color:var(--dark);}
.partner-logo:hover{opacity:1;filter:none;}

/* ── CTA STRIP ── */
.cta-strip{padding:80px 24px;text-align:center;background:linear-gradient(135deg,var(--dark),#2a0a09);position:relative;overflow:hidden;}
.cta-strip::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,.03) 1px,transparent 1px);background-size:24px 24px;}
.cta-strip-inner{position:relative;z-index:1;}
.cta-strip h2{font-family:var(--font-h);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:800;color:var(--white);margin-bottom:16px;}
.cta-strip p{color:rgba(255,255,255,.65);font-size:1.05rem;margin-bottom:36px;max-width:520px;margin-left:auto;margin-right:auto;}
.cta-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.cta-quote{font-style:italic;color:rgba(255,255,255,.45);font-size:.85rem;margin-top:24px;}
.cta-quote strong{color:var(--red-light);font-style:normal;}

/* ── FOOTER ── */
.site-footer{background:var(--dark);color:var(--white);}
.footer-top{padding:70px 0 40px;}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;}
.footer-logo{height:60px;width:auto;object-fit:contain;margin-bottom:20px;}
.footer-tagline{font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.75;margin-bottom:24px;}
.footer-ceo-card{display:flex;gap:14px;align-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:var(--r);padding:14px;}
.footer-ceo-img{width:48px;height:48px;border-radius:50%;overflow:hidden;flex-shrink:0;background:var(--dark-2);}
.footer-ceo-img .img-slot{height:100%;font-size:0;}
.footer-ceo-img .img-slot i{font-size:1.2rem;}
.footer-ceo-img .img-slot-label{display:none;}
.footer-ceo-img img{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.footer-ceo-info strong{display:block;font-size:.88rem;font-weight:700;color:var(--white);}
.footer-ceo-info span{font-size:.75rem;color:var(--red-light);}
.footer-heading{font-family:var(--font-h);font-size:.95rem;font-weight:700;color:var(--white);margin-bottom:18px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.1);}
.footer-links{display:flex;flex-direction:column;gap:8px;}
.footer-links a{display:flex;align-items:center;gap:10px;font-size:.85rem;color:rgba(255,255,255,.55);transition:color var(--ease),padding var(--ease);}
.footer-links a i{font-size:.65rem;color:var(--red);}
.footer-links a:hover{color:var(--white);padding-left:4px;}
.footer-contact-list{display:flex;flex-direction:column;gap:12px;}
.footer-contact-list li{display:flex;gap:12px;align-items:flex-start;font-size:.84rem;color:rgba(255,255,255,.55);}
.footer-contact-list li i{color:var(--red);margin-top:3px;flex-shrink:0;}
.footer-contact-list a{color:rgba(255,255,255,.55);transition:color var(--ease);}
.footer-contact-list a:hover{color:var(--white);}
.footer-socials{display:flex;gap:10px;margin-top:20px;}
.footer-socials a{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.6);display:flex;align-items:center;justify-content:center;font-size:.85rem;transition:all var(--ease);}
.footer-socials a:hover{background:var(--red);border-color:var(--red);color:var(--white);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 0;}
.footer-bottom-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:.8rem;color:rgba(255,255,255,.35);}
.footer-legal{display:flex;gap:16px;}
.footer-legal a{color:rgba(255,255,255,.35);transition:color var(--ease);}
.footer-legal a:hover{color:var(--red-light);}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .projects-grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
  .why-grid{grid-template-columns:1fr;gap:40px;}
  .why-img-wrap{height:320px;}
  .team-ceo-card{grid-template-columns:1fr;gap:32px;}
  .team-ceo-img{height:320px;}
  .contact-grid{grid-template-columns:1fr;gap:40px;}
}
@media(max-width:768px){
  :root{--hh:60px;}
  .header-nav{display:none;}
  .hamburger{display:flex;}
  .mobile-bottom-nav{display:flex;}
  .section{padding:60px 0;}
  .services-grid{grid-template-columns:1fr;gap:16px;}
  .projects-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-item.wide{grid-column:span 1;}
  .footer-grid{grid-template-columns:1fr;gap:24px;}
  .hero-stats{gap:24px;}
  .stat-number{font-size:1.8rem;}
  .form-row{grid-template-columns:1fr;}
  .footer-bottom-inner{flex-direction:column;text-align:center;}
  .hero-actions{flex-direction:column;align-items:flex-start;}
  .hero-actions .btn{width:100%;justify-content:center;}
  .cta-actions{flex-direction:column;align-items:center;}
}
@media(max-width:480px){
  .container{padding:0 16px;}
  .team-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr;}
  .contact-form-wrap{padding:24px 16px;}
  .team-ceo-card{padding:24px 16px;}
}
@media(max-width:360px){
  :root{--hh:56px;}
  .header-logo img{height:40px;}
}
@media(hover:none){
  .service-card:hover,.project-card:hover,.team-card:hover{transform:none;}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;}
  .reveal,.reveal-left,.reveal-right,.reveal-scale{opacity:1;transform:none;}
}
/* Map isolation */
.map-wrap {
  width: 100%;
  max-width: 100%;
  margin: 32px 0; /* spacing around the map */
}

.contact-map {
  width: 100%;
  height: 400px;        /* fixed height so it won’t collapse */
  border: 0;
  border-radius: 12px;  /* optional: nice rounded corners */
  display: block;
  pointer-events: auto; /* user can interact normally */
}