/*
 * GHM Packers and Movers - Central Stylesheet
 * Premium 3D & Glassmorphic UI Design System
 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --primary: #0A4D9E;
  --primary-hover: #083c7a;
  --secondary: #FF6B00;
  --secondary-hover: #e05e00;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-accent: #F1F5F9;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --success: #10B981;
  --whatsapp: #25D366;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 12px 40px 0 rgba(10, 77, 158, 0.08);
  --card-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 20px 40px -10px rgba(10, 77, 158, 0.06);
  --button-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Sizing and transition */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Containers & Grid */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sticky Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.top-bar {
  background: var(--primary);
  color: var(--bg-white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  transition: var(--transition-smooth);
}

header.scrolled .top-bar {
  margin-top: -40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info span i {
  color: var(--secondary);
  margin-right: 0.4rem;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.logo-icon {
  background: var(--primary);
  color: var(--bg-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(10, 77, 158, 0.2);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Call Button Header */
.phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-accent);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.95rem;
}

.phone-cta i {
  color: var(--secondary);
}

/* Primary/Secondary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--secondary);
  color: var(--bg-white);
  box-shadow: var(--button-shadow);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 107, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.floating-btn.whatsapp {
  background: var(--whatsapp);
}

.floating-btn.call {
  background: var(--secondary);
}

/* Pulsing effect */
.floating-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(10, 77, 158, 0.05) 0%, rgba(255, 255, 255, 1) 70%), var(--bg-light);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 107, 0, 0.2);
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Hero Badge */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 77, 158, 0.08);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.hero-tag i {
  color: var(--secondary);
}

/* Trust list under hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-trust-item i {
  color: var(--success);
  font-size: 1.1rem;
}

/* Glassmorphism Lead Form */
.hero-form-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  position: relative;
  z-index: 10;
}

.hero-form-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--secondary) 20%, transparent 60%);
  filter: blur(20px);
  z-index: -1;
  opacity: 0.2;
}

.hero-form-container h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.hero-form-container p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-control {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid #E2E8F0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 77, 158, 0.1);
  background: #FFFFFF;
}

.form-control i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.95rem;
}

.form-control textarea.form-input {
  height: 80px;
  resize: none;
  padding-top: 0.85rem;
}

.form-control textarea + i {
  top: 1.5rem;
}

/* Trust Badges Bar */
.trust-badges-section {
  padding: 3rem 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--bg-accent);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-white);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

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

.badge-card i {
  background: rgba(10, 77, 158, 0.08);
  color: var(--primary);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
}

.badge-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Statistics Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #063166 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  filter: blur(50px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Section Common Styles */
.section {
  padding: 7rem 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Services Cards Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--bg-accent);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow);
  border-color: rgba(10, 77, 158, 0.15);
}

.service-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card-icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  background: var(--secondary);
  color: var(--bg-white);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(255, 107, 0, 0.3);
  font-size: 1.4rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  box-shadow: 0 8px 16px rgba(10, 77, 158, 0.3);
  transform: rotate(360deg);
}

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

.service-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.service-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
}

.service-card-cta i {
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-cta {
  color: var(--primary);
}

.service-card:hover .service-card-cta i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-media {
  position: relative;
}

.why-choose-img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--glass-border);
}

.why-choose-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-choose-badge i {
  background: var(--primary);
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-choose-badge h4 {
  font-size: 1.1rem;
  line-height: 1.2;
}

.why-choose-badge span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.why-choose-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.why-choose-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
}

.why-item i {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.why-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials / Google Reviews */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--bg-accent);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow);
  border-color: rgba(10, 77, 158, 0.1);
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-name h4 {
  font-size: 1rem;
  font-weight: 600;
}

.reviewer-name span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.google-logo {
  color: #4285F4;
  font-size: 1.25rem;
}

.rating-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

/* FAQs Accordion */
.faqs-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--bg-accent);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(10, 77, 158, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-white);
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-header h3 {
  color: var(--primary);
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-box {
  background: var(--primary);
  color: var(--bg-white);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SEO Landing Section (Internal Links) */
.seo-links-section {
  padding: 5rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--bg-accent);
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.seo-link-card {
  background: var(--bg-white);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  border: 1px solid var(--bg-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  display: block;
  transition: var(--transition-smooth);
}

.seo-link-card:hover {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 77, 158, 0.1);
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #FF6B00 0%, #E05E00 100%);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section h2 {
  font-size: 2.5rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-banner-section p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner-section .btn {
  background: var(--bg-white);
  color: var(--secondary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-banner-section .btn:hover {
  background: var(--primary);
  color: var(--bg-white);
}

/* Footer styling */
footer {
  background: #0B132B;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-about .logo {
  color: var(--bg-white);
  margin-bottom: 1.25rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

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

/* Page Hero Header (Inner Pages) */
.page-hero {
  background: linear-gradient(rgba(10, 77, 158, 0.9), rgba(6, 49, 102, 0.95)), url('../images/bangalore-bg.png') no-repeat center center;
  background-size: cover;
  padding: 140px 0 80px;
  color: var(--bg-white);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: var(--secondary);
}

.breadcrumbs a:hover {
  color: var(--bg-white);
}

/* About Us Layout */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-intro-content h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.about-intro-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
}

.mv-card {
  background: var(--bg-light);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-accent);
  position: relative;
  overflow: hidden;
}

.mv-card i {
  font-size: 3rem;
  color: rgba(10, 77, 158, 0.1);
  position: absolute;
  top: 30px;
  right: 30px;
}

.mv-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-muted);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.process-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--bg-accent);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
  border-color: rgba(10, 77, 158, 0.15);
}

.process-step {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--bg-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.process-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.process-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--bg-accent);
  text-align: center;
  transition: var(--transition-smooth);
}

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

.team-img {
  height: 250px;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-info h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services Detailed page structure */
.services-detail-section {
  padding: 6rem 0;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.service-detail-item:nth-child(even) {
  direction: rtl;
}

.service-detail-item:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail-item:nth-child(even) .service-detail-media {
  direction: ltr;
}

.service-detail-item:last-child {
  margin-bottom: 0;
}

.service-detail-media img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--glass-border);
}

.service-detail-content h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.service-detail-content ul {
  margin: 1.5rem 0;
}

.service-detail-content ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-detail-content ul li i {
  color: var(--secondary);
}

/* Contact Us Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--bg-light);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
  border: 1px solid var(--bg-accent);
}

.contact-info-panel h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info-panel p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.contact-method-item {
  display: flex;
  gap: 1.25rem;
}

.contact-method-item i {
  background: rgba(10, 77, 158, 0.08);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-method-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.map-container {
  margin-top: 4rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--bg-accent);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Legal & Terms Content Formatting */
.legal-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 2rem 0 1rem 0;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* Thank You Section */
.thank-you-section {
  padding: 8rem 0;
  text-align: center;
}

.thank-you-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 4rem 3rem;
  border: 1px solid var(--bg-accent);
  box-shadow: var(--card-shadow);
}

.thank-you-card i.success-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem auto;
}

.thank-you-card h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-intro-grid,
  .mission-vision-grid,
  .why-choose-grid,
  .service-detail-item,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-detail-item:nth-child(even) {
    direction: ltr;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-links.active {
    left: 0;
  }
  .phone-cta {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-badge {
    right: 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .thank-you-actions {
    flex-direction: column;
    gap: 1rem;
  }
}
