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

:root {
  /* Colors */
  --primary: #0B3D91;
  --primary-light: #1A54A8;
  --primary-dark: #062454;
  --secondary: #1D9BF0;
  --secondary-hover: #1584D4;
  --accent: #F39C12;
  --white: #FFFFFF;
  --bg-light: #F8FBFF;
  --bg-lighter: #F0F4F8;
  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #999999;
  --border-color: #E2E8F0;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0B3D91 0%, #1D9BF0 100%);
  --grad-soft: linear-gradient(135deg, #F8FBFF 0%, #E2E8F0 100%);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(11, 61, 145, 0.05);
  --shadow-md: 0 10px 25px rgba(11, 61, 145, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 61, 145, 0.12);
  --shadow-hover: 0 25px 50px rgba(11, 61, 145, 0.18);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  
  /* Typography */
  --font-main: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-normal: 0.3s ease;
  --trans-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

/* Typography with clamp() */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 4.5rem); margin-bottom: clamp(15px, 2vw, 20px); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
p { margin-bottom: 1rem; color: var(--text-muted); font-size: clamp(1rem, 1.5vw, 1.05rem); }

.section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: var(--radius-pill);
}

.section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  display: block;
  margin-bottom: 0.5rem;
}

/* Container */
.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding-inline: 20px;
}

section {
  padding: var(--section-padding);
}

.bg-light { background-color: var(--bg-light); }
.bg-lighter { background-color: var(--bg-lighter); }
.bg-primary { background-color: var(--primary); color: var(--white); }
.bg-primary h2, .bg-primary p { color: var(--white); }
.bg-primary .section-subtitle { color: rgba(255,255,255,0.8); }
.bg-primary .section-title h2::after { background-color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: var(--trans-normal);
  gap: 8px;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11, 58, 130, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 58, 130, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--trans-normal);
  padding: 20px 0;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: clamp(80px, 8vw, 120px);
  width: auto;
  transition: var(--trans-normal);
}

header.scrolled .logo img {
  height: clamp(60px, 6vw, 90px);
}

.nav-links {
  display: flex;
  gap: clamp(15px, 2vw, 30px);
  align-items: center;
}

.nav-links li a {
  color: var(--white);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
}

header.scrolled .nav-links li a,
.page-header .nav-links li a {
  color: var(--primary);
}

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

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

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: var(--trans-normal);
}

header.scrolled .hamburger span,
.page-header .hamburger span {
  background-color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 10vh, 100px);
  background: linear-gradient(135deg, rgba(11, 58, 130, 0.05) 0%, rgba(242, 140, 40, 0.05) 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}

.blob-1 {
  top: -100px;
  right: -100px;
  width: clamp(300px, 50vw, 500px);
  height: clamp(300px, 50vw, 500px);
  background-color: rgba(11, 58, 130, 0.1);
  animation: float 10s ease-in-out infinite alternate;
}

.blob-2 {
  bottom: -150px;
  left: -100px;
  width: clamp(400px, 60vw, 600px);
  height: clamp(400px, 60vw, 600px);
  background-color: rgba(242, 140, 40, 0.08);
  animation: float 12s ease-in-out infinite alternate-reverse;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 50px);
  align-items: center;
}

.hero-text h1 {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: clamp(5px, 1vw, 10px) solid var(--white);
  width: 100%;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary);
  z-index: 3;
}

.fc-1 { top: 10%; left: -20px; animation: floatY 4s ease-in-out infinite; }
.fc-2 { bottom: 20%; right: -30px; animation: floatY 5s ease-in-out infinite reverse; }
.fc-3 { bottom: -20px; left: 10%; animation: floatY 6s ease-in-out infinite; }
.fc-4 { top: -20px; right: 10%; animation: floatY 4.5s ease-in-out infinite reverse; }

/* Features Grids */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.feature-card {
  background: var(--white);
  padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--trans-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans-normal);
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: var(--bg-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--secondary);
  transition: var(--trans-normal);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--trans-normal);
  display: flex;
  flex-direction: column;
}

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

.service-img {
  position: relative;
}

.service-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--trans-slow);
}

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

.service-icon-float {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.service-content {
  padding: 35px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

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

/* About Split Section */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 60px);
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-left: 5px solid var(--secondary);
}

.about-experience h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.about-feature-item i {
  color: var(--secondary);
  font-size: 1.5rem;
  background: var(--bg-lighter);
  padding: 12px;
  border-radius: 50%;
}

/* Stats Counter */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

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

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-weight: 600;
  color: var(--primary);
}

/* Process Timeline */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.process-line-active {
  position: absolute;
  top: 40px;
  left: 50px;
  height: 2px;
  background: var(--secondary);
  z-index: 2;
  width: 0;
  transition: width 1.5s ease-out;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 3;
  flex: 1;
  padding: 0 10px;
}

.process-icon {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--trans-normal);
  box-shadow: var(--shadow-sm);
}

.process-step.active .process-icon {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(242, 140, 40, 0.2);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  border: 1px solid var(--border-color);
}

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

.team-img {
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans-slow);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to top, rgba(11, 58, 130, 0.8), transparent);
  padding: 30px 0 15px;
  transition: var(--trans-normal);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

.team-info {
  padding: clamp(15px, 2vw, 25px);
}

.team-info span {
  color: var(--secondary);
  font-weight: 500;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: clamp(20px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  opacity: 0.5;
  transform: scale(0.9);
  transition: var(--trans-normal);
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(242, 140, 40, 0.2);
  margin-bottom: 20px;
}

.stars {
  color: #FFC107;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.client-img {
  width: clamp(50px, 8vw, 60px);
  height: clamp(50px, 8vw, 60px);
  border-radius: 50%;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

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

.dot.active {
  background: var(--secondary);
  width: 25px;
  border-radius: var(--radius-pill);
}

/* FAQ */
.faq-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  padding: clamp(15px, 2vw, 20px) clamp(15px, 3vw, 25px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--primary);
  transition: var(--trans-normal);
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--secondary);
}

.faq-answer {
  padding: 0 clamp(15px, 3vw, 25px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 0 clamp(15px, 3vw, 25px) 20px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-normal);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--trans-slow);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: clamp(15px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-meta i {
  color: var(--primary);
}

.blog-content h3 a:hover {
  color: var(--secondary);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: auto;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info {
  background: var(--primary);
  color: var(--white);
  padding: clamp(30px, 5vw, 50px);
}

.contact-info h3, .contact-info p {
  color: var(--white);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.info-content h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.contact-form-container {
  padding: clamp(30px, 5vw, 50px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--trans-normal);
  background: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11, 58, 130, 0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: clamp(60px, 8vw, 80px);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 50px;
}

.footer-logo {
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 15px;
}

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

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

.footer-widget h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--secondary);
  transition: var(--trans-normal);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.footer-contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-info i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 5px;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

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

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--trans-normal);
  position: relative;
}

.float-whatsapp { background-color: #25D366; }
.float-call { background-color: var(--primary); }
.float-top {
  background-color: var(--text-main);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Page Header (Inner pages) */
.page-header {
  padding: 150px 0 80px;
  background: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-header h1 {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

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

/* Map */
.map-container {
  height: clamp(300px, 40vw, 400px);
  width: 100%;
  background: var(--bg-lighter);
}

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

/* Simple Document styling for Terms/Privacy */
.document-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 1.8rem); }
.document-content h3 { margin-top: 1.5rem; font-size: clamp(1.2rem, 2vw, 1.3rem); }
.document-content ul { list-style: disc; padding-left: 20px; margin-bottom: 1rem; }
.document-content li { margin-bottom: 0.5rem; }
