:root {
  --primary: #002d62; /* Deep Navy */
  --secondary: #ff9f00; /* Gold */
  --accent: #e63946;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-gray: #f1f3f5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 8%;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.top-bar-content span {
  margin-right: 25px;
}

.top-bar-social a {
  color: var(--white);
  margin-left: 15px;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--secondary);
}

/* --- Header --- */
header {
  background: var(--white);
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-container img {
  height: 70px;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--secondary);
}

nav ul li a.active-link {
    color: #ff0000 !important;
}

nav ul li a.active-link::after {
    width: 100% !important;
    background: #ff0000 !important;
}

.nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(255, 159, 0, 0.2);
}

/* --- Modal Popup --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 550px;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    animation: modalIn 0.4s ease-out;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Hero Split --- */
.hero-split {
  min-height: 70vh;
  background: url("../images/hero_pro.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px 8%;
  color: var(--white);
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,20,60,0.92) 0%, rgba(0,45,98,0.75) 55%, rgba(0,45,98,0.4) 100%);
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  width: fit-content;
}

.hero-left h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-left h1 span {
  color: var(--secondary);
}

.hero-left p {
  font-size: 0.97rem;
  opacity: 0.88;
  margin-bottom: 22px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.badge {
  background: rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge i {
  color: var(--secondary);
}

.hero-cta-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-call, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-call {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,159,0,0.4);
}

.btn-call:hover {
  background: #e68e00;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

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

.hero-form-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  color: var(--text-main);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  animation: fadeInRight 0.8s ease-out;
}

.form-header {
  background: linear-gradient(135deg, var(--primary), #004a9f);
  padding: 22px 25px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.form-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.form-header i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 8px;
  display: block;
  position: relative;
  z-index: 1;
}

.form-header h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
}

.hero-form-box form {
  padding: 22px 25px 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8edf2;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-main);
  background: #f8fafc;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,45,98,0.08);
}

.form-group textarea {
  height: 75px;
  resize: none;
}

.hero-submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), #004a9f);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.hero-submit-btn:hover {
  background: linear-gradient(135deg, var(--secondary), #e68e00);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,159,0,0.35);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e1e8ef;
  border-radius: 8px;
  font-family: inherit;
}

.form-group textarea {
  height: 80px;
  resize: none;
}

.hero-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.hero-submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* --- Sections --- */
section {
  padding: 60px 8%;
}

.gray-bg {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.subtitle {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
}

/* --- About --- */
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}

.stat h4 {
  font-size: 2.2rem;
  color: var(--secondary);
}

.about-img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* --- Services Redesign --- */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.s-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 20px;
  transition: var(--transition);
  border: 2px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.s-card:hover {
  border-color: var(--secondary);
}

.s-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gray);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 15px;
  margin-bottom: 15px;
}

.s-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--primary);
}

.s-card p {
    flex-grow: 1;
}

/* --- Why Us Section Redesign V3 --- */
#why-us {
    background-color: #f9f9f9;
}

.why-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item-new {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-item-new:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(255, 159, 0, 0.1);
}

.why-item-new i {
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: var(--transition);
}

.why-item-new:hover i {
    background: var(--secondary);
    transform: rotate(360deg);
}

.why-item-content h5 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.why-item-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Reviews Slider V2 --- */
.reviews-slider-v2 {
  overflow: visible;
  position: relative;
  padding: 10px 60px;
}

.rev-track-wrapper {
  overflow: hidden;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: var(--secondary);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

.rev-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.rev-slide {
  min-width: calc(33.33% - 20px);
}

.rev-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stars {
  color: var(--secondary);
  margin-bottom: 15px;
}

.rev-card h5 {
  margin-top: 15px;
  color: var(--primary);
}

/* --- How It Works --- */
#how-it-works {
  background: linear-gradient(135deg, #001f4d 0%, #002d62 60%, #003f8a 100%);
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,159,0,0.06);
  border-radius: 50%;
}

#how-it-works::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

#how-it-works .section-title .subtitle {
  color: var(--secondary);
}

#how-it-works .section-title h2 {
  color: var(--white);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 25px 30px;
  text-align: center;
  flex: 1;
  transition: var(--transition);
  position: relative;
  color: var(--white);
}

.step-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--secondary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,159,0,0.5);
  letter-spacing: 0.5px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,159,0,0.15);
  border: 2px solid rgba(255,159,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--secondary);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(255,159,0,0.4);
}

.step-card h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.step-connector {
  color: rgba(255,159,0,0.6);
  font-size: 1.2rem;
  padding: 0 12px;
  flex-shrink: 0;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  border: 2px solid #eee;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.price-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0,45,98,0.12);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-icon {
  width: 65px;
  height: 65px;
  background: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 15px;
}

.price-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
}

.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
}

.price-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-list li i {
  color: #27ae60;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.price-btn {
  display: block;
  background: var(--primary);
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.price-btn:hover {
  background: var(--secondary);
}

.price-card.featured .price-btn {
  background: var(--secondary);
}

.price-card.featured .price-btn:hover {
  background: #e68e00;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #004a9f);
  padding: 60px 8%;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-content p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Coverage --- */
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.city-tag {
  background: var(--white);
  border: 1.5px solid #e0e7ef;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  cursor: default;
}

.city-tag i {
  color: var(--secondary);
  font-size: 0.75rem;
}

.city-tag:hover, .city-tag.active-city {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.city-tag:hover i, .city-tag.active-city i {
  color: var(--secondary);
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid #eee;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--secondary);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  gap: 15px;
}

.faq-q span {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
}

.faq-q i {
  color: var(--secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.faq-item.open .faq-a {
  display: block;
}

/* --- Contact Section --- */
#contact {
  background: var(--primary);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-info p.contact-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
  font-size: 0.95rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 25px;
}

.contact-detail-item .c-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-detail-item .c-text h5 {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-item .c-text p,
.contact-detail-item .c-text a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  color: var(--text-main);
}

.contact-form-box h3 {
  color: var(--primary);
  margin-bottom: 25px;
  font-size: 1.4rem;
  text-align: center;
}

/* --- Footer --- */
footer {
  background: #111;
  color: #eee;
  padding: 60px 8% 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 100px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-bottom-new {
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
}

/* --- Toast Notification --- */
.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--white);
  color: var(--text-main);
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  z-index: 9999;
  min-width: 320px;
  max-width: 400px;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 5px solid #27ae60;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  border-left-color: var(--accent);
}

.toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eafaf1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #27ae60;
  flex-shrink: 0;
}

.toast.error .toast-icon {
  background: #fff0f0;
  color: var(--accent);
}

.toast-body p.toast-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.toast-body p.toast-msg {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #aaa;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #27ae60;
  border-radius: 0 0 14px 14px;
  animation: toastProgress 5s linear forwards;
}

.toast.error .toast-progress {
  background: var(--accent);
}

@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}

/* --- Floating Buttons --- */
.floating-btns {
  position: fixed;
  bottom: 30px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition);
  color: var(--white);
  position: relative;
}

.float-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.float-btn.phone  { background: var(--primary); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.quote  { background: var(--secondary); }

.float-btn .float-label {
  position: absolute;
  left: 60px;
  background: #333;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.float-btn:hover .float-label {
  opacity: 1;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .hero-left h1 {
    font-size: 2.2rem;
  }
  .rev-slide {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .hero-split-container { grid-template-columns: 1fr; }
  .hero-right { justify-content: center; }
  .about-flex { grid-template-columns: 1fr; }
  .services-grid-new { grid-template-columns: repeat(2, 1fr); }
  .why-flex { grid-template-columns: repeat(2, 1fr); }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
  .faq-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; gap: 30px; }
  .step-connector { transform: rotate(90deg); padding: 5px 0; }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  #reviews {
    padding: 40px 15px 30px;
  }
  .reviews-slider-v2 {
    padding: 10px 0;
  }
  .slide-btn {
    display: none;
  }
  header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav ul {
    display: flex !important;
  }
  nav ul li {
    margin-left: 0;
  }
  nav ul li:not(:last-child) {
    display: none;
  }
  .nav-cta {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
  .logo-container img {
    height: 40px;
  }
  section {
    padding: 40px 15px;
  }
  .hero-split {
    padding: 40px 15px;
  }
  .s-card, .why-item-new {
    padding: 30px 15px;
  }
  footer {
    padding: 40px 15px 80px;
  }
  .footer-logo {
    height: auto;
    width: 100%;
  }
  .floating-btns {
    flex-direction: row;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    gap: 0;
    border-radius: 0;
  }
  .float-btn {
    flex: 1;
    border-radius: 0;
    height: 52px;
    font-size: 1.2rem;
  }
  .float-btn .float-label {
    display: none;
  }
  .services-grid-new, .why-flex {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rev-slide {
    min-width: 100%;
    margin: 0;
  }
  .rev-track {
    gap: 0;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .badge {
    width: 100%;
    justify-content: center;
    max-width: 100%;
  }
  .hero-cta-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .btn-call, .btn-whatsapp {
    justify-content: center;
    padding: 11px 10px;
    font-size: 0.82rem;
  }
  .hero-left h1 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
  }
  .section-title h2 {
    font-size: 1.2rem;
  }
  .about-text-box h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  .about-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
  }
  .stat {
    text-align: center;
  }
  .stat h4 {
    font-size: 1.3rem;
  }
  .stat p {
    font-size: 0.7rem;
  }
  .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .modal-sub {
    display: none;
  }
  .contact-info h3 {
    font-size: 1.3rem;
  }
  .contact-form-box {
    padding: 25px 15px;
  }
  .top-bar {
    display: none;
  }
}
