:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --primary-light: #4895ef;
  --secondary: #7209b7;
  --secondary-light: #b5179e;
  --accent: #f72585;
  --accent-light: #ff4da6;
  --light: #f8f9fa;
  --dark: #212529;
  --dark-light: #343a40;
  --success: #4cc9f0;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-light: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--secondary-light) 100%
  );
  --gradient-dark: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary) 100%
  );
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--dark);
  overflow-x: hidden;
  background-color: #fefefe;
}

/* Enhanced Header Styles */
.top-header {
  background: var(--gradient-dark);
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.top-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.top-header a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.top-header a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Premium Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
  max-height: 55px;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: var(--dark) !important;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 12px !important;
  border-radius: 8px;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.nav-link:hover:after {
  width: 80%;
}

.nav-link:hover {
  background: rgba(67, 97, 238, 0.05);
}

.nav-link.button {
  background: var(--gradient);
  color: white !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  margin-left: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-link.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.nav-link.button:hover:before {
  left: 100%;
}

.nav-link.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
  cursor: pointer;
}

/* Enhanced Hero Section */
.hero {
  background: var(--gradient);
  color: white;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.heading-copy h1 {
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 2.8rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight {
  color: var(--accent-light);
  position: relative;
  display: inline-block;
}

.highlight:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 5px;
  left: 0;
  background: rgba(247, 37, 133, 0.25);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-15deg);
}

.certifications {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px;
  margin-top: 40px;
}

.certifications img {
  transition: all 0.4s ease;
  opacity: 0.8;
}

.certifications img:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.hero-button .btn {
  background: white;
  color: var(--primary);
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
}

.hero-button .btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(67, 97, 238, 0.1),
    transparent
  );
  transition: left 0.7s ease;
}

.hero-button .btn:hover:before {
  left: 100%;
}

.hero-button .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Services Section */
.services {
  padding: 120px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234361ee" fill-opacity="0.03" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-heading h1 {
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.section-heading h1:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background: var(--gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.section-heading p {
  color: #6c757d;
  max-width: 700px;
  margin: 25px auto 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Premium Card Design */
.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover:before {
  opacity: 0.03;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.card-body {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.card-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.rating {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.price:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
}

.card-text {
  color: #6c757d;
  line-height: 1.7;
}

.card-footer {
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient);
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-primary:hover:before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.4s ease;
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
}

/* Enhanced Features Section */
.features {
  padding: 100px 0;
  background: white;
  position: relative;
}

.feature-box {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: white;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-box:hover:before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 34px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 25px rgba(67, 97, 238, 0.4);
}

.feature-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-box p {
  color: #6c757d;
  line-height: 1.7;
}

/* Enhanced Map Section */
.map-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.location-card iframe {
  border: none;
  display: block;
  width: 100%;
}

.location-info {
  padding: 25px;
}

.location-info h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

/* Enhanced WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(to bottom, var(--dark) 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234361ee" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center bottom;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer h5:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background: var(--primary);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer ul li:before {
  content: "›";
  position: absolute;
  left: -15px;
  color: var(--primary);
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer ul li a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer ul li a:hover {
  color: white;
  padding-left: 8px;
}

.footer ul li:hover:before {
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 50px;
  z-index: 1111111111;
  position: relative;
}

.payment-icons i {
  transition: all 0.3s ease;
  opacity: 0.8;
}

.payment-icons i:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* Enhanced 3D Shapes */
.shape-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: 10%;
  left: 5%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.08);
  bottom: 10%;
  right: 10%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.shape-3 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: rgba(255, 255, 255, 0.05);
  top: 60%;
  left: 15%;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Enhanced Modal Styles */
.modal-content {
  border-radius: 25px;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-xl);
}

.modal-header {
  background: var(--gradient);
  color: white;
  border-bottom: none;
  padding: 25px 30px;
}

.modal-title {
  font-weight: 700;
  font-size: 1.4rem;
}

.modal-body {
  padding: 30px;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  margin-left: 10px;
  font-weight: 500;
}

.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.15);
}

/* Step Form Enhancement */
.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .heading-copy h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 100px 0 70px;
  }

  .nav-link.button {
    margin: 15px 0 0;
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .top-header .col-md-4 {
    text-align: center !important;
    margin-bottom: 10px;
  }

  .section-heading h1 {
    font-size: 2rem;
  }

  .services,
  .features,
  .map-section {
    padding: 80px 0;
  }

  .feature-box {
    margin-bottom: 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}

/* Additional Premium Elements */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Loading Animation */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Text Selection */
::selection {
  background: rgba(67, 97, 238, 0.2);
  color: var(--dark);
}

::-moz-selection {
  background: rgba(67, 97, 238, 0.2);
  color: var(--dark);
}

/* Preloader Styles */
#preloader {
  position: fixed;
  z-index: 9999;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 250px;
  max-width: 90%;
  margin-bottom: 0px;
}

/* Page Header Section */
.page-header-section {
  background: var(--gradient);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: 100px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Content Section */
.contact-content {
  background-color: var(--light);
}

.contact-info h2 {
  color: var(--primary-dark);
  font-weight: 700;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 10px;
  display: inline-block;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  background: var(--gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--primary-dark);
}

.contact-text p {
  margin-bottom: 0;
  color: var(--dark-light);
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.contact-form-card .card-header {
  background: var(--gradient);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.contact-form-card .card-header h3 {
  margin: 0;
  font-weight: 600;
}

.contact-form-card .card-body {
  padding: 2rem;
}

.contact-form-card .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
}

.contact-form-card .btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--gradient);
  border: none;
  color: white;
}

.contact-form-card .btn:hover {
  background: var(--gradient-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hide sub-service dropdowns by default */
.hide {
  display: none;
}

/* Animation for gradient background */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header-section {
    padding: 80px 0 60px;
  }

  .page-header-content h1 {
    font-size: 2.5rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Contact Content Section */
.contact-content {
  background-color: var(--light);
}

.contact-info h2 {
  color: var(--primary-dark);
  font-weight: 700;
  border-bottom: 3px solid var(--accent);
  padding-bottom: 10px;
  display: inline-block;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  background: var(--gradient);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--primary-dark);
}

.contact-text p {
  margin-bottom: 0;
  color: var(--dark-light);
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.contact-form-card .card-header {
  background: var(--gradient);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.contact-form-card .card-header h3 {
  margin: 0;
  font-weight: 600;
}

.contact-form-card .card-body {
  padding: 2rem;
}

.contact-form-card .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
}

.contact-form-card .btn {
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--gradient);
  border: none;
  color: white;
}

.contact-form-card .btn:hover {
  background: var(--gradient-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hide sub-service dropdowns by default */
.hide {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}