/* ===================================
   Domain Link Technologies
   Primary: #195fa5 | Secondary: #5ccaa5
   =================================== */

:root {
  --primary:   #195fa5;
  --secondary: #5ccaa5;
  --dark:      #0d1b2e;
  --darker:    #060e1a;
  --light:     #f0f7ff;
  --body-font: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: #333;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

.section-padding { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-dl-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 6px 20px rgba(25,95,165,0.4);
}
.btn-dl-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(25,95,165,0.55);
  color: #fff;
}
.btn-dl-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-dl-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal        { transform: translateY(35px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: none; }

/* ===== NAVBAR ===== */
.navbar {
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar.sticky {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.navbar-brand img { max-height: 42px; transition: max-height 0.3s ease; }
.navbar.sticky .navbar-brand img { max-height: 35px; }
.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 15px;
  margin: 0 4px;
  padding: 8px 8px !important;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 8px;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: calc(100% - 16px); }
.navbar .dropdown-menu {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.navbar .dropdown-item {
  color: var(--dark);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item.active,
.navbar .dropdown-item:active { background: rgba(25,95,165,0.07); color: var(--primary); }
.navbar .btn-book {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(25,95,165,0.4);
  margin-left: 8px;
  transition: all 0.3s ease;
}
.navbar .btn-book:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(25,95,165,0.6); color: #fff !important; }
.navbar .btn-book::after { display: none; }
.navbar-toggler { border: 1px solid rgba(0,0,0,0.18); padding: 5px 10px; border-radius: 8px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C0%2C0%2C0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060e1a 0%, #0d1b2e 50%, #1a3361 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 50%, rgba(25,95,165,0.22) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(92,202,165,0.1) 0%, transparent 55%);
  z-index: 1;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: left; color: #fff; padding: 140px 0 80px; }
.hero-illustration { position: relative; z-index: 2; padding: 120px 0 80px; display: flex; align-items: center; justify-content: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}
.hero-title { font-size: 68px; font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 22px; color: #fff; }
.hero-subtitle { font-size: 18px; font-weight: 400; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 0 40px; line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a {
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 22px; transition: color 0.3s;
  animation: bounce-arrow 2.2s infinite;
}
.hero-scroll a:hover { color: var(--secondary); }
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ===== ABOUT ===== */
.about-section { background: var(--light); padding: 100px 0; }
.about-text .section-heading { color: var(--dark); }
.about-text .lead { font-size: 17px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-text p { color: #666; line-height: 1.8; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.stat-box {
  background: #fff;
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 3px 16px rgba(25,95,165,0.09);
  border-bottom: 3px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:nth-child(2n) { border-bottom-color: var(--secondary); }
.stat-box:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(25,95,165,0.15); }
.stat-number { display: block; font-size: 40px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 5px; }
.stat-box:nth-child(2n) .stat-number { color: var(--secondary); }
.stat-label { font-size: 12px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 1.2px; }
.about-image-wrap { position: relative; margin-left: 20px; }
.about-image-wrap img { width: 100%; border-radius: 20px; display: block; position: relative; z-index: 1; }
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border-radius: 20px;
  border: 3px solid var(--secondary);
  z-index: 0;
}
.about-accent-circle {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.18; z-index: 0;
}

/* ===== SERVICES ===== */
.services-section { background: var(--dark); padding: 100px 0; }
.services-section .section-heading { color: #fff; }
.services-desc { color: rgba(255,255,255,0.5); font-size: 17px; }
.service-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 38px 30px;
  height: 100%;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: rgba(92,202,165,0.3); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 60px; height: 60px; border-radius: 15px;
  background: rgba(92,202,165,0.1); border: 1px solid rgba(92,202,165,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: background 0.3s ease;
}
.service-card:hover .service-icon-wrap { background: rgba(92,202,165,0.2); }
.service-icon-wrap i { font-size: 26px; color: var(--secondary); }
.service-card h4 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 13px; }
.service-card p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; margin: 0; }

/* ===== PRODUCTS ===== */
.products-section { background: #fff; padding: 100px 0; }
.products-section .section-heading { color: var(--dark); }
.product-card {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1); height: 280px; cursor: pointer;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.product-card:hover img { transform: scale(1.08); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.94) 0%, rgba(25,95,165,0.45) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  transition: background 0.4s ease;
}
.product-card:hover .product-overlay {
  background: linear-gradient(to top, rgba(13,27,46,0.97) 0%, rgba(25,95,165,0.65) 60%, rgba(92,202,165,0.15) 100%);
}
.product-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--secondary); margin-bottom: 6px; }
.product-title { font-size: 20px; font-weight: 800; color: #fff; margin: 0; }

/* ===== PRICING ===== */
.pricing-section { background: var(--light); padding: 100px 0; }
.pricing-section .section-heading { color: var(--dark); }
.pricing-card {
  background: #fff; border-radius: 24px; padding: 44px 34px; height: 100%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07); border: 2px solid transparent;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 14px 40px rgba(25,95,165,0.15); }
.pricing-card.featured {
  background: linear-gradient(145deg, var(--primary), #1a7ab8, #2a9d87);
  border-color: transparent; transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(25,95,165,0.4); color: #fff;
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 28px 70px rgba(25,95,165,0.5); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--secondary); color: var(--dark);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 20px; border-radius: 50px; white-space: nowrap;
}
.pricing-plan { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--secondary); margin-bottom: 6px; display: block; }
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.7); }
.pricing-title { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.pricing-card.featured .pricing-title { color: #fff; }
.pricing-subtitle { font-size: 14px; color: #999; margin-bottom: 28px; }
.pricing-card.featured .pricing-subtitle { color: rgba(255,255,255,0.65); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 30px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 15px; color: #666; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.88); border-bottom-color: rgba(255,255,255,0.12); }
.pricing-features li i { color: var(--secondary); font-size: 15px; flex-shrink: 0; }
.pricing-card.featured .pricing-features li i { color: rgba(255,255,255,0.9); }
.btn-pricing {
  display: block; width: 100%; text-align: center; padding: 14px; border-radius: 12px;
  font-weight: 700; font-size: 15px; border: 2px solid var(--primary); color: var(--primary);
  background: transparent; transition: all 0.3s ease; text-decoration: none;
}
.btn-pricing:hover { background: var(--primary); color: #fff; }
.pricing-card.featured .btn-pricing { background: #fff; color: var(--primary); border-color: #fff; }
.pricing-card.featured .btn-pricing:hover { background: transparent; color: #fff; }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark); padding: 100px 0; }
.contact-section .section-heading { color: #fff; }
.contact-section .section-tag, .contact-desc { color: rgba(255,255,255,0.5); }
.contact-tabs .nav-tabs { border: none; gap: 6px; margin-bottom: 28px; }
.contact-tabs .nav-link {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  padding: 10px 24px; font-weight: 600; font-size: 14px; transition: all 0.3s ease;
}
.contact-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent;
}
.contact-tabs .nav-link:hover:not(.active) { background: rgba(255,255,255,0.12); color: #fff; }
.contact-form .form-control {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: #fff; padding: 13px 16px; font-size: 15px;
  font-family: var(--body-font); transition: all 0.3s ease;
}
.contact-form .form-control:focus {
  background: rgba(255,255,255,0.09); border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(92,202,165,0.12); color: #fff; outline: none;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.3); }
.contact-form textarea.form-control { resize: none; min-height: 125px; }
.btn-contact {
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff;
  border: none; border-radius: 12px; padding: 14px 36px; font-weight: 700; font-size: 16px;
  width: 100%; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(25,95,165,0.35);
  cursor: pointer; font-family: var(--body-font);
}
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(25,95,165,0.5); color: #fff; }
.map-frame { border-radius: 16px; overflow: hidden; height: 360px; }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-info-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px; height: 100%;
}
.contact-info-card h4 { color: #fff; font-weight: 700; margin-bottom: 24px; font-size: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(92,202,165,0.12); border: 1px solid rgba(92,202,165,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon-wrap i { font-size: 18px; color: var(--secondary); }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); margin-bottom: 3px; display: block; }
.contact-info-value { font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.5; }
.contact-info-value a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.contact-info-value a:hover { color: var(--secondary); }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff; border-radius: 12px; padding: 13px 20px;
  font-weight: 700; font-size: 15px; margin-top: 12px; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); color: #fff; }

/* ===== FOOTER ===== */
.site-footer { background: var(--darker); padding: 70px 0 0; }
.footer-logo-img { max-height: 38px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 16px; text-decoration: none; transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--secondary); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: color 0.3s ease; }
.footer-links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--secondary); opacity: 0.5; transition: opacity 0.3s, transform 0.3s; flex-shrink: 0; }
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { opacity: 1; transform: scale(1.4); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { color: var(--secondary); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; line-height: 1.6; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 48px 0 0; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 13px; text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ===== BIZBOX PARTNERSHIP ===== */
.partners-section { background: var(--darker); padding: 100px 0; }
.partners-section .section-heading { color: #fff; }
.bizbox-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(92,202,165,0.15);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.bizbox-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(92,202,165,0.1);
  border: 1px solid rgba(92,202,165,0.25);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
}
.bizbox-logo-text {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.bizbox-logo-text span { color: var(--secondary); }
.bizbox-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.bizbox-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 28px;
}
.bizbox-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.bizbox-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.bizbox-feature-item i { color: var(--secondary); font-size: 14px; flex-shrink: 0; }
.btn-bizbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 12px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(25,95,165,0.35);
}
.btn-bizbox:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(25,95,165,0.5); color: #fff; }
.btn-bizbox-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(92,202,165,0.35);
  color: var(--secondary);
  border-radius: 12px;
  padding: 11px 26px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-bizbox-outline:hover {
  background: rgba(92,202,165,0.1);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}
.bizbox-visual {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
}
.bizbox-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.bizbox-module {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.bizbox-module:hover {
  background: rgba(92,202,165,0.08);
  border-color: rgba(92,202,165,0.2);
  transform: translateY(-3px);
}
.bizbox-module i { font-size: 22px; color: var(--secondary); display: block; margin-bottom: 8px; }
.bizbox-module span { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600; display: block; }
.bizbox-services-list { display: flex; flex-direction: column; gap: 10px; }
.bizbox-services-list .check-item {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bizbox-services-list .check-item i { color: var(--secondary); font-size: 13px; flex-shrink: 0; }

/* ===== WHY DOMAIN LINK ===== */
.why-section { background: var(--light); padding: 100px 0; }
.why-section .section-heading { color: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(25,95,165,0.07);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-7px); box-shadow: 0 18px 45px rgba(25,95,165,0.13); border-color: rgba(25,95,165,0.12); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(25,95,165,0.1), rgba(92,202,165,0.1));
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.why-card:hover .why-icon { background: linear-gradient(135deg, rgba(25,95,165,0.18), rgba(92,202,165,0.18)); }
.why-icon i { font-size: 24px; color: var(--primary); }
.why-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #777; line-height: 1.75; margin: 0; }

/* ===== BOOK MEETING ===== */
.book-section { background: var(--dark); padding: 140px 0 80px; min-height: 100vh; }
.book-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 48px 40px; }
.book-card .form-control, .book-card .form-select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  color: #fff; padding: 13px 16px; font-size: 15px; font-family: var(--body-font); transition: all 0.3s ease;
}
.book-card .form-control:focus, .book-card .form-select:focus {
  background: rgba(255,255,255,0.09); border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(92,202,165,0.12); color: #fff; outline: none;
}
.book-card .form-control::placeholder { color: rgba(255,255,255,0.3); }
.book-card .form-label { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.book-card .form-check-label { color: rgba(255,255,255,0.7); font-size: 14px; }
.book-card .form-check-input:checked { background-color: var(--secondary); border-color: var(--secondary); }
.book-card .form-check-input:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(92,202,165,0.2); }
.book-section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); display: block; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(92,202,165,0.2); }
.btn-book-submit {
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border: none;
  border-radius: 12px; padding: 15px 40px; font-weight: 700; font-size: 16px; width: 100%;
  cursor: pointer; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(25,95,165,0.35); font-family: var(--body-font);
}
.btn-book-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(25,95,165,0.5); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 52px; }
  .hero-content { text-align: center; padding: 130px 20px 60px; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-illustration { padding: 40px 0 60px; }
  .section-heading { font-size: 34px; }
  .navbar-collapse { background: #fff; padding: 20px; border-radius: 16px; margin-top: 14px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
  .navbar .btn-book { margin-left: 0; margin-top: 10px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .about-image-wrap { margin-left: 0; margin-top: 50px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bizbox-features { grid-template-columns: 1fr 1fr; }
  .bizbox-module-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 16px; }
  .section-heading { font-size: 28px; }
  .stats-grid { gap: 12px; }
  .stat-number { font-size: 32px; }
  .about-image-wrap::before { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .book-card { padding: 32px 22px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .bizbox-features { grid-template-columns: 1fr; }
  .bizbox-module-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .bizbox-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stat-number { font-size: 28px; }
}
