:root {
      --primary: #8c1d18;
      --primary-dark: #5e110d;
      --secondary: #d4a24c;
      --secondary-soft: #fff4de;
      --dark: #111827;
      --dark-soft: #1f2937;
      --text: #374151;
      --muted: #6b7280;
      --light: #f8fafc;
      --white: #ffffff;
      --success: #25d366;
      --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: #fffdf9;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
    }

    .section {
      padding: 90px 0;
    }

    .section-sm {
      padding: 90px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(212, 162, 76, 0.14);
      color: var(--primary);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--secondary);
      box-shadow: 0 0 0 6px rgba(212, 162, 76, 0.18);
      flex-shrink: 0;
    }

    .section-title {
      margin: 18px 0 14px;
      color: var(--dark);
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      font-weight: 900;
    }

    .section-title .serif {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      color: var(--primary);
    }

    .section-subtitle {
      max-width: 760px;
      font-size: 17px;
      line-height: 1.8;
      color: var(--muted);
    }

    .topbar {
      background: linear-gradient(90deg, var(--primary-dark), var(--primary));
      color: var(--white);
      padding: 10px 0;
      font-size: 14px;
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .topbar a {
      color: inherit;
      font-weight: 600;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(140, 29, 24, 0.08);
    }

    .navbar {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 84px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--dark);
      min-width: 0;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: grid;
      place-items: center;
      color: white;
      font-size: 22px;
      box-shadow: var(--shadow);
      flex-shrink: 0;
    }

    .brand h1 {
      margin: 0;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 800;
    }

    .brand span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 3px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-menu a {
      color: var(--dark);
      font-weight: 700;
      font-size: 15px;
      position: relative;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: 0.3s ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a.active::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 15px;
      transition: 0.35s ease;
      text-align: center;
    }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--primary), #b12d25);
      box-shadow: 0 16px 35px rgba(140, 29, 24, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
    }

    .btn-outline {
      color: var(--dark);
      border: 1px solid rgba(17, 24, 39, 0.12);
      background: var(--white);
    }

    .btn-outline:hover {
      transform: translateY(-3px);
      border-color: rgba(140, 29, 24, 0.2);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      border: 1px solid rgba(17, 24, 39, 0.1);
      background: white;
      font-size: 18px;
      color: var(--dark);
      cursor: pointer;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 68px 0 54px;
      background:
        radial-gradient(circle at top left, rgba(212, 162, 76, 0.18), transparent 32%),
        radial-gradient(circle at right, rgba(140, 29, 24, 0.08), transparent 28%),
        linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 42px;
      align-items: center;
    }

    .hero h2 {
      margin: 20px 0 16px;
      font-size: clamp(38px, 6vw, 72px);
      line-height: 0.98;
      color: var(--dark);
      letter-spacing: -0.05em;
      font-weight: 900;
    }

    .hero h2 .highlight {
      color: var(--primary);
      display: block;
    }

    .hero p {
      font-size: 17px;
      line-height: 1.9;
      color: var(--muted);
      max-width: 670px;
      margin-bottom: 26px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 16px;
    }

    .metric {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(140, 29, 24, 0.08);
      border-radius: 20px;
      padding: 18px;
      box-shadow: var(--shadow);
      min-width: 0;
    }

    .metric h3 {
      margin: 0 0 4px;
      color: var(--primary);
      font-size: 28px;
      font-weight: 900;
    }

    .metric p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }

    .hero-visual {
      position: relative;
      min-width: 0;
    }

    .hero-card {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      min-height: 690px !important;
      height: 690px !important;
      box-shadow: 0 24px 60px rgba(17, 24, 39, 0.2);
      background: #ddd;
    }
    .hero-card .swiper,
    .hero-card .swiper-slide,
    .hero-card img {
      width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center top !important;
    }

    .hero-card img {
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(17, 17, 17, 0.65) 100%);
      z-index: 2;
      pointer-events: none;
    }

    .hero-floating {
      position: absolute;
      z-index: 3;
      left: 24px;
      right: 24px;
      bottom: 24px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(12px);
      border-radius: 24px;
      padding: 22px;
      color: white;
    }

    .hero-floating h4 {
      margin: 0 0 8px;
      font-size: 24px;
      line-height: 1.2;
      color: #fff;
    }

    .hero-floating p {
      margin: 0;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.7;
      max-width: 480px;
    }

    .trust-strip {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .trust-card {
      background: white;
      border: 1px solid rgba(17, 24, 39, 0.07);
      border-radius: 22px;
      padding: 20px;
      box-shadow: var(--shadow);
      text-align: center;
      min-width: 0;
    }

    .trust-card i {
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      margin: 0 auto 14px;
      background: var(--secondary-soft);
      color: var(--primary);
      font-size: 22px;
    }

    .trust-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: var(--dark);
    }

    .trust-card p {
      margin: 0;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    .split-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 34px;
    }

    .package-grid,
    .places-grid,
    .fleet-grid,
    .why-grid,
    .footer-grid {
      display: grid;
      gap: 24px;
    }

    .package-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .places-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fleet-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
      grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    }

    .package-card,
    .place-card,
    .fleet-card,
    .why-card,
    .content-card,
    .contact-card {
      background: white;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .package-image,
    .place-image,
    .fleet-image {
      position: relative;
      overflow: hidden;
    }

    .package-image {
      height: 290px;
    }

    .place-image {
      height: 220px;
    }

    .fleet-image {
      height: 250px;
    }

    .package-image img,
    .place-image img,
    .fleet-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .package-card:hover img,
    .place-card:hover img,
    .fleet-card:hover img {
      transform: scale(1.07);
    }

    .package-tag {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(17, 24, 39, 0.72);
      backdrop-filter: blur(10px);
      color: white;
      font-size: 13px;
      font-weight: 800;
    }

    .package-content,
    .place-content,
    .fleet-content,
    .contact-card,
    .content-card {
      padding: 26px;
    }

    .package-content h3,
    .place-content h3,
    .fleet-content h3,
    .why-card h3,
    .content-card h3,
    .contact-card h3 {
      margin: 0 0 10px;
      font-size: 24px;
      color: var(--dark);
    }

    .package-content p,
    .place-content p,
    .fleet-content p,
    .why-card p,
    .content-card p,
    .contact-card p,
    .contact-card li,
    .footer-col p,
    .footer-col a {
      color: var(--muted);
      line-height: 1.4;
      font-size: 15px;
    }

    .feature-list,
    .included-list,
    .excluded-list,
    .quick-list {
      display: grid;
      gap: 12px;
      margin: 18px 0 24px;
    }

    .feature-list li,
    .included-list li,
    .excluded-list li,
    .quick-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--dark-soft);
      font-size: 15px;
      line-height: 1.7;
      font-weight: 600;
    }

    .feature-list i,
    .included-list i,
    .excluded-list i,
    .quick-list i {
      margin-top: 4px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .package-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(17, 24, 39, 0.08);
      padding-top: 18px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--secondary-soft);
      color: var(--primary);
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 800;
    }

    .inclusion-wrap {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      margin-top: 28px;
    }

    .content-card {
      border-radius: 28px;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .card-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--secondary-soft);
      color: var(--primary);
      font-size: 24px;
      flex-shrink: 0;
    }

    .place-card,
    .fleet-card,
    .why-card {
      border-radius: 24px;
    }

    .place-content h3 {
      font-size: 20px;
    }

    .fleet-content h3 {
      font-size: 22px;
    }

    .why-card {
      padding: 28px 24px;
    }

    .why-card i {
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      margin-bottom: 18px;
      background: rgba(140, 29, 24, 0.08);
      color: var(--primary);
      font-size: 24px;
    }

    .pickup-band {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      color: white;
      border-radius: 34px;
      padding: 40px;
      box-shadow: 0 24px 60px rgba(94, 17, 13, 0.25);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .pickup-band h3 {
      margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.1;
    }

    .pickup-band p {
      margin: 0;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.9;
    }

    .pickup-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .pickup-pill {
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      color: white;
      font-size: 14px;
      font-weight: 700;
      backdrop-filter: blur(10px);
    }

    .gallery-block {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
    }

    .gallery-block .swiper-slide {
      height: 500px;
      border-radius: 30px;
      overflow: hidden;
    }

    .gallery-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      margin-top: 30px;
    }

    .contact-card ul {
      display: grid;
      gap: 16px;
      margin: 22px 0 0;
    }

    .contact-card li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .contact-card li i {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--secondary-soft);
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .contact-card strong {
      color: var(--dark);
    }

    .contact-card a {
      color: var(--primary);
      font-weight: 700;
    }

    .map-wrap {
      min-height: 100%;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(17, 24, 39, 0.08);
      box-shadow: var(--shadow);
      background: #fff;
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      min-height: 480px;
      border: 0;
      filter: grayscale(0.2) contrast(1.03) saturate(0.95);
    }

    footer {
      padding: 80px 0 30px;
      background: #120f10;
      color: rgba(255, 255, 255, 0.78);
      margin-top: 90px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      color: white;
    }

    .footer-brand .brand-mark {
      box-shadow: none;
    }

    .footer-col h4 {
      color: white;
      font-size: 18px;
      margin: 0 0 18px;
    }

    .footer-col a {
      display: inline-block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.72);
      transition: 0.3s ease;
    }

    .footer-col a:hover {
      color: var(--secondary);
    }

    .footer-note {
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 14px;
    }

    .floating-actions {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 1100;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .floating-btn {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      font-size: 24px;
      box-shadow: 0 14px 30px rgba(17, 24, 39, 0.22);
      transition: 0.3s ease;
      position: relative;
    }

    .floating-btn::after {
      content: attr(data-label);
      position: absolute;
      right: 70px;
      top: 50%;
      transform: translateY(-50%);
      padding: 9px 12px;
      border-radius: 999px;
      background: var(--dark);
      color: white;
      white-space: nowrap;
      font-size: 12px;
      font-weight: 700;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease;
    }

    .floating-btn:hover {
      transform: translateY(-4px) scale(1.02);
    }

    .floating-btn:hover::after {
      opacity: 1;
    }

    .btn-whatsapp {
      background: #25d366;
    }

    .btn-call {
      background: linear-gradient(135deg, var(--primary), #bb3128);
    }

    .hero-pagination .swiper-pagination-bullet,
    .gallery-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      opacity: 1;
      background: rgba(255, 255, 255, 0.48);
    }

    .hero-pagination .swiper-pagination-bullet-active,
    .gallery-pagination .swiper-pagination-bullet-active {
      width: 30px;
      border-radius: 999px;
      background: var(--secondary);
    }

    .gallery-nav.swiper-button-next,
    .gallery-nav.swiper-button-prev {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(10px);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .gallery-nav.swiper-button-next::after,
    .gallery-nav.swiper-button-prev::after {
      font-size: 18px;
      font-weight: 900;
    }

    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      will-change: transform, opacity;
    }

    .reveal-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1199px) {
      .hero-grid,
      .pickup-band,
      .contact-wrap,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .trust-strip,
      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .places-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .pickup-list {
        justify-content: flex-start;
      }

      .hero-card {
        min-height: 560px;
      }
    }

    @media (max-width: 991px) {
      .nav-menu,
      .nav-actions .btn-outline,
      .nav-actions .btn-primary {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-menu.mobile-open {
        display: flex;
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        background: white;
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border: 1px solid rgba(17, 24, 39, 0.08);
      }

      .hero-grid,
      .package-grid,
      .inclusion-wrap,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .places-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .split-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-card {
        min-height: 500px;
      }

      .hero-cta .btn {
        width: 100%;
      }
    }

    @media (max-width: 767px) {
      .section,
      .section-sm {
        padding: 56px 0;
      }

      .topbar-inner {
        justify-content: center;
      }

      .topbar-left,
      .topbar-right {
        justify-content: center;
      }

      .navbar {
        min-height: 74px;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .brand h1 {
        font-size: 16px;
      }

      .brand span {
        font-size: 10px;
      }

      .hero {
        padding: 42px 0 32px;
      }

      .hero h2 {
        font-size: 42px;
      }

      .hero p,
      .section-subtitle {
        font-size: 15px;
      }

      .hero-metrics,
      .trust-strip,
      .places-grid,
      .fleet-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .package-image {
        height: 230px;
      }

      .place-image,
      .fleet-image {
        height: 210px;
      }

      .hero-card {
        min-height: 420px;
      }

      .hero-floating {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px;
        border-radius: 18px;
      }

      .hero-floating h4 {
        font-size: 20px;
      }

      .pickup-band {
        padding: 26px 20px;
        border-radius: 26px;
      }

      .gallery-block .swiper-slide {
        height: 340px;
      }

      .contact-card,
      .content-card,
      .package-content,
      .place-content,
      .fleet-content {
        padding: 20px;
      }

      .floating-actions {
        right: 12px;
        bottom: 12px;
      }

      .floating-btn {
        width: 54px;
        height: 54px;
        font-size: 22px;
      }

      .floating-btn::after {
        display: none;
      }
    }
.sr-card-section,
.sr-card-section *,
.sr-card-wrap,
.sr-card-wrap *{
  box-sizing: border-box;
}

.sr-card-section{
  width: 100%;
  overflow-x: hidden;
  padding: 90px 0;
}

.sr-card-wrap{
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-card-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.sr-card-mini{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  box-shadow: 0 8px 24px rgba(140, 29, 24, 0.08);
  border: 1px solid rgba(140, 29, 24, 0.08);
  margin-bottom: 14px;
}

.sr-card-head h2{
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
}

.sr-card-head p{
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

.sr-card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.sr-tour-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sr-tour-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(37, 99, 235, 0.18);
}

.sr-tour-image{
  position: relative;
  height: 245px;
  overflow: hidden;
  flex-shrink: 0;
}

.sr-tour-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0) 40%, rgba(2,6,23,0.10) 100%);
}

.sr-tour-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.sr-tour-card:hover .sr-tour-image img{
  transform: scale(1.08);
}

.sr-tour-body{
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.sr-tour-body h3{
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  word-break: break-word;
}

.sr-tour-body p{
  margin: 0 0 18px;
  color: #526071;
  font-size: 15px;
  line-height: 1.8;
  flex: 1;
  word-break: break-word;
}

.sr-tour-actions{
  display: flex;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}

.sr-btn{
  flex: 1 1 0;
  min-width: 0;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s ease;
  padding: 0 14px;
  white-space: nowrap;
}

.sr-btn-whatsapp{
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.22);
}

.sr-btn-whatsapp:hover{
  transform: translateY(-2px);
  background: #16a34a;
}

.sr-btn-call{
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(140, 29, 24, 0.20);
}

.sr-btn-call:hover{
  transform: translateY(-2px);
  background: var(--primary-dark);
}

@media (max-width: 1100px){
  .sr-card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .sr-card-section{
    padding: 56px 0;
    overflow-x: hidden;
  }

  .sr-card-wrap{
    width: calc(100% - 20px);
    max-width: 100%;
    margin: 0 auto;
  }

  .sr-card-head{
    max-width: 100%;
    margin: 0 auto 24px;
    padding: 0 2px;
  }

  .sr-card-mini{
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .sr-card-head h2{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .sr-card-head p{
    font-size: 14px;
    line-height: 1.7;
  }

  .sr-card-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sr-tour-card{
    border-radius: 20px;
  }

  .sr-tour-image{
    height: 210px;
  }

  .sr-tour-body{
    padding: 16px;
  }

  .sr-tour-body h3{
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .sr-tour-body p{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .sr-tour-actions{
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .sr-btn{
    width: 100%;
    flex: 0 0 auto;
    height: 46px;
    font-size: 13px;
    border-radius: 12px;
  }
}

@media (max-width: 480px){
  .sr-card-wrap{
    width: calc(100% - 16px);
  }

  .sr-tour-image{
    height: 190px;
  }

  .sr-tour-body{
    padding: 14px;
  }

  .sr-tour-body h3{
    font-size: 17px;
  }

  .sr-btn{
    height: 44px;
    font-size: 13px;
  }
}
.sr-cars-section{
  position: relative;
  padding: 90px 0;
  
  overflow: hidden;
}

.sr-cars-section *,
.sr-cars-wrap *,
.sr-car-card *{
  box-sizing: border-box;
}

.sr-cars-wrap{
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-cars-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.sr-cars-mini{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  border: 1px solid rgba(140, 29, 24, 0.10);
  box-shadow: 0 10px 26px rgba(140, 29, 24, 0.08);
  margin-bottom: 14px;
}

.sr-cars-head h2{
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  color: #0f172a;
}

.sr-cars-head p{
  margin: 0;
  color: #526071;
  font-size: 16px;
  line-height: 1.85;
}

.sr-cars-slider-wrap{
  position: relative;
  padding: 10px 56px 50px;
}

.srCarsSwiper{
  overflow: visible;
}

.srCarsSwiper .swiper-slide{
  height: auto;
}

.sr-car-card{
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.98);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sr-car-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
  border-color: rgba(140, 29, 24, 0.16);
}

.sr-car-image{
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #eaf4fb;
}

.sr-car-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 45%, rgba(2, 6, 23, 0.10) 100%);
}

.sr-car-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.sr-car-card:hover .sr-car-image img{
  transform: scale(1.08);
}

.sr-car-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 10px 25px rgba(140, 29, 24, 0.14);
}

.sr-car-body{
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sr-car-body h3{
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
}

.sr-car-body p{
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #526071;
}

.sr-car-features{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sr-car-features li{
  position: relative;
  padding: 11px 12px 11px 38px;
  border-radius: 14px;
  background: #f8fbff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(140, 29, 24, 0.08);
  min-width: 0;
}

.sr-car-features li::before{
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sr-car-actions{
  margin-top: auto;
  display: flex;
  gap: 12px;
}

.sr-car-btn{
  flex: 1;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: all .3s ease;
  padding: 0 14px;
  white-space: nowrap;
}

.sr-car-btn-whatsapp{
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.24);
}

.sr-car-btn-whatsapp:hover{
  background: #16a34a;
  transform: translateY(-2px);
}

.sr-car-btn-call{
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(140, 29, 24, 0.22);
}

.sr-car-btn-call:hover{
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.sr-cars-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  color: var(--primary);
  cursor: pointer;
  z-index: 5;
  transition: all .3s ease;
  border: 1px solid rgba(140, 29, 24, 0.08);
}

.sr-cars-nav:hover{
  background: var(--primary);
  color: #ffffff;
}

.sr-cars-prev{
  left: 0;
}

.sr-cars-next{
  right: 0;
}

.sr-cars-pagination{
  position: static !important;
  margin-top: 28px;
  text-align: center;
}

.sr-cars-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(15, 76, 129, 0.25);
  opacity: 1;
  transition: all .3s ease;
}

.sr-cars-pagination .swiper-pagination-bullet-active{
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 1199px){
  .sr-cars-slider-wrap{
    padding: 8px 42px 46px;
  }
}

@media (max-width: 991px){
  .sr-cars-section{
    padding: 90px 0;
  }

  .sr-cars-wrap{
    width: min(100%, calc(100% - 24px));
  }

  .sr-cars-slider-wrap{
    padding: 8px 34px 42px;
  }

  .sr-car-image{
    height: 220px;
  }
}

@media (max-width: 767px){
  .sr-cars-section{
    padding: 56px 0;
  }

  .sr-cars-wrap{
    width: calc(100% - 18px);
  }

  .sr-cars-head{
    margin-bottom: 24px;
  }

  .sr-cars-head h2{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.2;
  }

  .sr-cars-head p{
    font-size: 14px;
    line-height: 1.75;
  }

  .sr-cars-slider-wrap{
    padding: 0 0 38px;
  }

  .sr-cars-nav{
    display: none;
  }

  .sr-car-card{
    border-radius: 22px;
  }

  .sr-car-image{
    height: 210px;
  }

  .sr-car-body{
    padding: 16px;
  }

  .sr-car-body h3{
    font-size: 20px;
    margin-bottom: 8px;
  }

  .sr-car-body p{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .sr-car-features{
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .sr-car-features li{
    font-size: 13px;
    padding: 10px 12px 10px 36px;
  }

  .sr-car-actions{
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .sr-car-btn{
    width: 100%;
    flex: unset;
    height: 46px;
    font-size: 13px;
    border-radius: 12px;
  }
}

@media (max-width: 480px){
  .sr-car-image{
    height: 190px;
  }

  .sr-cars-mini{
    font-size: 12px;
    padding: 7px 12px;
  }

  .sr-car-body{
    padding: 14px;
  }

  .sr-car-body h3{
    font-size: 18px;
  }

  .sr-car-btn{
    height: 44px;
    font-size: 13px;
  }
}
.hyd-places-section{
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  
}

.hyd-places-section *,
.hyd-places-wrap *,
.hyd-place-card *{
  box-sizing: border-box;
}

.hyd-places-wrap{
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.hyd-places-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.hyd-places-mini{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px;
  border: 1px solid rgba(140, 29, 24, 0.08);
  box-shadow: 0 12px 28px rgba(140, 29, 24, 0.08);
  margin-bottom: 14px;
}

.hyd-places-head h2{
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  color: #0f172a;
}

.hyd-places-head p{
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #526071;
}

.hyd-places-slider-area{
  position: relative;
  padding: 8px 56px 48px;
}

.hydPlacesSwiper{
  overflow: visible;
}

.hydPlacesSwiper .swiper-slide{
  height: auto;
}

.hyd-place-card{
  position: relative;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.hyd-place-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
  border-color: rgba(140, 29, 24, 0.18);
}

.hyd-place-image{
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f7ebe7;
}

.hyd-place-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,23,0) 45%, rgba(2,6,23,0.18) 100%);
}

.hyd-place-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .75s ease;
}

.hyd-place-card:hover .hyd-place-image img{
  transform: scale(1.08);
}

.hyd-place-content{
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hyd-place-tag{
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(140, 29, 24, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
}

.hyd-place-content h3{
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
}

.hyd-place-content p{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #526071;
  flex: 1;
}

.hyd-place-actions{
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.hyd-place-btn{
  flex: 1;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: all .3s ease;
  padding: 0 14px;
  white-space: nowrap;
}

.hyd-place-btn-whatsapp{
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.24);
}

.hyd-place-btn-whatsapp:hover{
  background: #16a34a;
  transform: translateY(-2px);
}

.hyd-place-btn-call{
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(140, 29, 24, 0.22);
}

.hyd-place-btn-call:hover{
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hyd-places-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  transition: all .3s ease;
}

.hyd-places-nav:hover{
  background: var(--primary);
  color: #ffffff;
}

.hyd-places-prev{
  left: 0;
}

.hyd-places-next{
  right: 0;
}

.hyd-places-pagination{
  position: static !important;
  margin-top: 28px;
  text-align: center;
}

.hyd-places-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  background: rgba(140, 29, 24, 0.22);
  opacity: 1;
  transition: all .3s ease;
}

.hyd-places-pagination .swiper-pagination-bullet-active{
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 1199px){
  .hyd-places-slider-area{
    padding: 8px 42px 44px;
  }
}

@media (max-width: 991px){
  .hyd-places-section{
    padding: 90px 0;
  }

  .hyd-places-wrap{
    width: min(100%, calc(100% - 24px));
  }

  .hyd-places-slider-area{
    padding: 8px 34px 40px;
  }

  .hyd-place-image{
    height: 230px;
  }
}

@media (max-width: 767px){
  .hyd-places-section{
    padding: 56px 0;
  }

  .hyd-places-wrap{
    width: calc(100% - 18px);
  }

  .hyd-places-head{
    margin-bottom: 24px;
  }

  .hyd-places-head h2{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.2;
  }

  .hyd-places-head p{
    font-size: 14px;
    line-height: 1.75;
  }

  .hyd-places-slider-area{
    padding: 0 0 36px;
  }

  .hyd-places-nav{
    display: none;
  }

  .hyd-place-card{
    border-radius: 22px;
  }

  .hyd-place-image{
    height: 210px;
  }

  .hyd-place-content{
    padding: 16px;
  }

  .hyd-place-content h3{
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hyd-place-content p{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .hyd-place-actions{
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hyd-place-btn{
    width: 100%;
    flex: unset;
    height: 46px;
    font-size: 13px;
    border-radius: 12px;
  }
}

@media (max-width: 480px){
  .hyd-place-image{
    height: 190px;
  }

  .hyd-places-mini{
    font-size: 12px;
    padding: 7px 12px;
  }

  .hyd-place-content{
    padding: 14px;
  }

  .hyd-place-content h3{
    font-size: 18px;
  }

  .hyd-place-btn{
    height: 44px;
    font-size: 13px;
  }
}
.hs-outstation{
  position: relative;
  padding: 90px 0;
  
  overflow: hidden;
}

.hs-outstation-wrap{
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.hs-outstation-hero{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 42px;
}

.hs-outstation-left{
  position: relative;
  z-index: 2;
}

.hs-outstation-kicker{
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff1eb;
  color: #0d5a98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(13, 90, 152, 0.08);
}

.hs-outstation-left h2{
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  color: #0d2033;
  font-weight: 800;
}

.hs-outstation-lead{
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.9;
  color: #5b7389;
  max-width: 620px;
}

.hs-outstation-features{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
  max-width: 620px;
}

.hs-outstation-feature{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(11, 45, 82, 0.05);
}

.hs-outstation-feature i{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #b12d25);
  color: #fff;
  font-size: 15px;
}

.hs-outstation-feature span{
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.hs-outstation-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hs-outstation-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: all .35s ease;
}

.hs-outstation-btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(140, 29, 24, 0.18);
}

.hs-outstation-btn-primary:hover{
  transform: translateY(-3px);
  color: #fff;
}

.hs-outstation-btn-light{
  background: #ffffff;
  color: var(--dark);
  border: 1px solid rgba(140, 29, 24, 0.12);
}

.hs-outstation-btn-light:hover{
  transform: translateY(-3px);
  color: var(--dark);
  box-shadow: 0 12px 28px rgba(140, 29, 24, 0.08);
}

.hs-outstation-right{
  position: relative;
  min-height: 620px;
}

.hs-visual-card{
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(140, 29, 24, 0.16);
  border: 1px solid rgba(255,255,255,0.55);
}

.hs-visual-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hs-visual-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 36, 0.84), rgba(8, 22, 36, 0.08));
}

.hs-visual-overlay{
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}

.hs-visual-overlay span{
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hs-visual-overlay h3{
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
}

.hs-visual-card-main{
  width: 73%;
  height: 430px;
  left: 0;
  top: 100px;
  z-index: 2;
}

.hs-visual-card-top{
  width: 44%;
  height: 240px;
  right: 0;
  top: 0;
  z-index: 3;
}

.hs-visual-card-bottom{
  width: 48%;
  height: 250px;
  right: 18px;
  bottom: 35px;
  z-index: 4;
}

.hs-route-intro{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0, 51, 102, 0.08);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(6, 37, 69, 0.06);
}

.hs-route-intro-text h3{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  color: #0d2238;
  font-weight: 800;
}

.hs-route-intro-text p{
  margin: 0;
  color: #5d7489;
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 920px;
}

.hs-route-intro-badge{
  min-width: 140px;
  height: 140px;
  border-radius: 50%;
  background:var(--primary) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(140, 29, 24, 0.18);
}

.hs-route-intro-badge strong{
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.hs-route-intro-badge span{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  opacity: .9;
}

.hs-route-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hs-route-card{
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 51, 102, 0.08);
  box-shadow: 0 16px 38px rgba(6, 37, 69, 0.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.hs-route-card:hover{
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(6, 37, 69, 0.13);
  border-color: rgba(13, 90, 152, 0.18);
}

.hs-route-card img{
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
}

.hs-route-card-body{
  padding: 18px 18px 20px;
}

.hs-route-card-body h3{
  margin: 0 0 8px;
  color: #10263c;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 800;
}

.hs-route-card-body p{
  margin: 0;
  color: #667c91;
  font-size: 14.5px;
  line-height: 1.75;
}

.hs-route-seo-text{
  max-width: 1020px;
  margin: 26px auto 0;
  text-align: center;
}

.hs-route-seo-text p{
  margin: 0;
  color: #60788d;
  font-size: 15px;
  line-height: 1.9;
}

.hs-outstation-cta{
  margin-top: 38px;
  padding: 34px;
  border-radius: 30px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 24px 60px rgba(0, 51, 102, 0.2);
}

.hs-outstation-cta-text{
  max-width: 760px;
}

.hs-outstation-cta-text h3{
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.14;
  color: #fff;
  font-weight: 800;
}

.hs-outstation-cta-text p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.8;
}

.hs-outstation-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hs-outstation-btn-green{
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

.hs-outstation-btn-green:hover{
  transform: translateY(-3px);
  color: #fff;
}

.hs-outstation-btn-white{
  background: #fff;
  color: #10263c;
}

.hs-outstation-btn-white:hover{
  transform: translateY(-3px);
  color: #10263c;
}

@media (max-width: 1199px){
  .hs-route-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hs-outstation-right{
    min-height: 560px;
  }

  .hs-visual-card-main{
    height: 380px;
  }

  .hs-route-intro{
    align-items: flex-start;
  }
}

@media (max-width: 991px){
  .hs-outstation{
    padding: 80px 0;
  }

  .hs-outstation-hero{
    grid-template-columns: 1fr;
  }

  .hs-outstation-right{
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hs-visual-card{
    position: relative;
    width: 100%;
    height: 260px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hs-visual-card-main{
    grid-column: span 2;
    height: 330px;
  }

  .hs-route-intro{
    flex-direction: column;
    align-items: flex-start;
  }

  .hs-route-intro-badge{
    min-width: 120px;
    width: 120px;
    height: 120px;
  }

  .hs-route-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-outstation-cta{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px){
  .hs-outstation-wrap{
    width: min(100%, calc(100% - 20px));
  }

  .hs-outstation-left h2{
    font-size: 34px;
  }

  .hs-outstation-lead{
    font-size: 14px;
    line-height: 1.85;
  }

  .hs-outstation-features{
    grid-template-columns: 1fr;
  }

  .hs-outstation-actions{
    flex-direction: column;
  }

  .hs-outstation-btn{
    width: 100%;
  }

  .hs-outstation-right{
    grid-template-columns: 1fr;
  }

  .hs-visual-card-main{
    grid-column: span 1;
    height: 270px;
  }

  .hs-visual-card{
    height: 220px;
    border-radius: 22px;
  }

  .hs-visual-overlay{
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .hs-visual-overlay h3{
    font-size: 20px;
  }

  .hs-route-intro{
    padding: 22px 16px;
    border-radius: 22px;
  }

  .hs-route-intro-text h3{
    font-size: 24px;
  }

  .hs-route-intro-text p{
    font-size: 14px;
    line-height: 1.8;
  }

  .hs-route-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hs-route-card{
    border-radius: 20px;
  }

  .hs-route-card img{
    height: 220px;
  }

  .hs-route-card-body{
    padding: 16px;
  }

  .hs-route-card-body h3{
    font-size: 19px;
  }

  .hs-route-card-body p{
    font-size: 14px;
  }

  .hs-route-seo-text p{
    font-size: 14px;
    line-height: 1.85;
  }

  .hs-outstation-cta{
    padding: 24px 16px;
    border-radius: 22px;
  }

  .hs-outstation-cta-actions{
    width: 100%;
    flex-direction: column;
  }

  .hs-outstation-cta-actions .hs-outstation-btn{
    width: 100%;
  }
}