/* ========== RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0A5C8C;
  --primary-dark: #074a70;
  --primary-light: #e8f2f8;
  --secondary: #2E8B57;
  --secondary-light: #d9f0e6;
  --dark: #0f172a;
  --gray: #475569;
  --gray-light: #94a3b8;
  --light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --gradient-blue: linear-gradient(135deg, #0A5C8C, #1E6F9F);
  --gradient-green: linear-gradient(135deg, #2E8B57, #3ba36b);
  --glow-blue: 0 0 20px rgba(10, 92, 140, 0.3);
  --glow-green: 0 0 20px rgba(46, 139, 87, 0.3);
}

/* ========== GLOBAL STYLES ========== */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  width: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 60px 0;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== SCROLL ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.service-card, .why-card, .specialty-card {
  opacity: 0;
}

/* AOS override for smooth animations */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== NAVBAR SECTION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.902);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 12px 0;
  transition: transform 0.3s ease-in-out, background 0.3s, padding 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(0);
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  width: 100%;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  animation: fadeInLeft 0.5s ease forwards;
  opacity: 0;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.3s;
  font-size: 0.85rem;
  display: inline-block;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a { color: var(--gray); }
#desktopQuoteBtn { color: white; }

/* ========== DROPDOWN ========== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  min-width: 220px !important;
  border-radius: 14px !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
  z-index: 9999 !important;
  padding: 10px 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle i {
  font-size: 9px;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  color: #1e293b !important;
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}

.dropdown-menu a i {
  width: 18px;
  color: #0A5C8C;
  transition: transform 0.3s;
}

.dropdown-menu a:hover {
  background: #e8f2f8;
  color: #0A5C8C !important;
  padding-left: 24px;
}

.dropdown-menu a:hover i {
  transform: translateX(3px);
}

/* ========== MENU BUTTON ========== */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.3s;
}

.menu-btn:hover {
  transform: scale(1.1);
  color: var(--primary);
}

/* ========== MOBILE DRAWER ========== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  z-index: 1002;
  transition: right 0.3s ease-in-out;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-drawer a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer a:hover {
  color: var(--primary);
  transform: translateX(8px);
}

.mobile-drawer .btn-primary {
  justify-content: center;
  margin-top: 10px;
  background: #25D366;
}

.mobile-drawer .btn-primary:hover {
  transform: translateX(0) translateY(-2px);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 0.8rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(10, 92, 140, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 92, 140, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

/* ========== FLOATING WHATSAPP ========== */
.float-wa {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999 !important;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.float-wa:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: zoomIn 20s ease infinite alternate;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 92, 140, 0.85) 0%, rgba(46, 139, 87, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  color: white;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 35px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}

.hero-stat-number:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.hero-stat div:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
}

.hero .btn-primary {
  background: white;
  color: var(--primary);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero .btn-primary:hover {
  background: var(--primary);
  color: white;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 45px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f2f8, #d9f0e6);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.section-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width 0.3s;
}

.section-header:hover h2::after {
  width: 80px;
}

.section-header p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 15px;
}

/* ========== SERVICES & WHY GRIDS ========== */
.services-grid, .why-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card, .why-card {
  background: white;
  border-radius: 20px;
  padding: 28px 22px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 92, 140, 0.08);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-card::before, .why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.service-card:hover::before, .why-card:hover::before { transform: scaleX(1); }

.service-card:hover, .why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover .service-icon, .why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--secondary);
}

.service-icon, .why-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.service-card h3, .why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.service-card h3:hover, .why-card h3:hover {
  color: var(--secondary);
  transform: scale(1.02);
}

.service-card p, .why-card p {
  color: var(--gray);
  line-height: 1.45;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.service-card:hover p, .why-card:hover p {
  color: var(--dark);
}

/* ========== SPECIALTIES SECTION ========== */
.specialties-section {
  background: linear-gradient(135deg, #0A5C8C 0%, #1E6F9F 100%);
  position: relative;
  overflow: hidden;
}

.specialties-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.specialties-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.specialties-section .section-header h2 { color: white; }
.specialties-section .section-header p { color: rgba(255, 255, 255, 0.8); }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.specialty-card {
  background: white;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.specialty-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.specialty-icon {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s;
  background: var(--gradient-blue);
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1) rotate(10deg);
  background: var(--gradient-green);
  box-shadow: var(--glow-green);
}

.specialty-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-dark);
  transition: color 0.3s;
}

.specialty-card:hover h3 {
  color: var(--secondary);
}

.specialty-card p {
  color: var(--gray);
  line-height: 1.5;
  font-size: 0.85rem;
}

/* ========== TESTIMONIALS MARQUEE ========== */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  padding: 20px 0;
  margin: 0 auto;
}

.marquee-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  width: 350px;
  min-width: 350px;
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border: 1px solid rgba(10, 92, 140, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(10, 92, 140, 0.3);
  border-color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  transition: transform 0.3s;
}

.testimonial-card:hover .testimonial-author img {
  transform: scale(1.05);
  border-color: var(--secondary);
}

.testimonial-author strong {
  color: var(--primary-dark);
  font-size: 0.9rem;
  display: block;
}

.testimonial-author span {
  font-size: 0.7rem;
  color: var(--gray-light);
  display: block;
}

.rating {
  color: #fbbf24;
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray);
  font-style: italic;
  margin: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 40px;
  margin: 0 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.cta-section:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-xl);
}

.cta-section h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-section h2:hover {
  transform: scale(1.02);
  color: var(--primary-dark);
}

.cta-section p {
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ========== CONTACT SECTION ========== */
.contact-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(10, 92, 140, 0.15);
}

.contact-get-in-touch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.contact-get-in-touch .section-badge {
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.85rem;
  padding: 6px 20px;
}

.get-in-touch-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.contact-talk-text p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  width: 100%;
  margin-top: 20px;
}

.contact-info {
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  transition: all 0.3s;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 14px;
  transition: all 0.3s;
}

.contact-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.2rem;
  width: 36px;
  color: var(--primary);
  transition: transform 0.3s;
}

.contact-item:hover i {
  transform: scale(1.1);
  color: var(--secondary);
}

.contact-info .btn-primary {
  width: auto !important;
  display: inline-flex;
  padding: 6px 16px;
  font-size: 0.7rem;
  background: #25D366;
  margin-top: 20px;
}

.contact-info .btn-primary:hover {
  background: #20b859;
  transform: translateY(-2px);
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
  display: inline-block;
  transition: all 0.3s;
}

.contact-form:hover h3 {
  border-bottom-color: var(--secondary);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 92, 140, 0.1);
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-light);
}

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 40px 0 20px;
  margin-top: 40px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-logo-text {
  font-size: 0.75rem;
  color: var(--gray-light);
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  transform: translateX(8px);
}

.footer-links p strong {
  transition: color 0.3s;
}

.footer-links:hover p strong {
  color: var(--secondary-light);
}

/* Footer contact icons styling */
.footer-contact-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 5px;
}

.footer-contact-icons p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  transition: all 0.3s;
}

.footer-contact-icons p:hover {
  transform: translateX(5px);
  color: white;
}

.footer-contact-icons i {
  width: 24px;
  font-size: 1rem;
  transition: transform 0.3s;
}

.footer-contact-icons p:hover i {
  transform: scale(1.1);
}

.footer-contact-icons .fa-phone-alt {
  color: #25D366;
}

.footer-contact-icons .fa-envelope {
  color: #f39c12;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #334155;
  font-size: 0.65rem;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 28px;
  border-radius: 24px;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s ease;
  box-shadow: var(--shadow-xl);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.3s;
}

.close-modal:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.rating-input {
  display: flex;
  gap: 6px;
  font-size: 22px;
  cursor: pointer;
}

.rating-input i {
  color: #cbd5e1;
  transition: all 0.2s;
}

.rating-input i:hover {
  transform: scale(1.15);
  color: #fbbf24;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    width: 300px;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .menu-btn { display: block; position: absolute; right: 20px; top: 12px; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 1.3rem !important; }
  .hero h1 { font-size: 1.6rem; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 25px 20px; margin: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; text-align: start; }
  .footer-logo { align-items: center; }
  .testimonial-card { width: 280px; min-width: 280px; }
  .float-wa { bottom: 15px; right: 15px; width: 48px; height: 48px; font-size: 24px; }
  .navbar-logo img { height: 40px; }
  .get-in-touch-text { font-size: 1.3rem; }
}

@media (min-width: 769px) {
  .mobile-drawer, .drawer-overlay { display: none; }
}

@media (min-width: 1025px) {
  .services-grid, .why-grid, .specialties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}