/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
}

/* ===== COMMON ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    rgba(8, 25, 55, 0.199),
    rgba(10, 40, 80, 0.199)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.021);
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  background: #3fbf3f;
  color: #fff;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
}

.brand-text {
  font-size: 18px;
  font-weight: 600;
}

.menu {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #fff;
  opacity: 0.9;
}

.menu .active a {
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 10px;
}

.call-btn {
  background: #2f80ed;
  padding: 6px 16px;
  border-radius: 10px;
}

.call-btn:hover {
  background: #2a6fca;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: auto;
  padding-top: 100px;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(60,120,255,0.35), transparent 45%),
    radial-gradient(circle at bottom right, rgba(120,200,255,0.35), transparent 45%),
    linear-gradient(135deg, #0f2a44, #0b3d66);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  margin-top: -20px;
}

.hero-text h1 {
  font-size: 24px;
  margin-bottom: 8px;
  max-width: none;
  white-space: nowrap;
  line-height: 1.2;
}

.typing-text {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
  min-height: 20px;
  display: block;
}

.typing-text span {
  display: inline-block;
}

.hero-subtext {
  font-size: 15px;
  color: #d6e9ff;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.btn {
  padding: 12px 15px;
  border-radius: 12px;
  text-decoration: wavy;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn.primary {
  background: #3fbf3f;
  color: #fff;
}

.btn.primary:hover {
  background: #329c32;
  transform: translateY(-2px);
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.trust-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 13px;
  backdrop-filter: blur(6px);
  margin-bottom: 10px;
  margin-left: 10px;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
}


/* ===== OUR SERVICES ===== */
.services {
  padding-top: 30px;
  padding-bottom: 40px;
  position: relative;

  background:
    radial-gradient(circle at top left, rgba(160, 180, 255, 0.45), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 180, 210, 0.45), transparent 40%),
    linear-gradient(135deg, #a9c4ff, #cfe7ff);
}

.services-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b1a33;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-radius: 22px;
  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.28);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 20px 40px rgba(0,0,0,0.08);

  transition: all 0.35s ease;

  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 30px 60px rgba(0,0,0,0.12);
}

.service-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1a33;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(11, 26, 51, 0.932);
  margin-top: auto;
}

/* ===== QUICK WHATSAPP ENQUIRY ===== */

#quick-whatsapp {
  background: radial-gradient(circle at top left, rgba(160, 180, 255, 0.45), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 180, 210, 0.45), transparent 40%),
    linear-gradient(135deg, #a9c4ff, #cfe7ff);
  padding: 30px 0 40px;
  color: #0b1930;
}

#quick-whatsapp .section-title {
  text-align: center;
  margin-bottom: 4px;
}

#quick-whatsapp .section-subtitle {
  text-align: center;
  margin-bottom: 6px;
}

.wa-form {
  background: rgba(15, 110, 31, 0.151);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 10px;
  border-radius: 10px;
  padding: 10px;
  max-width: none;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.356);
}

.wa-form-row {
  margin-bottom: 14px;
}

.wa-form-row label {
  display: block;
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
}

.wa-form-row:first-child {
  margin-top: 2px;
}

.wa-form-row input,
.wa-form-row select,
.wa-form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  background: rgba(228, 226, 226, 0.95);
  color: #111;
}

.wa-button {
  background: #2ecc71;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.wa-button:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

.wa-full {
  width: 100%;
}


/* SLIDER GALLERY */

#gallery {
  padding: 30px 0 40px;
  background: radial-gradient(circle at top left, rgba(160, 180, 255, 0.45), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 180, 210, 0.45), transparent 40%),
    linear-gradient(135deg, #a9c4ff, #cfe7ff);
}

#gallery .section-title {
font-size: 26px;
text-align: center;
font-weight: 700;
color: #0b1930;
margin-bottom: 6px;
}


#gallery .section-subtitle {
font-size: 14px;
text-align: center;
color: #110e;
margin-bottom: 36px;
}

.slider-group {
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.slider-block {
  flex:1 1 280px;
  background:rgba(136, 134, 133, 0.315);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius:14px;
  padding:14px;
  transition:.25s ease;
}

.slider-block:hover {
  transform:translateY(-3px);
  box-shadow:0 14px 10px rgba(0,0,0,.10);
}

.slider-block h3 {
  margin-top:0;
  font-size:15px;
  margin-bottom:10px;
  font-weight:600;
  color:#111;
}

.slider {
  position:relative;
  overflow:hidden;
  height:220px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    #dfe7ff,
    #edf2ff
  );
}

.slider-inner {
  width:100%;
  height:100%;
}

.slide {
  width:100%;
  height:100%;
  display:none;
}

.slide img,
.slide video {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

.slider-next{
  position:absolute;
  top:50%;
  right:10px;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.35);
  color:#fff;
  border:none;
  width:36px;
  height:36px;
  border-radius:50%;
  cursor:pointer;
  font-size:18px;
  backdrop-filter:blur(6px);
  transition:.3s;
}

.slider-next:hover{
  background:rgba(0,0,0,0.6);
}

/* ===== CONTACT + INFO SECTION ===== */

#contact {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,0.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,0.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 24px;
  align-items: stretch;
}

/* COMMON CARD STYLE (GLASS FAMILY) */
.contact-box,
.info-box {
  background: rgba(19, 180, 14, 0.253);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

/* HOVER – subtle */
.contact-box:hover,
.info-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* LEFT CARD TITLE */
.contact-box .card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0b1930;
}

/* CONTACT TEXT */
.contact-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #222;
}

.contact-tagline{
  margin-top:5px;
  font-size:12px;
  font-weight:600;
  opacity:.8;
}

.contact-box strong {
  font-weight: 600;
  color: #0b1930;
}

/* INFO BOX TITLES */
.info-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0b1930;
}

/* LIST STYLE */
.info-box ul {
  padding-left: 18px;
  margin: 0;
}

.info-box li {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
  color: #333;
}

/* REMOVE LAST GAP */
.info-box li:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media(max-width:800px){
  .header-links{
    gap:10px;
    font-size:13px;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
  .slider-group{
    flex-direction:column;
  }
}

@media(max-width:600px){
  .hero h1{
    font-size:16px;
  }
  .typing-text{
    font-size:12px;
  }
  .section{
    padding:22px 12px;
  }

  .hero-subtext{
    font-size:14px;
  }

  .brand-text{
    font-size:12px;
  }

  .brand-icon{
    padding:4px 8px;
    font-size:10px;
  }

  .hero-buttons{
    flex-direction: row;
    padding: 4px 8px;
    font-size: 8px;
  }

  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    font-size: 13px;
  }
}

@media(max-width:380px){
  .hero h1{
    font-size:15px;
  }
  .typing-text{
    font-size:12px;
  }
  .section{
    padding:22px 12px;
  }

  .hero-subtext{
    font-size:14px;
  }

  .brand-text{
    font-size:12px;
  }

  .brand-icon{
    padding:4px 8px;
    font-size:10px;
  }

  .hero-buttons{
    flex-direction:row;
    padding: 4px 8px;
    font-size: 7px;
  }

  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    font-size: 12px;
  }
}

@media(max-width:345px){
  .hero h1{
    font-size:14px;
  }
  .typing-text{
    font-size:11px;
  }
  .hero-buttons{
    flex-direction:row;
    padding: 4px 8px;
    font-size: 5px;
  }
}
  
@media(max-width:360px){
  .hero h1{
    font-size:14.1px;
  }
  .typing-text{
    font-size:11px;
  }
  .hero-buttons{
    flex-direction:row;
    padding: 4px 8px;
    font-size: 5px;
  }
  .btn{
    font-size: 11px;
  }
}

/* ===== REVIEWS SECTION ===== */
#reviews{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #61708a, #f5f9ff);
}

/* TITLE */
#reviews .section-title{
  font-size:26px;
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:6px;
}

#reviews .section-subtitle{
  font-size:14px;
  text-align:center;
  color:#110e;
  margin-bottom:8px;
}

/* RATING SUMMARY */
.rating-summary{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  margin:6px 0 16px;
  color:#0b1930;
}

.rating-summary .stars{
  color:#f4b400;
  font-size:18px;
}

/* ===== SLIDER ===== */
.review-slider{
  width:100%;
  overflow:hidden;               /* CRITICAL */
  margin-bottom:35px;
}

.review-track{
  display:flex;
  width:100%;
  transition:transform .6s ease;
}

/* ONE REVIEW ONLY */
.review-card{
  flex:0 0 100%;                 /* 🔒 LOCK */
  max-width:100%;
  box-sizing:border-box;

  background:rgba(74,106,124,.75);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:18px;
  border:1px solid rgba(255,255,255,.35);
}

.review-card .name{
  font-weight:600;
  margin-bottom:4px;
  color:#fff;
}

.review-card .stars{
  color:#f4b400;
  font-size:14px;
  margin-bottom:6px;
}

.review-card p{
  font-size:14px;
  line-height:1.6;
  color:#f2f5ff;
}

/* ===== REVIEW FORM ===== */
.glass-card{
  background:rgba(151,121,121,.315);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:22px;
  border:1px solid rgba(255,255,255,.35);
}

.review-form input,
.review-form textarea{
  width:100%;
  padding:10px;
  margin-bottom:12px;
  border-radius:8px;
  border:none;
  outline:none;
}

/* STAR INPUT */
.star-input{
  display:flex;
  gap:6px;
  margin-bottom:12px;
}

.star-input span{
  font-size:22px;
  cursor:pointer;
  color:#ccc;
}

.star-input span.active{
  color:#f4b400;
}

/* NOTE */
.review-note{
  font-size:12px;
  opacity:.7;
  margin-top:6px;
}

/* ===== FAQ SECTION ===== */

#faq{
  padding:40px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#faq .section-title{
  font-weight:700;
  text-align: center;
  color:#0b1930;
  margin-bottom: 20px;
}


.faq-box{
  background:rgba(255, 255, 255, 0.329);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:20px;
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  margin-bottom:18px;
}


.faq-box h3{
  font-size:16px;
  margin-bottom:8px;
  color:#0b1930;
}

.faq-box p{
  font-size:14px;
  line-height:1.6;
  color:#222;
}

/* ===== TERM ===== */
#terms{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#terms .section-title{
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:10px;
}

.glass-card{
  background:rgba(185, 178, 178, 0.226);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:22px;
  border:1px solid rgba(255, 255, 255, 0.301);
  max-width:none;
  color: #000;
}

/* ===== ABOUT ===== */
#about{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#about .section-title{
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:10px;
}

/* ===== PRIVACY ===== */
#privacy{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#privacy .section-title{
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:10px;
}

/* ===== WARRANTY ===== */
#warranty{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#warranty .section-title{
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:10px;
}

/* ===== DISCLAIMER ===== */
#disclaimer{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#disclaimer .section-title{
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:10px;
}

/* ===== CANCELLATION POLICY ===== */
#refund{
  padding:30px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

#refund .section-title{
  text-align:center;
  font-weight:700;
  color:#0b1930;
  margin-bottom:10px;
}


/* ===== service page ===== */

/* efect for macOS */
#unsupported-macos,
#service-all{
  padding:20px 0;
  color: #000;
  padding-top: auto;
  padding-left:8px;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #e0cedf, #f5f9ff);
}

.glass-glow h2{
  font-size: 20px;
  padding-left: 15px
}

.glass-glow {
  font-size: 34px;
  font-weight: 800;
  text-align: center;
  margin: 70px auto 45px;
  padding: 26px 34px;
  color: #0b2d4d;
  

  /* Glass effect */
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);

  max-width: 95%;
  position: relative;
  overflow: visible;

  /* Premium shadow + glow */
  box-shadow:
    0 10px 30px rgba(30,136,229,0.25),
    0 0 30px rgba(30,136,229,0.25);

  /* Floating + glow animation */
  animation: floatGlass 4s ease-in-out infinite,
             glowPulse 3s ease-in-out infinite;
}

@media(max-width:500px){
  .glass-glow{
    font-size:20px;
    padding:18px 24px;
  }
}

/* Premium badge */
.glass-glow::after {
  content: "Premium Service";
  position: absolute;
  top: -18px;
  right: 22px;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #fff;
  font-size: 13px;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  white-space: nowrap;
}

/* Floating animation */
@keyframes floatGlass {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Glow pulse animation */
@keyframes glowPulse {
  0% {
    box-shadow:
      0 10px 30px rgba(30,136,229,0.25),
      0 0 25px rgba(30,136,229,0.25);
  }
  50% {
    box-shadow:
      0 14px 40px rgba(30,136,229,0.45),
      0 0 45px rgba(30,136,229,0.45);
  }
  100% {
    box-shadow:
      0 10px 30px rgba(30,136,229,0.25),
      0 0 25px rgba(30,136,229,0.25);
  }
}

/* Hover shine effect */
.glass-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-glow:hover::before {
  opacity: 1;
}

/* TEXT WRAPPER */
/* CONTENT AREA */
.unsupported-content,
.service-content{
  margin-top:20px;
  font-size:15px;
  line-height:1.8;
  color:#1a2c3f;
}

/* HEADINGS */
.unsupported-content h2,
.service-content h2{
  font-size:18px;
  margin-top:8px;
  margin-bottom:10px;
  font-weight:700;
}

/* PARAGRAPH SPACING */
.unsupported-content p,
.service-content p{
  margin-bottom:14px;
}

/* LIST STYLE */
.unsupported-content ul,
.service-content ul{
  padding-left:20px;
  margin-bottom:5px;
}

.unsupported-content li,
.service-content li{
  margin-bottom:2px;
  font-size:14px;
}

.section-title{
  text-align: center;
}

/* PRICE LIST */
.section-alt,
.section-intro{
  padding:30px 0;
  color:#000;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.35), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.35), transparent 40%),
    linear-gradient(135deg, #a3c0f1, #f5f9ff);
}

.section-title{
  text-align:center;
  font-size:20px;
  font-weight:700;
  color:#0b1930;
  margin-bottom:18px;
}

.price-note{
  font-size:13px;
  text-align:center;
  margin-bottom:25px;
  opacity:.8;
}


/* CARD */
.rate-card{
  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(14px);
  border-radius:20px;
  padding:20px;
  border:1px solid rgba(255,255,255,0.4);
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  margin-bottom:40px;
}

/* HEADER ROW */
.rate-header{
  display:flex;
  justify-content:space-between;
  font-weight:600;
  font-size:13px;
  padding-bottom:10px;
  margin-bottom:10px;
  border-bottom:1px solid rgba(0,0,0,.08);
  opacity:.8;
}

/* SERVICE ROW */
.rate-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid rgba(0,0,0,.05);
}

.rate-row:last-child{
  border-bottom:none;
}

/* LEFT SIDE */
.rate-info{
  max-width:70%;
}

.rate-info h3{
  margin:0 0 6px;
  font-size:16px;
}

.rate-info p{
  margin:0;
  font-size:14px;
  opacity:.8;
}

/* RIGHT SIDE */
.rate-action{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.price{
  font-weight:700;
  padding-right: 5px;
  font-size:15px;
}

/* BOOK BUTTON */
.wa-book-btn{
  padding:7px 18px;
  border-radius:20px;
  border:none;
  background:#1cc524;
  color:#fff;
  text-shadow:  1px 2px 4px rgba(0, 0, 0, 0.459);
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 6px 14px rgba(59, 246, 68, 0.637);
  transition:.25s ease;
}

.wa-book-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(59,246,68,.35);
}

.wa-book-btn:active{
  transform:scale(.95);
}



/* ===== BRANDS SECTION ===== */

#brands{
  padding:50px 0;
  background:
    radial-gradient(circle at top left, rgba(160,180,255,.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,180,210,.25), transparent 40%),
    linear-gradient(135deg, #1e2f47, #223c5f);
  color:#fff;
}

.brands-card{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(14px);
  border-radius:22px;
  padding:5px;
  padding-bottom: 20px;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.brands-title{
  font-size:22px;
  padding-left: 30px;
  font-weight:700;
  margin-bottom:6px;
}

.brands-subtitle{
  font-size:14px;
  padding-left: 35px;
  opacity:.85;
  margin-bottom:30px;
}

/* GRID */
.brands-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
  margin-top: 16px;
}

/* BRAND BOX */
.brand-item{
  width: 140px;           
  height: 80px;          
  background: #fff;       
  border-radius: 12px;
  padding: 10px;          
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.16);
  transition: transform .22s, box-shadow .22s;
  overflow: hidden;      
}

/* IMAGE */
.brand-item img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;    
  display: block;
}

/* HOVER */
.brand-item:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,.3);
}

.brand-item:hover img{
  filter:grayscale(0%);
}

/* mobile tweak */
@media (max-width: 400px) {
.brand-item { width: 110px; height: 64px; padding: 8px; }
.brand-grid { gap: 12px; }
}

/* ===== FOOTER ===== */
.footer{
min-height: auto;
  padding-top: 20px;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(60,120,255,0.35), transparent 45%),
    radial-gradient(circle at bottom right, rgba(120,200,255,0.35), transparent 45%),
    linear-gradient(135deg, #0f2a44, #0b3d66);
}

.footer-main{
  font-size: 14px;
  padding-bottom: 10px;
  text-align: center;
}

.footer-grid{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap:30px;
text-align:left;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
font-size:18px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul li a{
color:#ffffff;
text-decoration:none;
font-size:14px;
}

.footer-col ul li a:hover{
color:#4db3ff;
}

.footer-bottom{
margin-top:20px;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:15px;
text-align:center;
font-size:13px;
}
