/* ========================================
   CS Srivastava Ankit & Associates
   Static HTML + CSS Website
   ======================================== */

/* CSS Variables */
:root {
  /* Blue-grey background - #CBD6E2 */
  --background: hsl(211, 29%, 84%);
  --foreground: hsl(220, 45%, 18%);

  /* Cards */
  --card: hsl(211, 32%, 88%);
  --card-foreground: hsl(220, 45%, 18%);

  /* Deep navy blue primary */
  --primary: hsl(220, 55%, 18%);
  --primary-foreground: hsl(211, 29%, 92%);

  /* Secondary */
  --secondary: hsl(211, 25%, 78%);
  --secondary-foreground: hsl(220, 45%, 18%);

  /* Muted */
  --muted: hsl(211, 22%, 75%);
  --muted-foreground: hsl(220, 30%, 35%);

  /* Yellow accent - #F2B705 */
  --accent: hsl(45, 95%, 48%);
  --accent-foreground: hsl(220, 45%, 18%);

  /* Border */
  --border: hsl(211, 20%, 70%);

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, hsl(220, 55%, 12%) 0%, hsl(220, 50%, 18%) 50%, hsl(218, 45%, 24%) 100%);
  --hero-overlay: linear-gradient(180deg, hsla(220, 55%, 10%, 0.94) 0%, hsla(220, 50%, 16%, 0.96) 100%);
  --section-gradient: linear-gradient(180deg, hsl(211, 29%, 84%) 0%, hsl(211, 25%, 80%) 100%);

  /* Shadows */
  --card-shadow: 0 4px 20px -4px hsla(220, 40%, 15%, 0.18);
  --card-shadow-hover: 0 12px 32px -8px hsla(220, 40%, 15%, 0.25);
  --gold-glow: 0 0 30px hsla(45, 95%, 48%, 0.35);

  /* Radius */
  --radius: 0.5rem;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.star-filled {
  color: var(--accent);
  fill: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-cta {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.btn-hero {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(203, 214, 226, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav-container {
    height: 5rem;
  }
}

.logo {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }
}

.navbar.scrolled .logo {
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
}

.site-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-right: 16px;
  display: block;
}

@media (min-width: 768px) {
  .site-logo {
    height: 65px;
  }
}

@media (min-width: 1024px) {
  .site-logo {
    height: 80px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a:not(.btn) {
  color: var(--foreground);
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.navbar.scrolled .mobile-menu-btn .icon {
  color: var(--foreground);
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  margin: 0 1rem 1rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a:not(.btn) {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.mobile-menu a:not(.btn):hover {
  background-color: var(--secondary);
}

.hidden {
  display: none !important;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-gradient);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease-out forwards;
}

.badge span {
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.text-gradient {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, hsl(45, 95%, 48%) 0%, hsl(42, 90%, 52%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 500;
  animation: fadeUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto 2rem;
  animation: fadeUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
  animation: fadeUp 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.trust-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.trust-item span {
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
}

.trust-number {
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
}

.trust-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem !important;
  font-weight: 400 !important;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

/* ========================================
   Section Styles
   ======================================== */
.section-gradient {
  background: var(--section-gradient);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-light h2,
.section-header-light p {
  color: var(--primary-foreground);
}

.section-badge {
  display: inline-block;
  background-color: rgba(29, 48, 82, 0.1);
  color: var(--primary);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-badge-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-foreground);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ========================================
   Services Section
   ======================================== */
.services {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.service-card {
  display: block;
  background-color: var(--card);
  border: 1px solid rgba(165, 180, 195, 0.5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

.service-card.has-pdf {
  cursor: pointer;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(29, 48, 82, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  transform: scale(1.1);
}

.service-card:hover .service-icon svg {
  color: var(--primary-foreground);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.pdf-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}

/* ========================================
   About Section
   ======================================== */
.about {
  padding: 5rem 0;
  background-color: var(--card);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content .section-badge {
  margin-bottom: 1rem;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(242, 183, 5, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.highlight-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.stat-primary {
  background-color: var(--primary);
}

.stat-primary .stat-number,
.stat-primary .stat-label {
  color: var(--primary-foreground);
}

.stat-secondary {
  background-color: var(--secondary);
}

.stat-secondary .stat-number {
  color: var(--secondary-foreground);
}

.stat-secondary .stat-label {
  color: var(--muted-foreground);
}

.stat-accent {
  background-color: var(--accent);
}

.stat-accent .stat-number,
.stat-accent .stat-label {
  color: var(--accent-foreground);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
  padding: 5rem 0;
}

.reasons-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid rgba(165, 180, 195, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.reason-card:hover {
  border-color: rgba(29, 48, 82, 0.3);
}

.reason-icon {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1);
}

.reason-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.reason-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  padding: 5rem 0;
  background-color: var(--primary);
}

.testimonials .section-title {
  color: var(--primary-foreground);
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  fill: var(--accent);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(242, 183, 5, 0.5);
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-footer span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  padding: 5rem 0;
  background-color: var(--card);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.call-card {
  background-color: var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.call-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.call-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.phone-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: var(--accent);
}

.call-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.info-card {
  background-color: var(--secondary);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(242, 183, 5, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.info-content h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--muted-foreground);
}

.info-content a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--accent);
}

.info-highlight {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
}

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

.locations h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.location-card {
  background-color: var(--secondary);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.location-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(29, 48, 82, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.location-content h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.location-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.map-container {
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  width: 2rem;
  height: 2rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.rating-badge span:last-child {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

/* ========================================
   Mobile Call Button
   ======================================== */
.mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-radius: 9999px;
  box-shadow: var(--gold-glow);
  animation: pulse-soft 2s infinite;
  transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-call-btn {
    display: none;
  }
}

.mobile-call-btn:hover {
  transform: scale(1.05);
}

.mobile-call-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-call-btn span {
  display: none;
}

@media (min-width: 640px) {
  .mobile-call-btn span {
    display: inline;
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}
/* ========================================
   Visual Trust Section
   ======================================== */
.visual-trust {
  position: relative;
  margin-top: -2rem;
  margin-bottom: 4rem;
}

.visual-trust-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  max-height: 420px;
}

.visual-trust-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-trust-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* ========================================
   Our Office Section
   ======================================== */
.office-section {
  margin-top: 4rem;
  text-align: center;
}

.office-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.office-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.office-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .office-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.office-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.office-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.office-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.office-item:hover img {
  transform: scale(1.05);
}

/* ========================================
   Contact Image
   ======================================== */
.contact-image-wrapper {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-office-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .contact-image-wrapper {
    width: 60%;
    margin-top: 0;
  }
}

