
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --primary: #0F3D3E;
      --secondary: #2A6A6C;
      --accent: #C89B3C;
      --accent-light: #E8C068;
      --bg: #F8F7F3;
      --card: #FFFFFF;
      --text: #1C1C1C;
      --text-muted: #6b6b6b;
      --gradient: linear-gradient(145deg, #0F3D3E 0%, #2A6A6C 70%, #4E7C59 100%);
      --shadow: 0 12px 40px rgba(15,61,62,0.10);
      --shadow-lg: 0 24px 64px rgba(15,61,62,0.18);
      --radius: 16px;
      --font-heading: 'Playfair Display', serif;
      --font-body: 'Poppins', sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    section{
      overflow:hidden;
    }
    .section-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
      display: inline-block;
    }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 600px;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 5px 15px;
      border-radius: 60px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: 0.3s ease;
    }
    .btn-primary {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 6px 24px rgba(15,61,62,0.25);
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(15,61,62,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-3px);
    }
    .btn-gold {
      background: linear-gradient(145deg, #C89B3C, #E8C068);
      color: #fff;
      box-shadow: 0 4px 16px rgba(200,155,60,0.3);
    }
    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(200,155,60,0.4);
    }
    .btn-white {
      background: #fff;
      color: var(--primary);
    }
    .btn-white:hover {
      background: var(--accent-light);
      color: #fff;
      transform: translateY(-3px);
    }
    /* header */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(200,155,60,0.15);
      transition: 0.3s;
    }
    #header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* height: 76px; */
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }
    .logo-mark {
      width: 48px;
      height: 48px;
    }
    .logo-text .logo-name {
      font-family: var(--font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
    }
    .logo-text .logo-tag {
      font-size: 0.65rem;
      color: var(--accent);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
    }
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text);
      padding: 8px 14px;
      border-radius: 8px;
      transition: 0.2s;
      text-decoration: none;
    }
    nav a:hover, nav a.active {
      color: var(--primary);
      background: rgba(15,61,62,0.07);
    }
    .nav-cta { padding: 10px 22px; margin-left: 6px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: 0.3s;
    }
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(255,255,255,0.98);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      color: var(--primary);
      text-decoration: none;
    }
    .mobile-nav-close {
      position: absolute;
      top: 24px;
      right: 28px;
      font-size: 2.2rem;
      background: none;
      border: none;
      color: var(--primary);
      cursor: pointer;
    }
    /* hero */
    #hero {
      padding: 150px 0 80px;
      background: var(--bg);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero-bg-shape {
      position: absolute;
      top: -120px;
      right: -120px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(78,124,89,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(200,155,60,0.10);
      border: 1px solid rgba(200,155,60,0.25);
      color: var(--accent);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 60px;
      margin-bottom: 24px;
    }
    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero-title em { color: var(--accent); font-style: italic; }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.8;
      max-width: 520px;
    }
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .hero-stats { display: flex; gap: 36px; }
    .hero-stat .stat-num {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
    }
    .hero-stat .stat-num span { color: var(--accent); }
    .hero-stat .stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
    .hero-img-wrap { position: relative; }
    .hero-img-card {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .hero-img-inner {
      text-align: center;
      color: rgba(255,255,255,0.7);
    }
    .hero-img-inner .icon { font-size: 8rem; color: rgba(200,155,60,0.25); margin-bottom: 16px; }
    .hero-img-inner strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.4rem;
      color: #fff;
      margin-bottom: 4px;
    }
    .float-card {
      position: absolute;
      background: #fff;
      border-radius: 14px;
      padding: 12px 18px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float 3s ease-in-out infinite;
    }
    .float-card:nth-child(2) { top: 20px; left: -20px; animation-delay: 0s; }
    .float-card:nth-child(3) { bottom: 60px; left: -30px; animation-delay: 1.2s; }
    .float-card:nth-child(4) { top: 100px; right: -20px; animation-delay: 2.4s; }
    .float-card-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .float-card-text strong { display: block; font-size: 0.85rem; color: var(--primary); }
    .float-card-text span { font-size: 0.7rem; color: var(--text-muted); }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

    /* trust */
    #trust { padding: 60px 0; background: var(--primary); }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(6,1fr);
      gap: 20px;
    }
    .trust-card {
      text-align: center;
      padding: 24px 12px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      transition: 0.3s;
    }
    .trust-card:hover { background: rgba(200,155,60,0.15); border-color: rgba(200,155,60,0.3); transform: translateY(-4px); }
    .trust-card .icon { font-size: 2rem; color: var(--accent); margin-bottom: 8px; }
    .trust-card h4 { font-family: var(--font-heading); font-size: 0.9rem; color: #fff; margin-bottom: 4px; }
    .trust-card p { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

    /* about */
    #about { padding: 50px 0; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
   
    /* ===========================
   ABOUT IMAGE
=========================== */

.about-img-wrap{
    position:relative;
    max-width:500px;
    margin:auto;
}

.about-img-card{
    width:100%;
    height:600px;
    overflow:hidden;
    border-radius:30px;
    background:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.about-img-inner{
    width:100%;
    height:100%;
}

.about-img-inner img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.5s;
}

.about-img-card:hover img{
    transform:scale(1.05);
}

.about-badge{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:var(--accent);
    color:#fff;
    padding:18px 25px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.about-badge .num{
    display:block;
    font-size:32px;
    font-weight:700;
    line-height:1;
}

.about-badge .lbl{
    font-size:14px;
    display:block;
    margin-top:5px;
}

@media(max-width:991px){

    .about-img-wrap{
        margin-bottom:40px;
    }

    .about-img-card{
        height:500px;
    }

    .about-badge{
        left:20px;
        bottom:20px;
    }

}

@media(max-width:767px){

    .about-img-card{
        height:420px;
        border-radius:20px;
    }

    .about-badge{
        padding:14px 20px;
    }

    .about-badge .num{
        font-size:26px;
    }

}
    .about-badge .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; display: block; }
    .about-badge .lbl { font-size: 0.7rem; opacity: 0.9; }
    .about-content p { color: var(--text-muted); margin-bottom: 16px; }
    .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 24px 0 32px;
    }
    .about-hi { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
    .about-hi i { color: var(--accent); }

  /* ===========================
   SERVICES
===========================*/

#services{
    padding:30px 0;
    background:#f0efe9;
}

.services-header{
    text-align:center;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.service-img{
    height:220px;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-img img{
    transform:scale(1.08);
}

.service-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-content h3{
    font-family:var(--font-heading);
    color:var(--primary);
    font-size:1.3rem;
    margin-bottom:14px;
}

.service-content p{
    color:var(--text-muted);
    line-height:1.8;
    flex:1;
}

.svc-arrow{
    font-size:22px;
    color:var(--accent);
    margin-top:20px;
    transition:.3s;
}

.service-card:hover .svc-arrow{
    transform:translateX(8px);
}

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-img{
        height:240px;
    }

}
    /* why */
    #why { padding: 30px 0; }
    .why-header { text-align: center; margin-bottom: 60px; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 28px;
      margin-bottom: 70px;
    }
    .why-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 32px 24px;
      border: 1px solid rgba(15,61,62,0.06);
      text-align: center;
      transition: 0.3s;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,155,60,0.25); }
    .why-icon {
      width: 64px; height: 64px;
      border-radius: 16px;
      background: rgba(15,61,62,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 1.7rem;
      color: var(--primary);
      transition: 0.3s;
    }
    .why-card:hover .why-icon { background: var(--gradient); color: #fff; }
    .why-card h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 8px; color: var(--primary); }
    .why-card p { font-size: 0.85rem; color: var(--text-muted); }
    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      background: var(--gradient);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .stat-block {
      text-align: center;
      padding: 40px 20px;
      border-right: 1px solid rgba(255,255,255,0.10);
    }
    .stat-block:last-child { border-right: none; }
    .stat-block .num {
      font-family: var(--font-heading);
      font-size: 2.8rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .stat-block .num .accent { color: var(--accent-light); }
    .stat-block .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

    /* process */
    #process { padding: 30px 0; background: #f0efe9; }
    .process-header { text-align: center; margin-bottom: 70px; }
    .timeline {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
      padding: 0 10px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      top: 38px;
      left: 60px;
      right: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
      z-index: 0;
    }
    .timeline-step {
      flex: 1;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .tl-circle {
      width: 76px; height: 76px;
      border-radius: 50%;
      background: var(--card);
      border: 3px solid var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.5rem;
      color: var(--primary);
      box-shadow: var(--shadow);
      transition: 0.3s;
      position: relative;
    }
    .tl-num {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 22px; height: 22px;
      background: var(--accent);
      border-radius: 50%;
      color: #fff;
      font-size: 0.65rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .timeline-step:hover .tl-circle { background: var(--gradient); border-color: var(--accent); color: #fff; transform: scale(1.05); }
    .timeline-step h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--primary); }
    .timeline-step p { font-size: 0.78rem; color: var(--text-muted); max-width: 140px; margin: 4px auto 0; }

   /*==============================
TESTIMONIAL
==============================*/

.testimonial-section{

    padding:30px 0;
    background:#f7f5f0;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
    margin:15px;
    position:relative;
    overflow:hidden;
    height:100%;

}

.section-heading {
  text-align:center;
  padding-bottom: 20px;
}
.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-top{

    display:flex;
    align-items:center;
    margin-bottom:20px;

}

.client-img{

    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#9b7a33,#d8b96f);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    margin-right:18px;

}

.client-info h4{

    margin:0;
    color:#1f2b48;
    font-size:20px;

}

.client-info span{

    color:#888;
    font-size:14px;

}

.rating{

    color:#ffbf00;
    margin-bottom:18px;

}

.testimonial-card p{

    color:#666;
    line-height:1.9;
    margin-bottom:25px;
    min-height:140px;

}

.quote-icon{

    position:absolute;
    right:25px;
    bottom:20px;
    font-size:55px;
    color:rgba(155,122,51,.15);

}

/* Owl */

.testimonial-carousel .owl-stage{

    display:flex;

}

.testimonial-carousel .owl-item{

    display:flex;

}

.testimonial-carousel .testimonial-card{

    width:100%;

}

.testimonial-carousel .owl-dots{

    margin-top:35px;
    text-align:center;

}

.testimonial-carousel .owl-dot span{

    width:12px;
    height:12px;
    background:#d0d0d0;
    display:block;
    border-radius:50%;
    margin:5px;

}

.testimonial-carousel .owl-dot.active span{

    background:#9b7a33;

}

.testimonial-carousel .owl-nav{

    display:none;

}
    /* cta */
    #cta {
      padding: 80px 0;
      background: var(--gradient);
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("../assets/img/bg.png");
      background-size: cover;
/* background-position: center; */
background-repeat: no-repeat; 



    }

    
@media(max-width:991px){


#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../assets/img/bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.client-img{
    display: none !important;
}

}
    .cta-inner { text-align: center; position: relative; z-index: 1; }
    .cta-inner h2 { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
    .cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* contact */
    #contact { padding:   30px 0; background: #f0efe9; }
    .contact-header { text-align: center; margin-bottom: 60px; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    .map-placeholder {
      border-radius: 20px;
      overflow: hidden;
      min-height: 400px;
      background: rgba(15,61,62,0.05);
      border: 2px dashed rgba(15,61,62,0.15);
    }
    .map-placeholder iframe {
      width: 100%;
      height: 100%;
      min-height: 400px;
      border: none;
      display: block;
    }
    .contact-form-wrap h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid rgba(15,61,62,0.12);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      background: #fff;
      transition: 0.3s;
      outline: none;
    }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,61,62,0.06); }
    .form-group textarea { height: 110px; resize: vertical; }
    .contact-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }
    .contact-item { display: flex; gap: 12px; align-items: flex-start; }
    .contact-item-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .contact-item-text strong { display: block; font-size: 0.8rem; color: var(--primary); }
    .contact-item-text span, .contact-item-text a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }
    .contact-item-text a:hover { color: var(--accent); }

    /* footer */
    footer {
      background: var(--primary);
      color: rgba(255,255,255,0.8);
      padding: 70px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      color: #fff;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 32px;
      height: 2px;
      background: var(--accent);
    }
    .footer-col p { font-size: 0.85rem; line-height: 1.8; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: 0.2s;
    }
    .footer-links a:hover { color: var(--accent); padding-left: 4px; }
    .footer-links a::before { content: '›'; color: var(--accent); }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      margin-bottom: 16px;
    }
    .footer-logo .logo-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #fff; }
    .footer-logo .logo-tag { font-size: 0.65rem; color: var(--accent-light); letter-spacing: 0.1em; text-transform: uppercase; }
    .social-icons { display: flex; gap: 10px; margin-top: 18px; }
    .social-icons a {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      transition: 0.3s;
      text-decoration: none;
    }
    .social-icons a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
    .footer-address {
      display: flex;
      gap: 10px;
      font-size: 0.82rem;
      margin-bottom: 10px;
    }
    .footer-address i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }
    .footer-disclaimer {
      margin-bottom: 24px;
      padding: 16px 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-left: 4px solid var(--accent);
      border-radius: 10px;
    }
    .footer-disclaimer h4 {
      font-family: var(--font-heading);
      font-size: 1rem;
      color: #fff;
      margin-bottom: 8px;
    }
    .footer-disclaimer p {
      font-size: 0.82rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.76);
      margin: 0;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.8rem;
    }
    .footer-bottom a { color: var(--accent); text-decoration: none; }

    /* floating */
    .fab-group {
      position: fixed;
      bottom: 30px;
      right: 26px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 900;
    }
    .fab {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.3rem;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      transition: 0.3s;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }
    .fab:hover { transform: translateY(-3px) scale(1.06); }
    .fab-wa { background: #25D366; }
    .fab-call { background: var(--gradient); }
    .fab-top { background: var(--accent); display: none; }
    .fab-top.visible { display: flex; }

    /* responsive */
    @media (max-width: 1024px) {
      .trust-grid { grid-template-columns: repeat(3,1fr); }
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .why-grid { grid-template-columns: repeat(2,1fr); }
      .stats-strip { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .float-card:nth-child(2), .float-card:nth-child(3), .float-card:nth-child(4) { display: none; }
    }
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-img-wrap { order: -1; }
      .about-grid { grid-template-columns: 1fr; gap: 0px; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .stats-strip { grid-template-columns: 1fr 1fr; }
      .timeline { flex-direction: column; align-items: center; gap: 32px; }
      .timeline::before { display: none; }
      .testimonials-inner { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-info { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .form-row { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 480px) {
      .trust-grid { grid-template-columns: 1fr; }
      .stats-strip { grid-template-columns: 1fr; }
      .about-highlights { grid-template-columns: 1fr; }
      .hero-buttons { flex-direction: column; align-items: flex-start; }
    }
    @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* gallery */
/* ── reuse / override from other pages ── */
.page-hero.gallery-hero {
  padding: 140px 0 80px;
  background: #0f3d3e;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero.gallery-hero .page-hero-inner .section-label {
  color: var(--accent-light);
}
.page-hero.gallery-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero.gallery-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.8;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a { color: var(--accent-light); text-decoration: none; }
.breadcrumb i { font-size: 0.65rem; }

/* ── Gallery Section ── */
#gallery-main {
  padding: 60px 0 80px;
  background: var(--bg);
}
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}
.gallery-header .section-label {
  color: var(--accent);
}
.gallery-header .section-title {
  color: var(--primary);
}
.gallery-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 61, 62, 0.08);
  transition: 0.3s ease;
  background: #f0efe9;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 61, 62, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(15, 61, 62, 0.8));
  color: #fff;
  opacity: 0;
  transition: 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay .file-name {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  word-break: break-all;
}

.gallery-item .overlay .view-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: 0.3s;
}

.gallery-item .overlay .view-icon:hover {
  background: var(--accent);
  color: #fff;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(255,255,255,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
}

.lightbox .close-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: 0.3s;
  background: rgba(255,255,255,0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
  user-select: none;
}

.lightbox .nav-btn:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox .nav-btn.prev {
  left: 30px;
}

.lightbox .nav-btn.next {
  right: 30px;
}

.lightbox .counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 30px;
}

/* ── CTA Section ── */
#gallery-cta {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
#gallery-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/img/bg.png') center/cover no-repeat;
  opacity: 0.06;
}
.cta-inner-gallery {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner-gallery .section-label {
  color: var(--accent-light);
}
.cta-inner-gallery h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-inner-gallery p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.cta-buttons-gallery {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── No Images Message ── */
.no-images {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 20px;
  border: 2px dashed rgba(15, 61, 62, 0.1);
}
.no-images i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.no-images h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 10px;
}
.no-images p {
  color: var(--text-muted);
}

/* Home Gallery Preview */
.home-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-gallery-item {
  aspect-ratio: 4 / 3;
}
.gallery-view-all {
  text-align: center;
  margin-top: 30px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    aspect-ratio: 1/1;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox .nav-btn.prev { left: 10px; }
  .lightbox .nav-btn.next { right: 10px; }
  .lightbox .close-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    top: 10px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item .overlay .file-name {
    font-size: 0.6rem;
  }
  .gallery-item .overlay .view-icon {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }
  .lightbox img {
    max-width: 100%;
    max-height: 75vh;
  }
}
