*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --teal-light: #ccfbf1;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --dark: #0f172a;
    --dark2: #1e293b;
    --gray: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { font-family: 'Inter', sans-serif; color: var(--dark); overflow-x: hidden; width: 100%; }

  /* ── SCROLL ANIMATIONS ── */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in-up.visible { opacity: 1; transform: translateY(0); }

  .fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in-left.visible { opacity: 1; transform: translateX(0); }

  .fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .fade-in-right.visible { opacity: 1; transform: translateX(0); }

  .scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .scale-in.visible { opacity: 1; transform: scale(1); }

  .zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .zoom-in.visible { opacity: 1; transform: scale(1); }

  /* ── TOP BAR ── */
  .top-bar {
    background: linear-gradient(90deg, var(--red) 50%, var(--teal) 100%);
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
    animation: slideDown 0.5s ease;
  }
  .top-bar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 4px;
  }
  .top-bar-left { display: flex; gap: 24px; align-items: center; }
  .top-bar-left a { 
    color: #fff; text-decoration: none; display: flex; align-items: center; gap: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .top-bar-left a:hover { transform: translateY(-2px); opacity: 0.9; }
  .top-bar-right { display: flex; gap: 12px; }
  .top-bar-right a {
    color: #fff; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; text-decoration: none; transition: all 0.3s ease;
  }
  .top-bar-right a:hover { 
    background: rgba(255,255,255,0.2);
    transform: rotate(180deg) scale(1.1);
  }

  /* ── FLOATING NAVBAR ── */
  .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0 20px;
    position: fixed; top: 28px; left: 50%; transform: translateX(-50%); z-index: 1060;
    border-radius: 50px;
    margin-top: 16px;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
  }
  .navbar.scrolled {
    padding: 0 20px;
    top: 1px;
    width: 95%;
    box-shadow: 0 12px 48px rgba(13, 148, 136, 0.15);
    background: rgba(255, 255, 255, 0.98);
  }
  .navbar-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition: height 0.3s ease;
  }
  .navbar.scrolled .navbar-inner { height: 60px; }
  
  .logo { 
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    transition: transform 0.3s ease;
  }
  .logo:hover { transform: scale(1.05); }
  .logo-icon {
    width: 40px; height: 40px; background: linear-gradient(135deg, var(--red), var(--teal)); 
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
  }
  .logo:hover .logo-icon {
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    transform: rotate(-5deg) scale(1.05);
  }
  .logo-icon i { color: #fff; font-size: 18px; }
  .logo-img {
    width: 40px; height: 40px; object-fit: contain; border-radius: 12px;
    transition: all 0.3s ease;
  }
  .logo:hover .logo-img {
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
    transform: rotate(-5deg) scale(1.05);
  }
  .logo-text { 
    font-size: 22px; font-weight: 800; 
    background: linear-gradient(135deg, var(--red), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
  }
  
  /* ── NAVIGATION LINKS ── */
  .nav-links { 
    display: flex; gap: 32px; list-style: none;
    transition: all 0.3s ease;
  }
  .nav-links li { position: relative; }
  .nav-links a {
    text-decoration: none; color: var(--dark); font-size: 14px; font-weight: 500;
    transition: all 0.3s ease; position: relative;
    display: flex; align-items: center; gap: 4px;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--teal));
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }
  .nav-links a.active, .nav-links a:hover { 
    color: var(--red);
    transform: translateY(-2px);
  }
  
  .btn-book {
    background: linear-gradient(135deg, var(--red), var(--teal));
    color: #fff; border: none; padding: 12px 24px;
    border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 6px; text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-book::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
  }
  .btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.4);
  }
  .btn-book:hover::before {
    width: 300px;
    height: 300px;
  }
  .btn-book > span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
    opacity: 0.25;
  }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.72) 100%);
  }
  
  .hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 30px 24px 0;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 48px;
    align-items: center;
    position: relative;
    width: 100%;
  }

  /* ── HERO LEFT ── */
  .hero-left { display: flex; flex-direction: column; gap: 0; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13,148,136,0.18);
    border: 1px solid rgba(13,148,136,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #5eead4;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
  }
  .hero-badge-dot {
    width: 8px; height: 8px;
    background: #2dd4bf;
    border-radius: 50%;
    animation: pulse-dot 1.6s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.5; transform:scale(1.4); }
  }

  .hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .hero h1 span { color: var(--red); }
  .hero p {
    color: #cbd5e1;
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
  }

  /* CTA row */
  .hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .btn-hero-primary {
    background: var(--teal);
    color: #fff;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(13,148,136,0.35);
  }
  .btn-hero-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,148,136,0.45); }
  .btn-hero-call {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
  }
  .btn-hero-call:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

  /* Trust strip */
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
  }
  .hero-trust-item i { color: var(--teal); font-size: 14px; }
  .hero-trust-divider {
    width: 1px; height: 18px;
    background: rgba(255,255,255,0.15);
  }

  /* ── HERO CARD ── */
  .hero-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 32px 28px;
    color: #fff;
  }
  .hero-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .hero-card-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--teal);
    flex-shrink: 0;
  }
  .hero-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
  .hero-card p { font-size: 12px; color: #94a3b8; margin: 0; }
  .hero-card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
  }
  .hero-card-stars i { color: #fbbf24; font-size: 11px; }
  .hero-card-stars span { font-size: 11px; color: #94a3b8; margin-left: 4px; }
  .hero-card-quote {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.65;
    font-style: italic;
    border-left: 3px solid var(--teal);
    padding-left: 12px;
    margin-bottom: 20px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .stat-box {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
  }
  .stat-box .num { font-size: 22px; font-weight: 900; color: var(--teal); line-height: 1; }
  .stat-box .label { font-size: 10px; color: #94a3b8; margin-top: 4px; line-height: 1.3; }
  .hero-card-cta {
    display: block;
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, transform .2s;
  }
  .hero-card-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

  /* ── HERO ILLUSTRATION (team photo cutout) ── */
  .hero-illustration {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    animation: heroFloatBob 4.5s ease-in-out infinite;
  }
  @keyframes heroFloatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }
  .hero-illustration::before {
    content: '';
    position: absolute;
    inset: 6% 4% 10% 4%;
    background: radial-gradient(ellipse at 50% 40%, rgba(45,212,191,0.4) 0%, rgba(13,148,136,0.18) 55%, transparent 75%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(6px);
  }
  .hero-illustration-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 32px rgba(0,0,0,0.45));
  }
  .hero-float-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    white-space: nowrap;
    animation: heroFloatBob 4.5s ease-in-out infinite;
  }
  .hero-float-chip i { font-size: 12px; }
  .chip-rating { top: 4%; right: 0%; color: var(--dark); animation-delay: .2s; }
  .chip-rating i { color: #fbbf24; }
  .chip-fast { bottom: 10%; left: -2%; animation-delay: .6s; }
  .chip-fast i { color: var(--red); }

  /* ── SHARED BUTTON (used across sections) ── */
  .btn-primary {
    background: var(--teal);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
  }
  .btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,0.3);
  }

  /* Carousel Dots */
  .carousel-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  .carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  .carousel-dot.active { background: var(--teal); width: 28px; border-radius: 5px; }

  /* Carousel Arrows */
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .carousel-arrow:hover { background: var(--teal); border-color: var(--teal); }
  .carousel-arrow.prev { left: 24px; }
  .carousel-arrow.next { right: 24px; }

  /* Animated hero text */
  .hero-left { transition: opacity 0.4s ease, transform 0.5s ease; }
  .hero h1, .hero p, .btn-hero-primary, .btn-hero-call { animation: heroFadeUp 0.7s ease both; }
  .hero h1 { animation-delay: 0.1s; }
  .hero p  { animation-delay: 0.25s; }
  .btn-hero-primary { animation-delay: 0.4s; }
  .btn-hero-call { animation-delay: 0.45s; }
  .hero-trust { animation: heroFadeUp 0.7s ease 0.55s both; }
  .hero-badge { animation: heroFadeUp 0.7s ease 0.0s both; }
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 80px 0; }
  .container { max-width: 1200px; margin: auto; padding: 0 24px; }
  .section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
  }
  .section-label i { font-size: 14px; }
  .section-title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; line-height: 1.15; }
  .section-title span { color: var(--red); }
  .section-desc { color: var(--gray); font-size: 16px; max-width: 560px; margin-top: 12px; }
  .section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
  }
  .btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s;
    justify-self: end;
    align-self: end;
    white-space: nowrap;
  }
  .btn-see-more:hover { background: var(--red-dark); }

  /* ── ABOUT ── */
  .about { background: var(--light); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-img-main {
    grid-column: 1 / -1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }
  .about-img-main img { width: 100%; height: 240px; object-fit: cover; }
  .about-img-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .about-img-badge .icon {
    width: 44px; height: 44px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
  }
  .about-img-badge strong { font-size: 18px; font-weight: 900; color: var(--dark); }
  .about-img-badge span { font-size: 12px; color: var(--gray); display: block; }
  .about-img-sub {
    border-radius: 12px;
    overflow: hidden;
  }
  .about-img-sub img { width: 100%; height: 160px; object-fit: cover; }
  .about-awards {
    background: var(--teal);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  .about-awards i { font-size: 32px; margin-bottom: 8px; }
  .about-awards strong { font-size: 22px; font-weight: 900; display: block; }
  .about-awards span { font-size: 13px; color: #99f6e4; margin-top: 4px; display: block; }
  .feature-list { list-style: none; margin: 24px 0 32px; }
  .feature-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feat-icon {
    width: 48px; height: 48px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 18px;
    flex-shrink: 0;
  }
  .feat-text strong { display: block; font-weight: 700; font-size: 16px; margin-bottom: 2px; }
  .feat-text span { font-size: 14px; color: var(--gray); }

  /* ── SERVICES ── */
  .services { background: var(--white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    background: var(--white);
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .service-img {
    width: 100%; height: 220px;
    object-fit: cover;
    display: block;
  }
  .service-body { padding: 24px; }
  .service-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .service-icon-title i { color: var(--red); font-size: 20px; }
  .service-icon-title h3 { font-size: 18px; font-weight: 700; }
  .service-body p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
  .service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray);
  }
  .service-footer i { color: var(--teal); margin-right: 4px; }
  .read-more {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .read-more:hover { color: var(--red-dark); }

  /* ── PROJECTS ── */
  .projects { background: var(--light); }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .project-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 260px;
    cursor: pointer;
  }
  .project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
  .project-card:hover img { transform: scale(1.05); }
  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  }
  .project-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .project-label span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 8px;
  }
  .project-arrow {
    width: 36px; height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    position: absolute;
    top: 16px;
    right: 16px;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/banner1.webp') center/cover no-repeat;
    opacity: 0.15;
  }
  .cta-inner {
    max-width: 1200px;
    margin: auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
  }
  .cta-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
  .cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.15; }
  .cta-inner h2 span { color: var(--red); }
  .cta-inner p { color: #94a3b8; font-size: 15px; margin-top: 12px; max-width: 500px; }
  .cta-contacts { display: flex; flex-direction: column; gap: 16px; }
  .cta-contact-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 240px;
  }
  .cta-contact-item .icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 18px;
    flex-shrink: 0;
  }
  .cta-contact-item strong { display: block; font-size: 15px; font-weight: 700; }
  .cta-contact-item span { font-size: 13px; color: #94a3b8; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--white); }
  .testimonials-outer {
    max-width: 1000px;
    margin: 0 auto;
  }
  .testimonials-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  .testimonials-carousel {
    display: flex;
    width: 100%;
    touch-action: pan-y;
    user-select: none;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
  }
  .testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--light) 0%, #f1f5f9 100%);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    border-radius: 20px;
  }
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--teal);
  }
  .testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
  }
  .testimonial-info span {
    font-size: 14px;
    color: var(--gray);
  }
  .testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
  }
  .testimonial-rating i {
    font-size: 16px;
    color: #fbbf24;
  }
  .testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin: 12px 0;
  }
  .testimonial-text::before {
    content: '"';
    font-size: 48px;
    color: var(--red);
    opacity: 0.2;
    margin-right: 4px;
  }

  .testimonials-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    position: relative;
    z-index: 20;
  }
  .testimonial-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light);
    border: 2px solid var(--border);
    color: var(--dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .testimonial-btn:hover,
  .testimonial-btn:active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: scale(1.05);
  }
  .testimonial-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .testimonial-dot.active {
    width: 24px;
    background: var(--teal);
    border-radius: 4px;
  }

  /* ── CONTACT ── */
  .contact { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
  .contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/help.jpeg') center/cover no-repeat;
    opacity: 0.08;
  }
  .contact-inner {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px;
  }
  .contact-heading { text-align: center; margin-bottom: 56px; }
  .contact-heading .section-label { justify-content: center; color: var(--teal); }
  .contact-heading h2 { color: #fff; }
  .contact-heading h2 span { color: var(--red); }
  .contact-heading p { color: #94a3b8; margin: 12px auto 0; }
  .contact-box {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  }
  .contact-info {
    background: var(--dark2);
    padding: 48px 36px;
    color: #fff;
  }
  .contact-info h3 { font-size: 20px; font-weight: 800; margin-bottom: 32px; }
  .contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
  }
  .contact-detail .icon {
    width: 44px; height: 44px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
  }
  .contact-detail strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
  .contact-detail span { font-size: 13px; color: #94a3b8; }
  .contact-form { padding: 48px 40px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    outline: none;
    transition: border-color .2s;
    background: var(--light);
  }
  .form-input:focus { border-color: var(--teal); background: #fff; }
  .form-input::placeholder { color: #94a3b8; }
  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }
  textarea.form-input { resize: vertical; min-height: 120px; }
  .btn-submit {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    margin-top: 8px;
  }
  .btn-submit:hover { background: var(--red-dark); }

  /* ── FOOTER ── */
  footer {
    background: #060d18;
    color: #fff;
    padding: 64px 0 0;
  }
  .footer-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
  }
  .footer-brand p { color: #64748b; font-size: 14px; margin: 16px 0 24px; line-height: 1.7; }
  .footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #94a3b8; margin-bottom: 10px; }
  .footer-contact-item i { color: var(--teal); width: 16px; }
  .footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
  }
  .footer-links a i { color: var(--red); font-size: 12px; }
  .footer-links a:hover { color: var(--teal); }
  .newsletter-text { color: #94a3b8; font-size: 14px; margin-bottom: 16px; }
  .newsletter-form { display: flex; flex-direction: column; gap: 10px; }
  .newsletter-input {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
  }
  .newsletter-input:focus { border-color: var(--teal); }
  .newsletter-input::placeholder { color: #64748b; }
  .btn-subscribe {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s;
  }
  .btn-subscribe:hover { background: var(--red-dark); }
  .footer-socials { display: flex; gap: 10px; margin-top: 16px; }
  .footer-socials a {
    width: 36px; height: 36px;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .footer-socials a:hover { background: var(--teal); color: #fff; }
  .footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 20px 24px;
    color: #64748b;
    font-size: 13px;
  }

  /* ── HAMBURGER MENU ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1070;
    position: relative;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ── MOBILE NAV OVERLAY PANEL ── */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 320px;
    height: 100dvh;
    background: #ffffff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 48px rgba(0,0,0,0.25);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    border-radius: 0;
    visibility: hidden;
  }
  .mobile-nav.open { transform: translateX(0); visibility: visible; }

  /* Header row: logo + close button */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .mobile-nav-logo span {
    font-size: 17px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--red), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-nav-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--light);
    color: var(--dark);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .mobile-nav-close:hover { background: var(--red); border-color: var(--red); color: #fff; }

  /* Nav links — large, clean, with dividers */
  .mobile-nav-links {
    flex: 1;
    padding: 8px 0;
  }
  .mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .mobile-nav-links a:first-child { color: var(--red); }
  .mobile-nav-links a:hover { background: var(--light); color: var(--teal); }
  .mobile-nav-links a .nav-arrow {
    font-size: 12px;
    color: var(--gray);
    transition: transform 0.2s, color 0.2s;
  }
  .mobile-nav-links a:hover .nav-arrow { transform: translateX(3px); color: var(--teal); }

  /* Footer: Book Now button */
  .mobile-nav-footer {
    padding: 24px;
    flex-shrink: 0;
  }
  .btn-mobile-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--red), var(--teal));
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .btn-mobile-book:hover { opacity: 0.92; transform: translateY(-1px); }
  .mobile-nav-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    text-decoration: none;
  }
  .mobile-nav-contact a i { color: var(--teal); width: 14px; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .hero-illustration { max-width: 320px; margin: 8px auto 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .section-header { grid-template-columns: 1fr; }
    .btn-see-more { justify-self: start; }
    .about-grid, .services-grid, .projects-grid, .cta-inner { grid-template-columns: 1fr; }
    .contact-box { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr; }
    .about-img-sub, .about-awards { display: none; }
    .nav-links { display: none; }
    .btn-book { display: none; }
    .hamburger { display: flex; }
    .nav-overlay { display: block; }
    .navbar { width: 95%; max-width: none; }
    .carousel-arrow { display: none; }
    .hero { min-height: 100svh;}
    .hero-inner { padding: 50px 20px 0; gap: 32px; }
    .hero-left { align-items: center; text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-trust { gap: 14px; justify-content: center; }
    .hero-trust-divider { display: none; }
    .hero-cta-row { gap: 10px; justify-content: center; }
    .btn-hero-primary, .btn-hero-call { padding: 13px 22px; font-size: 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .cta-contacts { flex-direction: column; }
    .cta-contact-item { min-width: auto; }
    .testimonial-slide { padding: 40px 24px; }
    .contact-info { padding: 32px 24px; }
    .contact-form { padding: 32px 24px; }
  }

  @media (max-width: 480px) {
    .hero { min-height: 100svh; }
    section { padding: 40px 0; }
    .hero-inner { padding: 40px 16px 0; }
    .container { padding: 0 16px; }
    .hero h1 { font-size: 30px; letter-spacing: -0.01em; }
    .hero p { font-size: 15px; margin-bottom: 28px; }
    .hero-badge { font-size: 11px; padding: 5px 13px; margin-bottom: 18px; }
    .hero-cta-row { flex-direction: row; flex-wrap: nowrap; gap: 8px; align-items: center; justify-content: center; }
    .btn-hero-primary, .btn-hero-call { width: auto; white-space: nowrap; justify-content: center; padding: 13px 16px; font-size: 13px; }
    .hero-trust { gap: 10px; }
    .hero-trust-item { font-size: 12px; }
    .section-title { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .testimonial-slide { padding: 32px 20px; }
    .testimonial-text { font-size: 15px; }
    .cta-inner { padding: 40px 16px; gap: 24px; }
    .cta-inner h2 { font-size: 28px; }
    .contact-inner { padding: 40px 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
    .top-bar-left { gap: 12px; font-size: 12px; }
    .navbar-inner { height: 60px; }
    .logo-text { font-size: 18px; }
    .top-bar { overflow: hidden; }
    .top-bar-inner { padding: 0 12px; }
    .navbar { width: 92%; left: 50%; transform: translateX(-50%); }
    .hero-slides, .hero-slide { max-width: 100vw; overflow: hidden; }
    .hero-illustration { max-width: 260px; }
    .hero-float-chip { font-size: 10.5px; padding: 7px 12px; }
  }