:root{
  --bg:#0c0d0f;          /* deep obsidian */
  --bg-2:#121317;        /* panels */
  --ink:#e8eaee;         /* primary text */
  --muted:#9aa3ad;       /* secondary */
  --brand:#c9a66b;       /* champagne gold */
  --accent:#5a6c7d;      /* steel */
  --ok:#1bbf72;
  --danger:#e15b64;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius: 18px;
  --glass: rgba(255,255,255,.06);
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,body{height:100%; overflow-x: hidden;}
body{
  margin:0; 
  background:var(--bg); 
  color:var(--ink); 
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6; 
  -webkit-font-smoothing:antialiased; 
  text-rendering:optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a{color:var(--brand); text-decoration:none}
img{max-width:100%; display:block}

/* Header */
header {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(238, 238, 238, 0.8);
  position:sticky; 
  top:0; 
  z-index:50;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 130px;
  width: auto;
}

/* Menu */
.menu {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #c9a66b;
}

/* Botón Contact */
.btn-contact {
  padding: 10px 24px;
  border-radius: 25px;
  background: linear-gradient(135deg, #c9a66b, #b88f4a);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}

.btn-contact:hover {
  background: linear-gradient(135deg, #b88f4a, #c9a66b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }
  
  * {
    max-width: 100vw !important;
  }
  
  section, .container, .hero-background, .hero-bg-image, .hero-card-overlay {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  .navbar {
    padding: 10px 15px;
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  
  /* Mobile hero layout changes */
  .hero-background {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    position: relative;
    background: #000;
  }
  
  .hero-bg-image {
    position: relative !important;
    height: 50vh;
    order: 1;
    overflow: hidden;
  }
  
  .hero-video {
    display: none !important;
  }
  
  .hero-mobile-image {
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transform: none !important;
    z-index: 1;
  }
  
  .hero-card-overlay {
    position: relative !important;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 70px 5% 0px;
    background: #000;
    z-index: 2;
  }
  
  .hero-card {
    background: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .logo {
    order: 1;
  }

  .logo img {
    height: 90px;
  }

  .contact {
    order: 2;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.8);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: center;
  }

  .menu a:last-child {
    border-bottom: none;
  }

  .btn-contact {
    font-size: 14px;
    padding: 7px 16px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px 10px;
  }

  .logo img {
    height: 70px;
  }

  .menu a {
    font-size: 16px;
    padding: 12px;
  }
}

/* Old topbar styles - removed */

.container{ 
  width:min(1160px, 92vw); 
  margin:0 auto; 
}

.row{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:20px; 
  padding:14px 0; 
}

.brand{ 
  display:flex; 
  align-items:center; 
  gap:12px; 
  font-weight:800; 
  letter-spacing:.5px; 
}

.badge{ 
  font-size:.72rem; 
  color:#0b0b0b; 
  background:linear-gradient(135deg,#f0e4c3,#b88f4a); 
  padding:2px 8px; 
  border-radius:999px; 
  font-weight:700 
}

nav ul{
  display:flex; 
  list-style:none; 
  gap:22px; 
  margin:0; 
  padding:0
}

nav a{ 
  color:var(--ink); 
  opacity:.86 
}

nav a:hover{ 
  opacity:1 
}

.cta{ 
  display:inline-flex; 
  align-items:center; 
  gap:10px; 
  padding:10px 16px; 
  border-radius:999px; 
  border:1px solid rgba(255,255,255,.18); 
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); 
  box-shadow:var(--shadow) 
}

.cta strong{ 
  letter-spacing:.2px 
}

/* Hero Background Section */
.hero-background{ 
  position:relative; 
  min-height:86vh; 
  display:flex; 
  align-items:center; 
  justify-content:flex-start; 
  overflow:hidden; 
  padding: 0 5%;
}

.hero-background::before{
  content:""; 
  position:absolute; 
  inset:0; 
  background:
    radial-gradient(1200px 600px at 10% 90%, rgba(201,166,107,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.6));
  pointer-events:none;
}

.hero-bg-image{ 
  position:absolute; 
  inset:0; 
}

.hero-bg-image img,
.hero-bg-image video { 
  width:100%; 
  height:100%; 
  object-fit:cover; 
  filter:contrast(1.05) saturate(1.05) brightness(.86);
}

.hero-bg-image img {
  transform: scaleX(-1);
}

.hero-bg-image video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

/* Show video on desktop, hide mobile container */
.hero-video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mobile-container {
  display: none;
}

.hero-card-overlay{
  position:relative; 
  z-index:1; 
  display:flex; 
  justify-content:flex-start; 
  align-items:center; 
  width:100%; 
  max-width:1160px; 
  margin:0 auto; 
  padding:80px 0;
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); 
  border:1px solid rgba(255,255,255,.2); 
  backdrop-filter: blur(20px);
  border-radius:var(--radius); 
  padding:40px; 
  box-shadow:var(--shadow); 
  max-width:560px; 
  width:100%;
  margin:20px;
}

/* Features Section */
.features-section{
  padding:72px 0; 
  background:linear-gradient(180deg, #14161a, #0c0d0f);
  border-top:1px solid rgba(255,255,255,.06);
}

.kicker{ 
  text-transform:uppercase; 
  letter-spacing:.18em; 
  font-size:.78rem; 
  color:var(--muted) 
}

h1.title{ 
  font-family:"Playfair Display",serif; 
  font-size: clamp(2.2rem, 4.8vw, 4.2rem); 
  line-height:1.1; 
  margin:.2rem 0 1rem 
}

.subtitle{ 
  font-size:1.15rem; 
  color:var(--muted); 
  max-width:60ch 
}

.hero-actions{ 
  display:flex; 
  gap:14px; 
  margin-top:24px; 
  flex-wrap:wrap 
}

.btn{ 
  padding:12px 18px; 
  border-radius:999px; 
  border:1px solid rgba(255,255,255,.16); 
  background:var(--glass); 
  color:var(--ink); 
  font-weight:600; 
  backdrop-filter: blur(10px); 
}

.btn.primary{ 
  background:linear-gradient(135deg, #b88f4a, #f0e4c3); 
  color:#0b0b0b 
}

.discreet{ 
  display:inline-flex; 
  align-items:center; 
  gap:8px; 
  font-size:.92rem; 
  opacity:.85; 
  margin-top:8px 
}

.card-grid{ 
  display:grid; 
  grid-template-columns:repeat(12,1fr); 
  gap:18px 
}

.card{ 
  grid-column: span 4; 
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(201, 166, 107, 0.2);
  padding:24px; 
  border-radius:12px; 
  box-shadow:var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 166, 107, 0.15);
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.12), rgba(255, 255, 255, 0.05));
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.card h3{ 
  margin: 0 0 10px 0; 
  font-size:1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.card p{ 
  font-size:.9rem;
  color:var(--muted); 
  margin:0;
  line-height: 1.5;
}

/* Sections */
section{ 
  padding:72px 0 
}

/* Secure Travel Section - Special Background */
#secure-travel {
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.08) 0%, rgba(90, 108, 125, 0.05) 100%);
  border-top: 1px solid rgba(201, 166, 107, 0.15);
  border-bottom: 1px solid rgba(201, 166, 107, 0.15);
  position: relative;
}

#secure-travel ul {
  list-style: none;
  padding: 0;
}

#secure-travel li {
  list-style: none;
}

#secure-travel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 166, 107, 0.06), transparent 70%);
  pointer-events: none;
}

.section-title{ 
  font-family:"Playfair Display",serif; 
  font-size: clamp(1.6rem, 3vw, 2.2rem); 
  margin:0 0 10px 
}

.section-sub{ 
  color:var(--muted); 
  margin:0 0 28px 
}

.specs-cards { 
  display:grid; 
  grid-template-columns: repeat(3, minmax(0,1fr)); 
  gap:18px 
}

.spec-card {
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(201, 166, 107, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 166, 107, 0.15);
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.12), rgba(255, 255, 255, 0.05));
}

.spec-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 100%;
  height: 100%;
}

.spec-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--ink);
}

.spec-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.split{ 
  display:grid; 
  grid-template-columns:1.1fr .9fr; 
  gap:28px; 
  align-items:center 
}

.panel{ 
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); 
  border:1px solid rgba(255,255,255,.08); 
  padding:26px; 
  border-radius:var(--radius) 
}

/* Logo in header */
.brand .logo{ 
  height:28px; 
  width:auto; 
  filter:brightness(1.1) contrast(1.05); 
}

/* Product Spec Hero (inspired by your reference) */
.spec-hero{ 
  padding:72px 0; 
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(201,166,107,.09), transparent 60%),
    linear-gradient(180deg, #14161a, #0c0d0f);
  border-top:1px solid rgba(255,255,255,.06);
}

.spec-hero-grid{ 
  display:grid; 
  grid-template-columns:.95fr 1.05fr; 
  gap:28px; 
  align-items:center 
}

/* Premium Gradient Border Card */
.escalade-card {
  max-width: 540px;
  border: 0;
  width: 100%;
  margin-inline: auto;
}

.container-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(71deg, #080509, #1a171c, #080509);
  background-clip: padding-box;
  border-radius: 45px;
  padding: 50px 40px;
}

.container-card .icon-wrapper {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.container-card .icon-wrapper svg {
  width: 80px;
  height: 80px;
}

.bg-gold-box {
  position: relative;
}

.bg-gold-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}

.bg-gold-box::after {
  background: linear-gradient(71deg, #110e0e, #c9a66b, #110e0e);
}

.escalade-title {
  font-family:"Playfair Display",serif;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-style: normal;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  padding-bottom: 16px;
  text-align: center;
}

.escalade-description {
  font-weight: 500;
  line-height: 1.7;
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.panel-hero{ 
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.03)); 
  border:1px solid rgba(255,255,255,.08); 
  border-radius:28px; 
  padding:28px; 
  box-shadow:var(--shadow) 
}

.title-hero{ 
  font-family:"Playfair Display",serif; 
  font-size: clamp(1.8rem,3.5vw,3rem); 
  margin:.2rem 0 .6rem 
}

.lead-hero{ 
  color:var(--muted); 
  margin:0 0 1rem 
}

.media-hero{ 
  position:relative; 
  background:linear-gradient(180deg, rgba(154,163,173,.22), rgba(154,163,173,.08)); 
  padding:10px; 
  border-radius:32px; 
  box-shadow:var(--shadow) 
}

.media-hero img{ 
  border-radius:24px 
}

.protection-levels{ 
  position:absolute; 
  top:12px; 
  right:12px; 
  display:flex; 
  gap:8px 
}

.chip{ 
  background:linear-gradient(135deg, #b88f4a, #f0e4c3); 
  color:#0b0b0b; 
  font-weight:800; 
  font-size:.8rem; 
  padding:6px 10px; 
  border-radius:999px 
}

/* Dimensions panel (light technical look) */
.dimensions .dim-wrap{ 
  background:linear-gradient(180deg, #e5e7ea, #cfd4da); 
  color:#0b0b0b; 
  border-radius:24px; 
  overflow:hidden; 
  box-shadow:var(--shadow) 
}

.dimensions img{ 
  width:100%; 
  height:auto; 
  display:block; 
  filter:grayscale(10%) contrast(1.05) 
}

.dim-list{ 
  display:grid; 
  grid-template-columns:repeat(2,minmax(0,1fr)); 
  gap:10px; 
  padding:16px 20px; 
  background:linear-gradient(180deg, #ffffffaa, #ffffff80);
  color: #000000;
}

.dim-list li{ 
  list-style:none;
  color: #000000;
}

.dim-list li strong {
  color: #000000;
}

/* Floating chat CTA */
.floating-chat{ 
  position:fixed; 
  right:16px; 
  bottom:18px; 
  z-index:60; 
  background:linear-gradient(135deg,#28d366,#1bbf72); 
  color:#0b0b0b; 
  font-weight:800; 
  padding:10px 14px; 
  border-radius:999px; 
  box-shadow:var(--shadow) 
}

.floating-chat:hover{ 
  transform:translateY(-1px) 
}

/* Services */
.services-grid { 
  display:grid; 
  grid-template-columns: repeat(2, minmax(0,1fr)); 
  gap:18px 
}

.service-wrapper {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  padding: 26px;
  border-radius: var(--radius);
}

.services-heading {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--ink);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.service-card {
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(201, 166, 107, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201, 166, 107, 0.15);
  border-color: var(--brand);
  background: linear-gradient(135deg, rgba(201, 166, 107, 0.12), rgba(255, 255, 255, 0.05));
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--ink);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.rate-banner {
  background: linear-gradient(135deg, var(--brand), #b8955a);
  color: #0c0d0f;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}

.services ul{ 
  margin:0; 
  padding-left:1.2rem 
}

.rate{ 
  display:inline-block; 
  margin-top:10px; 
  font-weight:800; 
  color:var(--brand) 
}

/* Form Styles */
form {
  margin-top: 20px;
}

form label {
  display: block;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

form input[type="text"]::placeholder,
form input[type="tel"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
  color: rgba(154, 163, 173, 0.6);
  font-size: 13px;
}

form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
  line-height: 1.5;
}

form button[type="submit"] {
  margin-top: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--brand), #b8955a);
  color: #0c0d0f;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 166, 107, 0.2);
}

form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 166, 107, 0.3);
}

/* Input validation states */
form input:invalid:not(:placeholder-shown),
form textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

form input:valid:not(:placeholder-shown),
form textarea:valid:not(:placeholder-shown) {
  border-color: var(--ok);
}

/* Responsive form adjustments */
@media (max-width: 640px) {
  form input[type="text"],
  form input[type="tel"],
  form input[type="email"],
  form textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel {
  position: relative;
  width: 100%;
  height: 400px;
  background: #000;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
  border-radius: 5px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: var(--brand);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Mobile carousel adjustments */
@media (max-width: 768px) {
  .carousel {
    height: 300px;
  }
  
  .carousel-btn {
    padding: 10px 15px;
    font-size: 16px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: 250px;
  }
  
  .carousel-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Footer */
#footer {
  background: #ffffff;
  color: #333;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  border-top: 1px solid #eee;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  text-align: center;
}

.footer-left {
  text-align: left;
}

.footer-logo {
  width: 180px;
  margin-bottom: 10px;
}

.slogan {
  font-size: 12px;
  margin: 5px 0 20px;
  color: #666;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c9a66b;
}

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-icons a {
  font-size: 28px;
  color: #333;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #c9a66b;
}

.footer-right {
  text-align: right;
}

.footer-right p {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}

.footer-right i {
  margin-right: 8px;
  color: #c9a66b;
}

.footer-right a {
  color: #333;
  text-decoration: none;
}

.footer-right a:hover {
  color: #c9a66b;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 15px;
  color: #666;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.footer-bottom span {
  color: #333;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }
}

.small{ 
  font-size:.95rem; 
  color:var(--muted) 
}

/* Responsive */
@media (max-width: 980px){
  .hero-background{ 
    justify-content:center; 
    padding:120px 5% 80px;
    width: 100%;
    max-width: 100%;
  }
  .hero-card-overlay{
    justify-content:center;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .hero-card{
    max-width:100%;
    width: 100%;
    box-sizing: border-box;
  }
  .card{ 
    grid-column: span 6 
  }
  .split{ 
    grid-template-columns: 1fr 
  }
  .specs-cards { 
    grid-template-columns:1fr 1fr 
  }
  .services-grid { 
    grid-template-columns: 1fr 
  }
  
  .service-cards {
    grid-template-columns: 1fr;
  }
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-tagline h3 {
    font-size: 1.5rem;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 15px;
  }
  
  .separator {
    display: none;
  }
  .spec-hero-grid{ 
    grid-template-columns:1fr 
  } 
  .dim-list{ 
    grid-template-columns:1fr 
  }
}

@media (max-width: 640px){
  .card{ 
    grid-column: 1/-1 
  }
  .specs-cards { 
    grid-template-columns:1fr 
  }
  
  .spec-card {
    padding: 18px;
  }
  
  .spec-icon {
    width: 50px;
    height: 50px;
  }
  .subtitle{ 
    font-size:1rem 
  }
  nav ul{ 
    display:none 
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .service-card {
    padding: 15px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .rate-banner {
    font-size: 1rem;
    padding: 12px;
  }
  
  .footer-logo-img {
    height: 60px;
  }
  
  .footer-tagline h3 {
    font-size: 1.3rem;
  }
  
  .footer-contact a {
    font-size: 1rem;
  }
  
  .footer-website a {
    font-size: 1.1rem;
  }
}

/* Appear on scroll */
[data-animate]{ 
  opacity:0; 
  transform:translateY(10px); 
  transition:all .6s ease 
}

[data-animate].in{ 
  opacity:1; 
  transform:none 
}