/* ============================================================
   M&U Painting Group - COMMERCIAL PAINTING (SERVICE) PAGE CSS
   Ye file sirf is service page par load hogi (page-specific)
   ============================================================ */

  :root{
    --bg-dark:#05111e;
    --panel-dark:#0b1c30;
    --accent:#e9a326;
    --accent-light:#ffb946;
    --white:#ffffff;
    --body-grey:#5b6472;
    --grey-text-light:#c7ccd3;
    --border-line-light:rgba(5,17,30,0.08);
    --card-bg:#ffffff;
    --section-bg:#f6f7f8;

    --fs-eyebrow: 13px;
    --fs-h2: clamp(26px, 3.2vw, 38px);
    --fs-h3: 16px;
    --fs-body: 14.5px;
    --fs-small: 13px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{overflow-x:hidden;}
  body{font-family:'Poppins', sans-serif;background:var(--white);color:var(--bg-dark);max-width:100vw;overflow-x:hidden;}
  a{text-decoration:none;color:inherit;}
  ul,ol{list-style:none;}
  button{font-family:inherit;cursor:pointer;border:none;}
  img{max-width:100%;display:block;}

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:var(--fs-eyebrow);
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--accent);
    margin-bottom:8px;
  }
  .eyebrow::before{
    content:'';
    width:18px;
    height:2px;
    background:var(--accent);
    border-radius:2px;
  }
  .eyebrow-light::before{display:none;}

  .btn-primary{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--accent);
    color:var(--bg-dark);
    font-size:var(--fs-small);
    font-weight:700;
    letter-spacing:0.6px;
    text-transform:uppercase;
    padding:15px 34px;
    border-radius:6px;
    box-shadow:0 12px 26px rgba(233,163,38,0.28);
    transition:background .25s ease, transform .2s ease, box-shadow .25s ease;
  }
  .btn-primary:hover{
    background:var(--accent-light);
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(233,163,38,0.36);
  }

  /* ============================================================
     PAGE BANNER
     ============================================================ */
  .page-banner{
    position:relative;
    width:100%;
    height:clamp(300px, 36vw, 460px);
    overflow:hidden;
    background:var(--bg-dark);
  }
  .page-banner-media{position:absolute;inset:0;width:100%;height:100%;}
  .page-banner-media img{width:100%;height:100%;object-fit:cover;transform:scale(1.04);}
  .page-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(100deg, rgba(5,17,30,0.95) 0%, rgba(5,17,30,0.86) 34%, rgba(5,17,30,0.56) 64%, rgba(5,17,30,0.32) 100%);
  }
  .page-banner-content{
    position:relative;
    z-index:2;
    max-width:1400px;
    height:100%;
    margin:0 auto;
    padding:0 40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:16px;
  }
  .banner-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    width:fit-content;
    background:rgba(233,163,38,0.14);
    border:1px solid rgba(233,163,38,0.4);
    color:var(--accent);
    font-size:12.5px;
    font-weight:700;
    letter-spacing:0.8px;
    text-transform:uppercase;
    padding:8px 18px;
    border-radius:30px;
  }
  .page-banner-content h1{
    font-size:clamp(30px, 4.4vw, 54px);
    font-weight:800;
    color:var(--white);
    letter-spacing:0.3px;
  }
  .breadcrumb ol{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
  .breadcrumb li{font-size:14.5px;font-weight:500;color:var(--grey-text-light);}
  .breadcrumb li a{color:var(--grey-text-light);transition:color .2s ease;}
  .breadcrumb li a:hover{color:var(--accent);}
  .breadcrumb li[aria-current="page"]{color:var(--accent);font-weight:600;}
  .breadcrumb .crumb-sep{font-size:11px;color:var(--accent);display:flex;align-items:center;}

  /* ============================================================
     TRUST STRIP -- floats over banner bottom edge
     ============================================================ */
  .trust-strip{position:relative;z-index:3;max-width:1300px;margin:0 auto;padding:0 40px;}
  .trust-strip-inner{
    position:relative;
    background:linear-gradient(135deg, var(--bg-dark) 0%, var(--panel-dark) 100%);
    border-radius:14px;
    box-shadow:0 28px 56px rgba(5,17,30,0.28);
    margin-top:-46px;
    padding:28px 40px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    overflow:hidden;
  }
  .trust-strip-inner::before{
    content:'';position:absolute;top:0;left:0;right:0;height:3px;
    background:linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  }
  .trust-item{display:flex;align-items:center;gap:14px;border-right:1px solid rgba(255,255,255,0.08);transition:transform .25s ease;}
  .trust-item:hover{transform:translateY(-3px);}
  .trust-item:last-child{border-right:none;}
  .trust-icon{
    flex-shrink:0;width:46px;height:46px;border-radius:50%;
    background:rgba(233,163,38,0.14);border:1px solid rgba(233,163,38,0.3);
    color:var(--accent);display:flex;align-items:center;justify-content:center;font-size:18px;
  }
  .trust-item span:last-child{font-size:13.5px;font-weight:600;line-height:1.4;color:var(--white);}

  /* ============================================================
     COMMERCIAL PAINTING SERVICES -- grid of tiles
     ============================================================ */
  .comm-services-section{
    padding:100px 40px 90px;
    max-width:1400px;
    margin:0 auto;
  }
  .comm-services-head{text-align:center;max-width:640px;margin:0 auto 48px;}
  .comm-services-head h2{
    font-size:var(--fs-h2);
    font-weight:800;
    color:var(--bg-dark);
    line-height:1.25;
  }
  .comm-services-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:22px;
  }
  .comm-service-card{
    background:var(--white);
    border:1px solid var(--border-line-light);
    border-radius:14px;
    padding:30px 22px;
    text-align:center;
    box-shadow:0 14px 32px rgba(5,17,30,0.05);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .comm-service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 44px rgba(5,17,30,0.1);
    border-color:rgba(233,163,38,0.35);
  }
  .comm-service-icon{
    display:flex;align-items:center;justify-content:center;
    width:56px;height:56px;margin:0 auto 18px;border-radius:50%;
    background:rgba(233,163,38,0.12);color:var(--accent);font-size:22px;
    transition:transform .25s ease;
  }
  .comm-service-card:hover .comm-service-icon{transform:translateY(-3px) scale(1.05);}
  .comm-service-card h3{font-size:15.5px;font-weight:700;color:var(--bg-dark);margin-bottom:10px;line-height:1.35;}
  .comm-service-card p{font-size:13px;line-height:1.6;color:var(--body-grey);}

  /* ============================================================
     WHY CHOOSE US -- image left, benefits grid right
     ============================================================ */
  .why-comm-section{
    max-width:1400px;
    margin:0 auto 100px;
    padding:0 40px;
  }
  .why-comm-inner{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
    align-items:center;
  }
  .why-comm-media{
    position:relative;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 26px 52px rgba(5,17,30,0.14);
    aspect-ratio:700/760;
  }
  .why-comm-media picture,
  .why-comm-media img{width:100%;height:100%;object-fit:cover;}

  .why-comm-panel h2{
    font-size:var(--fs-h2);
    font-weight:800;
    color:var(--bg-dark);
    margin-bottom:28px;
    line-height:1.25;
  }
  .why-comm-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:26px 28px;
  }
  .why-comm-item{display:flex;align-items:flex-start;gap:14px;}
  .why-comm-icon{
    flex-shrink:0;width:44px;height:44px;border-radius:11px;
    background:rgba(233,163,38,0.12);color:var(--accent);
    display:flex;align-items:center;justify-content:center;font-size:18px;
  }
  .why-comm-item h4{font-size:14.5px;font-weight:700;color:var(--bg-dark);margin-bottom:6px;line-height:1.35;}
  .why-comm-item p{font-size:12.5px;line-height:1.6;color:var(--body-grey);}

  /* ============================================================
     WE STAND BEHIND EVERY PROJECT + RECENT COMMERCIAL PROJECTS
     ============================================================ */
  .stand-section{
    background:var(--section-bg);
    padding:90px 40px;
  }
  .stand-inner{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
  }

  .stand-text{
    background:var(--bg-dark);
    border-radius:18px;
    padding:44px 40px;
    box-shadow:0 26px 52px rgba(5,17,30,0.18);
    height:100%;
  }
  .stand-text .eyebrow{color:var(--accent);}
  .stand-text h2{font-size:var(--fs-h2);font-weight:800;color:var(--white);margin-bottom:14px;line-height:1.25;}
  .stand-text > p{font-size:var(--fs-body);line-height:1.75;color:var(--grey-text-light);margin-bottom:26px;}

  .stand-split{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:20px;
    align-items:start;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:28px;
  }

  .stand-checklist h4{
    font-size:13px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;
    color:var(--accent);margin-bottom:14px;
  }
  .stand-checklist ul{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:6px 18px;
  }
  .stand-checklist li{
    display:flex;align-items:center;gap:9px;
    font-size:13.5px;font-weight:600;color:var(--white);padding:6px 0;
  }
  .stand-checklist i{color:var(--accent);font-size:14px;flex-shrink:0;}

  .stand-satisfaction{
    display:flex;flex-direction:column;align-items:center;text-align:center;
    padding-left:20px;
    border-left:1px solid rgba(255,255,255,0.1);
  }
  .stand-satisfaction img{width:96px;height:auto;margin-bottom:12px;}
  .stand-satisfaction strong{display:block;font-size:14.5px;font-weight:800;color:var(--white);margin-bottom:8px;}
  .stand-satisfaction p{font-size:12.5px;line-height:1.65;color:var(--grey-text-light);}

  .projects-panel{
    background:var(--white);
    border:1px solid var(--border-line-light);
    border-radius:18px;
    padding:40px;
    box-shadow:0 14px 32px rgba(5,17,30,0.05);
    height:100%;
  }
  .projects-panel h3{font-size:18px;font-weight:800;color:var(--bg-dark);margin-bottom:22px;}
  .projects-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
    margin-bottom:26px;
  }
  .projects-item{
    position:relative;
    border-radius:12px;
    overflow:hidden;
    aspect-ratio:1/1;
    isolation:isolate;
  }
  .projects-item::after{
    content:'';position:absolute;inset:0;
    background:linear-gradient(180deg, transparent 40%, rgba(5,17,30,0.85) 100%);
  }
  .projects-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
  .projects-item:hover img{transform:scale(1.08);}
  .projects-item span{
    position:absolute;left:10px;bottom:9px;z-index:1;
    font-size:11.5px;font-weight:700;color:var(--white);line-height:1.3;
  }
  .projects-btn{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--accent);color:var(--bg-dark);
    font-size:var(--fs-small);font-weight:700;letter-spacing:.5px;text-transform:uppercase;
    padding:14px 28px;border-radius:6px;width:100%;justify-content:center;
    box-shadow:0 12px 26px rgba(233,163,38,0.28);
    transition:background .25s ease, transform .2s ease;
  }
  .projects-btn:hover{background:var(--accent-light);transform:translateY(-2px);}

  /* ============================================================
     READY TO TRANSFORM -- full-width CTA
     (same technique as home page's .serving-section: height is
     clamped off the bg image's own ratio, content absolutely
     overlaid on top, so the artwork is always shown 100% intact)
     ============================================================ */
  .cta-full-section{position:relative;width:100%;margin-top:90px;}

  /* ---- decorative dot-grid + diagonal accent line ---- */
  .cta-decor-dots{
    position:absolute;z-index:1;pointer-events:none;
    background-image:radial-gradient(circle, rgba(5,17,30,0.4) 1.6px, transparent 1.8px);
    background-size:15px 15px;
  }
  .cta-decor-dots-tl{top:26px;left:26px;width:96px;height:96px;}
  .cta-decor-dots-bl{bottom:20px;left:20px;width:70px;height:70px;opacity:.75;}
  .cta-decor-line{
    position:absolute;z-index:1;pointer-events:none;
    top:-15%;left:24%;width:2px;height:140%;
    background:linear-gradient(180deg, rgba(5,17,30,0.22), rgba(5,17,30,0.02));
    transform:rotate(14deg);transform-origin:top;
  }

  /* ---- desktop / tablet (>760px) ---- */
  .cta-full-desktop{
    display:block;position:relative;width:100%;overflow:hidden;
    height:clamp(460px, 20vw + 300px, 620px); /* sized to the content stack, not just the image ratio, so nothing touches the top/bottom edges at any width */
    background-image:url(../images/commercial-cta-bg.png);
    background-position:center right;
    background-repeat:no-repeat;
    background-size:cover; /* fills the box; any trim only ever eats the blank wall on the left since the man/logo is anchored right */
  }
  .cta-full-inner{
    position:relative;z-index:2;
    height:100%;margin:0 auto;
    padding:clamp(20px,2vw,32px) clamp(24px,5vw,70px);
    display:flex;flex-direction:column;justify-content:center;gap:clamp(6px,0.8vw,10px);
  }

  .cta-badge{
    display:inline-flex;align-items:center;width:fit-content;
    background:var(--bg-dark);color:var(--accent);
    font-size:clamp(10.5px,0.85vw,13px);font-weight:800;letter-spacing:1.2px;text-transform:uppercase;
    padding:clamp(9px,1vw,13px) 30px clamp(9px,1vw,13px) 18px;
    clip-path:polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
    margin-bottom:clamp(10px,1.2vw,16px);
  }

  .cta-heading{display:flex;flex-direction:column;}
  .cta-heading span{
    font-size:clamp(24px, 2.9vw, 42px);
    font-weight:800;
    line-height:1.18;
  }
  .cta-heading .line-dark{color:var(--bg-dark);}
  .cta-heading .line-white{color:var(--white);}

  .cta-underline{display:flex;align-items:center;gap:5px;height:4px;margin:clamp(10px,1.4vw,18px) 0 clamp(14px,1.8vw,22px);}
  .cta-underline .u-dark{display:block;width:36px;height:100%;background:var(--bg-dark);border-radius:3px;}
  .cta-underline .u-gold{display:block;width:78px;height:100%;background:rgba(5,17,30,0.35);border-radius:3px;}

  .cta-full-inner > p{
    font-size:clamp(13px,1vw,15px);line-height:1.7;color:rgba(5,17,30,0.82);
    margin-bottom:clamp(16px,2vw,26px);max-width:480px;
  }

  .cta-feature-row{display:flex;align-items:flex-start;gap:clamp(10px,1.4vw,20px);margin-bottom:clamp(18px,2.2vw,28px);flex-wrap:wrap;}
  .cta-feature{
    display:flex;align-items:center;gap:10px;
    padding-right:clamp(10px,1.4vw,20px);
    border-right:1px solid rgba(5,17,30,0.18);
  }
  .cta-feature:last-child{border-right:none;padding-right:0;}
  .cta-feature-icon{
    flex-shrink:0;width:clamp(34px,2.6vw,42px);height:clamp(34px,2.6vw,42px);border-radius:50%;
    background:var(--bg-dark);color:var(--accent);
    display:flex;align-items:center;justify-content:center;font-size:clamp(13px,1vw,16px);
  }
  .cta-feature > span:last-child{font-size:clamp(10.5px,0.8vw,12.5px);font-weight:800;color:var(--bg-dark);line-height:1.35;text-transform:uppercase;letter-spacing:.2px;}

  .cta-full-actions{display:flex;align-items:center;gap:clamp(10px,1.2vw,16px);flex-wrap:wrap;}

  .cta-phone{
    display:inline-flex;align-items:center;gap:10px;
    background:var(--bg-dark);color:var(--white);font-weight:700;font-size:clamp(13px,1vw,15px);
    padding:clamp(12px,1.3vw,16px) clamp(16px,1.8vw,24px);border-radius:8px;
    transition:transform .2s ease;
  }
  .cta-phone:hover{transform:translateY(-2px);}
  .cta-phone i{color:var(--accent);}
  .cta-btn{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--accent-light);color:var(--bg-dark);
    font-weight:700;font-size:clamp(11.5px,0.9vw,13px);letter-spacing:.6px;text-transform:uppercase;
    padding:clamp(12px,1.3vw,16px) clamp(18px,2vw,26px);border-radius:8px;
    box-shadow:0 14px 28px rgba(5,17,30,0.16);
    transition:background .25s ease, transform .2s ease;
  }
  .cta-btn:hover{background:#ffcf70;transform:translateY(-2px);}

  /* ---- mobile stacked variant (<=760px) ---- */
  .cta-full-mobile{
    display:none;position:relative;overflow:hidden;
    background:linear-gradient(160deg, var(--accent-light) 0%, var(--accent) 45%, #c98620 100%);
  }

  .cta-mobile-top{position:relative;z-index:2;padding:40px 24px 4px;}
  .cta-mobile-top .cta-badge{font-size:11.5px;line-height:1.4;padding:11px 26px 11px 16px;}
  .cta-mobile-man{
    position:absolute;top:26px;right:0;width:44%;height:auto;z-index:1;
    -webkit-mask-image:linear-gradient(to bottom, #000 78%, transparent 100%);
    mask-image:linear-gradient(to bottom, #000 78%, transparent 100%);
  }
  .cta-mobile-heading{max-width:64%;}
  .cta-mobile-heading span{font-size:clamp(24px,7vw,30px);}
  .cta-mobile-top > p{font-size:13.5px;line-height:1.7;color:rgba(5,17,30,0.82);margin-bottom:22px;max-width:100%;}
  .cta-mobile-actions{display:flex;flex-direction:column;gap:12px;margin-bottom:32px;}
  .cta-mobile-actions .cta-phone,
  .cta-mobile-actions .cta-btn{width:100%;justify-content:center;}

  .cta-mobile-features{
    position:relative;z-index:2;
    display:grid;grid-template-columns:1fr 1fr;gap:22px 16px;
    padding:0 24px 30px;
  }
  .cta-feature-card{display:flex;flex-direction:column;gap:10px;}
  .cta-feature-card .cta-feature-icon{width:44px;height:44px;font-size:16px;}
  .cta-feature-card h4{font-size:13px;font-weight:800;color:var(--bg-dark);line-height:1.3;}
  .cta-feature-card p{font-size:11.5px;line-height:1.55;color:rgba(5,17,30,0.75);}

  .cta-promise-bar{
    position:relative;z-index:2;
    display:flex;align-items:center;gap:14px;
    background:var(--bg-dark);
    margin:0 16px 24px;padding:18px 20px;border-radius:12px;
  }
  .cta-promise-icon{
    flex-shrink:0;width:38px;height:38px;border-radius:50%;
    border:1.5px solid var(--accent);color:var(--accent);
    display:flex;align-items:center;justify-content:center;font-size:15px;
  }
  .cta-promise-bar p{font-size:12px;line-height:1.6;color:var(--grey-text-light);}
  .cta-promise-bar strong{display:block;color:var(--white);font-size:12.5px;letter-spacing:.3px;margin-bottom:2px;}

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width:1100px){
    .comm-services-grid{grid-template-columns:repeat(3, 1fr);}
    .why-comm-inner{grid-template-columns:1fr;gap:44px;}
    .why-comm-media{aspect-ratio:16/9;}
    .stand-inner{grid-template-columns:1fr;gap:36px;}
    .stand-split{grid-template-columns:1fr;gap:26px;}
    .stand-satisfaction{border-left:none;padding-left:0;border-top:1px solid rgba(255,255,255,0.1);padding-top:22px;}
  }

  @media (max-width:760px){
    .page-banner{height:clamp(260px, 62vw, 360px);}
    .page-banner-content{padding:0 20px;}
    .trust-strip{padding:0 20px;}
    .trust-strip-inner{grid-template-columns:repeat(2, 1fr);row-gap:22px;margin-top:-34px;padding:22px 22px;}
    .trust-item{border-right:none;}
    .trust-icon{width:38px;height:38px;font-size:15px;}
    .trust-item span:last-child{font-size:12.5px;}

    .comm-services-section{padding:64px 20px 56px;}
    .comm-services-head{margin-bottom:34px;}
    .comm-services-grid{grid-template-columns:repeat(2, 1fr);gap:16px;}
    .comm-service-card{padding:24px 16px;}

    .why-comm-section{padding:0 20px;margin-bottom:60px;}
    .why-comm-grid{grid-template-columns:1fr;gap:22px;}

    .stand-section{padding:56px 20px;}
    .stand-text{padding:32px 24px;}
    .stand-checklist ul{grid-template-columns:1fr;}
    .projects-panel{padding:26px 22px;}
    .projects-grid{grid-template-columns:repeat(3, 1fr);gap:10px;}

    .cta-full-section{margin-top:56px;}
    .cta-full-desktop{display:none;}
    .cta-full-mobile{display:block;}
  }

  @media (max-width:480px){
    .trust-strip-inner{grid-template-columns:1fr;}
    .comm-services-grid{grid-template-columns:1fr;}
    .projects-grid{grid-template-columns:repeat(2, 1fr);}
  }