/* ==========================================================
   Dovercourt — Cal.com booking embed styles
   Scoped to the cal embed wrapper + minor positioning fixes
   so the rest of the original template UI remains untouched.
   ========================================================== */

.cal-embed-card {
  background: #ffffff;
  border: 1px solid #e6ebf3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(13, 26, 54, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 720px;
}

.cal-embed-card .cal-embed-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 6px 18px;
  border-bottom: 1px solid #e6ebf3;
  margin-bottom: 16px;
}

.cal-embed-card .cal-embed-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d1a36 0%, #28506c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cal-embed-card .cal-embed-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1a36;
  margin: 0 0 4px;
}

.cal-embed-card .cal-embed-sub {
  margin: 0;
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
}

.cal-embed-card #my-cal-inline-30min {
  flex: 1;
  min-height: 640px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Reassurance pills under the embed */
.cal-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cal-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6f8fb;
  border: 1px solid #e6ebf3;
  color: #0d1a36;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.cal-trust-pill i {
  color: #16a34a;
  font-size: 12px;
}

/* Make sure the Cal floating button never sits underneath the chat iframe */
.cal-embed-floatingButton,
[id^="cal-floating-button"] {
  z-index: 999998 !important;
}

@media (max-width: 768px) {
  .cal-embed-card {
    min-height: 640px;
    padding: 18px;
  }
  .cal-embed-card #my-cal-inline-30min {
    min-height: 560px;
  }
}

/* ===== Navigation Enhancements ===== */
.main-header .navigation > li > a {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.main-header .navigation > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-header .navigation > li:hover > a::after,
.main-header .navigation > li.current > a::after {
  width: 100%;
}

.main-header .navigation > li.current > a {
  color: var(--accent-red);
}

/* Dropdown Menu Enhancements */
.main-header .navigation > li > ul {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  padding: 8px 0;
  min-width: 220px;
}

.main-header .navigation > li > ul > li > a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-header .navigation > li > ul > li > a::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--accent-red);
  opacity: 0;
  transition: all 0.2s ease;
}

.main-header .navigation > li > ul > li:hover > a::before {
  opacity: 1;
}

.main-header .navigation > li > ul > li:hover > a {
  color: var(--primary-navy);
  background: var(--gray-50);
  padding-left: 24px;
}

/* ===== Sticky Header Enhancement ===== */
.sticky-header {
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
}

/* ===== Header Top Bar Enhancement ===== */
.header-top {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  border-bottom: none;
}

.header-top .list-style-one li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.header-top .list-style-one li a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.header-top .list-style-one li a:hover {
  color: #ffffff;
}

.header-top .social-icon-one li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: all 0.3s ease;
}

.header-top .social-icon-one li a:hover {
  background: var(--accent-red);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== WhatsApp Button Enhancement ===== */
.whatsapp-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ===== Requirement Cards Enhancement ===== */
.requirements-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.requirements-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
  border-radius: 2px;
}

.requirement-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.requirement-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.requirement-card:hover {
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.requirement-card:hover::before {
  opacity: 1;
}

.requirement-card .req-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-red);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.requirement-card:hover .req-number {
  opacity: 0.25;
  transform: translateY(-50%) scale(1.1);
}

.requirement-card .req-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 26, 54, 0.15);
  transition: all 0.3s ease;
}

.requirement-card:hover .req-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(13, 26, 54, 0.25);
}

.requirement-card .req-content {
  flex: 1;
}

.requirement-card .req-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.requirement-card .req-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ===== Benefits List Enhancement ===== */
.benefits-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.benefits-list li:hover {
  padding-left: 8px;
}

.benefits-list li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Info Button (Phone) Enhancement ===== */
.info-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: #ffffff;
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.info-btn .icon {
  width: 36px;
  height: 36px;
}

.info-btn .title {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-btn .text {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ===== Scroll to Top Enhancement ===== */
.scroll-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #901d16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  bottom: 100px !important;
  right: 20px !important;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  opacity: .8;
}

/* ===== Testimonials CTA Section ===== */
.testimonials-cta-section {
  margin-top: 60px;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 50%, var(--accent-teal) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #ffffff;
}

.cta-card .cta-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.cta-card h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Client Journey Badge ===== */
.client-journey {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(144, 29, 22, 0.08);
  color: var(--accent-red);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* ===== Avatar Placeholder Enhancement ===== */
.avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 24px;
}

/* ===== Loading & Transition States ===== */
.wow {
  visibility: visible;
}

/* Smooth page transitions */
.page-wrapper {
  animation: fadeIn 0.5s ease-out;
}

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

/* ===== Section Spacing Improvements ===== */
section {
  position: relative;
}

.startup-visa-section,
.modern-services-section,
.process-roadmap-section,
.about-section-three,
.team-section,
.faqs-section,
.testimonials-section-modern,
.why-choose-us-two,
.contact-details-section {
  padding: 100px 0;
}

@media (max-width: 991px) {
  .startup-visa-section,
  .modern-services-section,
  .process-roadmap-section,
  .about-section-three,
  .team-section,
  .faqs-section,
  .testimonials-section-modern,
  .why-choose-us-two,
  .contact-details-section {
    padding: 70px 0;
  }
}

/* ===== Founder Info Enhancement ===== */
.founder-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.founder-info .thumb img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.founder-info .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.founder-info .designation {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== SUV CTA Box Enhancement ===== */
.suv-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-teal) 100%);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  margin-top: 24px;
}

.suv-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

/* ===== Success Stats in Roadmap ===== */
.success-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ===== Roadmap Footer CTA ===== */
.roadmap-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(144, 29, 22, 0.05) 0%, rgba(144, 29, 22, 0.02) 100%);
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(144, 29, 22, 0.2);
}

.roadmap-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

/* ===== Services Grid Layout ===== */
.services-grid {
  display: grid;
  gap: 24px;
}

.services-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .services-grid.two-col {
    grid-template-columns: 1fr;
  }
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Modern Section Title Overrides ===== */
.modern-services-section .sec-title,
.process-roadmap-section .sec-title,
.faqs-section .sec-title,
.testimonials-section-modern .sec-title,
.contact-details-section .sec-title {
  margin-bottom: 50px;
}

/* ===== Video Section Enhancement ===== */
.video-section {
  position: relative;
}

.video-section .play-now {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 36px;
  box-shadow: 0 10px 40px rgba(144, 29, 22, 0.3);
  transition: all 0.3s ease;
}

.video-section .play-now:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(144, 29, 22, 0.4);
}

.video-section .title {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== Info Box Enhancement (About Section) ===== */
.info-box .inner {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.3s ease;
}

.info-box:hover .inner {
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-box .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.info-box .title i {
  color: var(--accent-red);
}

.info-box .text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Footer Bottom Enhancement ===== */
.footer-bottom {
  background: var(--primary-navy);
  padding: 20px 0;
}

.footer-bottom .copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.footer-bottom .legal-disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

/* ===== Footer Top Enhancement ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}

.footer-cta .btn-style-four {
  background: var(--accent-red) !important;
  border-color: var(--accent-red) !important;
}
