:root {
  /* Primary Colors */
  --primary-red: #c41e3a;
  --primary-red-light: #e63946;
  --primary-red-dark: #a1162c;
  
  /* Secondary Colors */
  --secondary-yellow: #ffd700;
  --secondary-yellow-light: #ffed4e;
  --secondary-yellow-dark: #e6c200;
  
  /* Accent Colors */
  --accent-green: #25d366;
  --accent-green-light: #20ba5a;
  --accent-green-dark: #1a9c48;
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-light: #f8f9fa;
  --gray-medium: #e2e8f0;
  --gray-dark: #666666;
  --gray-darker: #333333;
  
  /* Background Gradients */
  --gradient-red: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
  --gradient-pink: linear-gradient(135deg, #fff5f5 0%, #ffe5e9 100%);
  
  /* Shadows */
  --shadow-light: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
  --shadow-yellow: 0 8px 20px rgba(255, 215, 0, 0.5);
  --shadow-red: 0 8px 20px rgba(196, 30, 58, 0.5);
  --shadow-green: 0 8px 20px rgba(37, 211, 102, 0.5);
  
  /* Border Radius */
  --radius-small: 10px;
  --radius-medium: 15px;
  --radius-large: 30px;
  
  /* Spacing */
  --space-xs: 10px;
  --space-sm: 15px;
  --space-md: 20px;
  --space-lg: 30px;
  --space-xl: 40px;
  --space-xxl: 60px;
  
  /* Font Sizes */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 22px;
  --text-3xl: 24px;
  --text-4xl: 32px;
  --text-5xl: 38px;
  --text-6xl: 42px;
  --text-7xl: 48px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gray-darker);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* CTA Buttons */
.btn-primary {
  background: var(--secondary-yellow);
  color: var(--primary-red);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-large);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow);
  background: var(--secondary-yellow-light);
}

.btn-secondary {
  background: var(--primary-red);
  color: var(--white);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-large);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
}

select {
  appearance: none;
  -webkit-appearance: none; /* for Safari */
  -moz-appearance: none; /* for Firefox */
  background: url('your-custom-arrow.svg') no-repeat right 10px center;
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.624);
  background-size: 16px;
  padding-right: 35px; /* space for arrow */
}


.form-box input , select , textarea{
  width: 100%;
  height: 50px;
  border: 1.5px solid var(--primary-red);
  padding:  10px 15px;
  border-radius: 10px;
}
textarea{
  height: 80px;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
  background: var(--primary-red-light);
}

.btn-call {
  background: var(--accent-green);
  color: var(--white);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-large);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
  background: var(--accent-green-light);
}

.cta-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.fade {
  backdrop-filter: blur(3px);
  background-color: rgba(196, 30, 58, 0.05);
}

.top-bar p {
  margin-bottom: 0;
}

.top-bar {
  background: var(--gradient-red);
  padding: var(--space-xs) 0;
  color: var(--white);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.logo img {
  width: 160px;
  object-fit: cover;
}

.contact-info {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 500;
}

.contact-item i {
  color: var(--secondary-yellow);
  font-size: var(--text-base);
}

.header-cta {
  display: flex;
  gap: var(--space-sm);
}

.header-cta .btn-primary, 
.header-cta .btn-call {
  padding: var(--space-sm) 25px;
  font-size: var(--text-sm);
}

.consultation-form .btn-call{
    font-size : 12px;
    border-radius: 10px;
}

.main-header {
  padding: var(--space-md) 0;
}

.main-header .containerFull {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-4xl);
  font-weight: bold;
  color: var(--primary-red);
}

.logo i {
  font-size: 36px;
}

/* Hero Section */
.hero img {
  max-width: 100%;
  height: auto;
}

/* Features Section */
.features {
  padding: var(--space-xxl) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: var(--text-6xl);
  color: var(--primary-red);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  max-width: 700px;
  text-align: center;
  margin: 0 auto var(--space-lg);
  color: var(--gray-dark);
  font-size: var(--text-lg);
    margin-bottom: 50px;

}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.feature-card {
  background: var(--gradient-pink);
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 2px solid #ffd0d6;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 36px;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.feature-card h3 {
  color: var(--primary-red);
  margin-bottom: var(--space-xs);
  font-size: var(--text-2xl);
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: var(--gray-light);
}

.why-choose-content {
  display: flex;
  align-items: center;
  gap: var(--space-xxl);
  margin-bottom: var(--space-xl);
}

.why-choose-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.why-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.1);
  border-left: 4px solid var(--primary-red);
  transition: transform var(--transition-normal);
}

.why-card:hover {
  transform: translateX(10px);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 32px;
  color: var(--white);
}

.why-card h3 {
  color: var(--primary-red);
  margin-bottom: var(--space-xs);
  font-size: var(--text-xl);
}



.consultation-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.why-image {
  flex: 1;
  transform: scale(0.9);
  text-align: center;
}

.doctor-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 40px rgba(196, 30, 58, 0.2);
}

/* Stats Section */
.stats {
  background: var(--gradient-red);
  padding: var(--space-xxl) 0;
  color: var(--white);
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0l8.66 25H64l-20.34 15L52 64 30 48 8 64l8.34-24L0 25h25.34z" fill="%23ffffff" opacity="0.05"/%3E%3C/svg%3E');
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-xl);
}

.stat-item i {
  font-size: 52px;
  margin-bottom: var(--space-sm);
  color: var(--secondary-yellow);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-number {
  font-size: var(--text-7xl);
  font-weight: bold;
  margin-bottom: var(--space-xs);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: var(--text-lg);
  opacity: 0.95;
}

/* Results Section */
.results {
  padding: 80px 0;
  background: var(--gradient-pink);
}

.results h2 {
  text-align: center;
  font-size: var(--text-6xl);
  color: var(--primary-red);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.results-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: var(--text-xl);
  color: var(--primary-red);
  font-weight: 600;
  font-style: italic;
}

.flags {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.flag-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-3xl);
  font-weight: bold;
  color: var(--primary-red);
}
.flag-item span{
  width: 50px;
  height: 50px;
  border: 2px solid red;
  border-radius: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 25px;
  margin-bottom: 50px;
}

.result-card {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid var(--primary-red);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.2);
  transition: transform var(--transition-normal);
  background: var(--white);
}

.result-card:hover {
  transform: scale(1) !important;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Sections */
.cta-section {
  background: var(--gradient-red);
  padding: var(--space-xxl) 0;
  text-align: center;
  color: var(--white);
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="80" height="80" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="40" cy="40" r="30" fill="%23ffffff" opacity="0.03"/%3E%3C/svg%3E');
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
  font-size: var(--text-5xl);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}



.hero-section {
    background: var(--gradient-red);
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-title {
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    color: var(--secondary-yellow);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(14px, 2vw, 18px);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-section {
    padding: var(--space-xxl) 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-medium);
    padding: var(--space-lg);
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-red-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 32px;
    transition: all var(--transition-normal);
}

.icon-red {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.icon-yellow {
    background: linear-gradient(135deg, var(--secondary-yellow), var(--secondary-yellow-dark));
    color: var(--black);
    box-shadow: var(--shadow-yellow);
}

.icon-green {
    background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.feature-description {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.highlight-box {
    background: var(--gradient-pink);
    border-radius: var(--radius-medium);
    padding: var(--space-xl);
    margin: var(--space-xxl) 0;
    border-left: 5px solid var(--primary-red);
}

.highlight-title {
    color: var(--primary-red);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.highlight-content {
    color: var(--gray-darker);
    font-size: 16px;
    line-height: 1.8;
}

.cta-section {
    background: var(--gradient-red);
    padding: var(--space-xxl) 0;
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    color: var(--secondary-yellow);
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: var(--space-lg);
}

.cta-button {
    background: var(--secondary-yellow);
    color: var(--black);
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-large);
    font-size: 18px;
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-yellow);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-yellow-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.stats-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-large);
    font-weight: 600;
    font-size: 14px;
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-xl) 0;
    }

    .features-section {
        padding: var(--space-xl) 0;
    }

    .feature-card {
        margin-bottom: var(--space-md);
    }

    .highlight-box {
        padding: var(--space-md);
    }
}

.animate-btn {
  font-size: 1.2rem;
  padding: 12px 28px;
  border-radius: var(--radius-small);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Modern popup style */
.modal-content {
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  border: none;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.modern-modal {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.modal-lg, .modal-xl {
  --bs-modal-width: 900px;
}

.modal-header h4 {
  font-weight: 600;
  color: #1e293b;
}

.modal-image-container {
  flex: 1 1 40%;
  overflow: hidden;
}

.modal-image-container img {
  width: 500px;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.btn-close {
  position: absolute;
  right: var(--space-md);
  top: 18px;
  z-index: 1;
  color: var(--black);
  font-weight: 700;
  filter: invert(40%);
}

/* Form Section */
.form-container {
  flex: 1 1 60%;
  background-color: var(--white);
}

.modern-form .form-control,
.modern-form .form-select {
  border-radius: var(--radius-small);
  border: 1px solid var(--gray-medium);
  background-color: #f9fafb;
  transition: all var(--transition-fast);
}

.modern-form .form-control:focus,
.modern-form .form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
  background-color: var(--white);
}

.form-floating label i {
  color: var(--primary-red);
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #ef4444, var(--primary-red-dark));
  color: var(--white);
  border: none;
  padding: 12px 0;
  border-radius: var(--radius-small);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all var(--transition-normal);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--primary-red-dark), #7f1d1d);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.3);
}

/* Team Section */
.team {
  padding: 80px 0;
  background: var(--gray-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: 50px;
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-medium);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: 0 5px 20px rgba(196, 30, 58, 0.1);
  transition: transform var(--transition-normal);
  border: 2px solid #ffd0d6;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  background: var(--gradient-red);
  overflow: hidden;
  border: 4px solid var(--accent-green);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: var(--primary-red);
  margin-bottom: 5px;
  font-size: var(--text-xl);
}

.team-role {
  color: var(--gray-dark);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

/* Footer */
footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h3 {
  margin-bottom: var(--space-md);
  color: var(--secondary-yellow);
  font-size: var(--text-2xl);
}

.footer-contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.footer-contact-item ul{
  padding-left: 5px;
}

.footer-contact-item i {
  color: var(--secondary-yellow);
  margin-top: 5px;
  font-size: var(--text-lg);
}

.footer-cta {
  background: rgba(196, 30, 58, 0.2);
  padding: var(--space-lg);
  border-radius: var(--radius-medium);
  border: 2px solid var(--primary-red);
}

.footer-cta h3 {
  margin-bottom: var(--space-md);
}

.footer-cta p {
  margin-bottom: var(--space-md);
  color: #ccc;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #333;
  color: #999;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-yellow);
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 1000;
  animation: bounce 2s infinite;
}



.floating-cta a:first-child{
  font-size: 23px;
  padding: 11px 17px;
}


.floating-cta a{
  padding: 11px 16px;
  background-color: #20ba5a;
  color: white;
  border-radius: 100%;
  font-size: 20px;
  display: block;
  margin: 10px 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ============================================
   ENHANCED MODAL STYLES
   ============================================ */
dialog.enhanced-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
    padding: 0;
    max-width: 900px;
    width: 90%;
  
}

.enhanced-modal .modal-body {
    padding: 0;
}

.modal-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 500px;
}

.modal-image-side {
    position: relative;
    overflow: hidden;
}

.modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(192, 0, 32, 0.949), transparent);
    padding: 30px 20px;
    padding-top: 100px;
    color: white;
}

.modal-image-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-image-overlay p {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    opacity: 0.9;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-close-btn:hover {
    background: white;
    transform: rotate(90deg);
}

.modal-close-btn i {
    font-size: 18px;
    color: #c41e3a;
}

.modal-form-side {
    padding: 40px 35px;
    background: white;
}

.modal-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-form-header .icon-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c41e3a, #e63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.modal-form-header h3 {
    font-size: 26px;
    color: #c41e3a;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-form-header p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.enhanced-form-group {
    margin-bottom: 20px;
}

.enhanced-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    padding-left: 7px;
}

.enhanced-form-group label i {
    color: #c41e3a;
    margin-right: 5px;
}

.enhanced-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.enhanced-input:focus {
    outline: none;
    border-color: #c41e3a;
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
}

.enhanced-input::placeholder {
    color: #9ca3af;
}

textarea.enhanced-input {
    resize: vertical;
    min-height: 100px;
}

.enhanced-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c41e3a, #e63946);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.enhanced-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
}

.enhanced-submit-btn:active {
    transform: translateY(0);
}

.enhanced-submit-btn i {
    margin-right: 8px;
}

.form-benefits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #e5e7eb;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: white;
    font-weight: 700;
}

.benefit-item i {
    color: white;
    font-size: 16px;
}

.special-offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffd700;
    color: #c41e3a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

#welcomeCloseBtn.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .modal-image-side {
        height: 290px;
    }

    .modal-form-side {
        padding: 30px 20px;
    }

    .modal-form-header h3 {
        font-size: 22px;
    }

    .modal-form-header .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .enhanced-input {
        padding: 8px 10px;
        font-size: 14px;
    }

    .enhanced-submit-btn {
        padding: 11px;
        font-size: 12px;
    }

    .enhanced-form-group {
        margin-bottom: 10px;
    }
}