/* Homepage Specific Styles */

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
  padding-top: 80px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

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

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Objectives / Features */
.objectives {
  background-color: var(--surface);
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding: 0;
}

.objectives-wrapper {
  background-color: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  border: 1px solid var(--border);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.objective-card {
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition);
  border-radius: 12px;
}

.objective-card:hover {
  background-color: var(--surface-alt);
  transform: translateY(-5px);
}

.objective-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.objective-card:hover .objective-icon-wrapper {
  background-color: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.objective-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.objective-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.objective-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.objective-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.objective-card .card-link:hover {
  color: var(--accent-hover);
}

/* About / Goals */
.about {
  background-color: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.about-content h2 {
  font-size: 2.5rem;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

/* Free Consultation Banner */
.cta-banner {
  background-color: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner-content h2 span {
  color: var(--accent);
}

.cta-banner-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* Services / Areas of Practice */
.services {
  background-color: var(--surface);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-header h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.services-swiper {
  width: 100%;
  padding: 1rem 0 4rem;
}

.service-card-slide {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 520px; /* Locked premium height */
  width: 340px; /* Slightly wider cards */
}

.service-card-slide:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card-cover {
  height: 200px; /* Slightly taller image cover */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.service-card-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0) 100%);
}

.service-card-badge {
  position: relative;
  z-index: 2;
  background-color: var(--accent);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.service-card-body {
  padding: 2rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--surface-alt);
}

.service-card-body h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.service-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Better vertical breathing room */
}

.service-card-body ul li {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 800;
}


/* Testimonials */
.testimonials {
  background-color: var(--background);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.carousel-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 7rem;
  color: rgba(217, 119, 6, 0.08);
  font-family: serif;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  border: 2px solid var(--border);
}

.testimonial-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
  display: block;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-arrow {
  background-color: var(--surface);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.carousel-arrow:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.05);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Accordion FAQs */
.faqs {
  background-color: var(--surface);
}

.faqs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.faqs-header h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}



/* Contact & Map Section */
.contact-section {
  background-color: var(--background);
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block h2 {
  font-size: 2.5rem;
}

.contact-info-block p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-channel-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.contact-channel-card:hover {
  transform: translateX(5px);
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: var(--shadow-sm);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-channel-card:hover .contact-channel-icon {
  background-color: var(--accent);
  color: #fff;
}

.contact-channel-icon svg {
  width: 24px;
  height: 24px;
}

.contact-channel-details h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.contact-channel-details p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Index Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.85rem;
  }
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img {
    height: 350px;
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .hero-btns {
    flex-direction: column;
    padding: 0 2rem;
  }
  .cta-banner-content {
    padding: 2.5rem 1.5rem;
  }
  .cta-banner-content h2 {
    font-size: 2rem;
  }
  .testimonial-card {
    padding: 2.5rem 1.5rem;
  }
}
