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

:root {
  --primary-color: #00264d; /* Dark Blue / Royal Blue */
  --accent-color: #ff6b00; /* Vibrant Orange */
  --accent-hover: #e66000;
  --bg-light: #f8f9fa; /* Light Gray for sections */
  --bg-white: #ffffff;
  --highlight-blue: #0ea5e9; /* Light Blue highlights */
  --text-main: #333333;
  --text-muted: #666666;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 38, 77, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-secondary:hover {
  background-color: #001a33;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: #fff;
  transform: translateY(-2px);
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
  transition: var(--transition);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--glass-border);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--accent-color);
  font-size: 28px;
}

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

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

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

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

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

.mobile-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-toggle-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  text-decoration: none;
  background-color: var(--accent-color);
  color: #ffffff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--accent-color);
  transition: var(--transition);
  line-height: 1.2 !important;
}

.lang-toggle-nav:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  min-height: 70vh;
  height: auto;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(0, 38, 77, 0.9) 0%, rgba(0, 38, 77, 0.9) 100%), url('https://images.unsplash.com/photo-1581092921461-eab62e97a780?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  background-size: 20px 20px;
  opacity: 0.5;
  animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 56px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

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

.hero-text p {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 40px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,0.1);
}

.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.floating-card.top {
  top: -20px;
  right: -20px;
}

.floating-card.bottom {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.floating-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.floating-text h4 {
  font-size: 16px;
  color: var(--primary-color);
}

.floating-text p {
  font-size: 14px;
  color: var(--text-muted);
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Stats Section */
.stats {
  background: var(--primary-color);
  padding: 50px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

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

.stat-item h3 {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.stat-item p {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 40px;
  color: var(--primary-color);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

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

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

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

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

.service-icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 4px solid #fff;
  z-index: 2;
}

.service-content {
  padding: 35px 25px 25px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-link {
  color: var(--highlight-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-link i {
  transition: var(--transition);
}

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

/* Why Choose Us */
.why-choose-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 30px;
  color: var(--accent-color);
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Progress Bars */
.progress-container {
  margin-top: 40px;
}

.progress-item {
  margin-bottom: 25px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(0, 38, 77, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-color);
  border-radius: 10px;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Google Reviews */
.reviews-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0 40px;
}

.reviews-scroll {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

.reviews-scroll:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.write-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  color: #333;
  font-weight: 600;
  font-size: 16px;
  margin: 0 auto 50px;
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}

.write-review-btn:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.write-review-btn img {
  width: 20px;
}

.review-card {
  width: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  color: #FFB400;
  font-size: 16px;
  display: flex;
  gap: 2px;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.review-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 15px;
  color: #111;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 12px;
  color: #777;
}

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

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-header:hover {
  background: var(--bg-light);
}

.faq-header i {
  transition: var(--transition);
  color: var(--accent-color);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-body {
  padding: 0 25px 20px;
}

/* Contact CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #001a33 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  top: -100px;
  left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--highlight-blue);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  bottom: -100px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #e2e8f0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  background: #001224;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
}

.footer-col p {
  color: #a0aec0;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

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

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #a0aec0;
}

/* Floating Widgets */
.floating-widgets {
  z-index: 999;
}

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

.float-whatsapp {
  background: #25D366;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

.float-call {
  background: var(--accent-color);
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

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

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-call {
  animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}


/* ====================
   Services Page Styles
   ==================== */
.page-hero {
  min-height: 60vh;
  height: auto;
  padding-bottom: 80px;
  background: linear-gradient(135deg, rgba(0, 38, 77, 0.9) 0%, rgba(0, 38, 77, 0.95) 100%), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 140px;
}

.page-hero h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero p {
  color: #e2e8f0;
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row.reverse .service-content-block {
  order: 1;
}

.service-row.reverse .service-image-block {
  order: 2;
}

.service-image-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-image-block img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.service-content-block h2 {
  font-size: 36px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-content-block h2 i {
  color: var(--accent-color);
}

.service-content-block p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.benefits-list {
  margin-bottom: 30px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.benefits-list li i {
  color: var(--highlight-blue);
}

/* ====================
   Contact Page Styles
   ==================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--accent-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 38, 77, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-color);
  margin: 0 auto 20px;
  transition: var(--transition);
}

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

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-card p, .contact-card a {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 500;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--highlight-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

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

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu-wrapper {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
    gap: 20px;
    text-align: center;
  }

  .nav-menu-wrapper.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color) !important;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
  }

  .nav-links a.active, .nav-links a:hover {
    background: var(--accent-color);
    color: #fff !important;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .floating-card {
    display: none;
  }

  .why-choose-us, .service-content-block, .contact-wrapper, .footer-col {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .benefits-list li {
    justify-content: flex-start;
  }
  
  .social-links {
    justify-content: flex-start;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-row.reverse .service-content-block {
    order: 2;
  }
  
  .service-row.reverse .service-image-block {
    order: 1;
  }

  .service-image-block img {
    height: 250px;
  }

  .service-content-block h2 {
    font-size: 28px;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  .benefits-list {
    padding-left: 0;
  }

  .service-content-block > .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 15px auto !important;
    text-align: center;
  }

  .contact-cards, .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid, .services-grid, .features-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 36px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* RTL Support for Arabic */
body.rtl {
  font-family: 'Noto Nastaliq Urdu', 'Outfit', serif;
  text-align: right;
  line-height: 2.2;
}

body.rtl .logo, body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4, body.rtl a, body.rtl p {
  font-family: 'Noto Nastaliq Urdu', serif;
}

body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
  line-height: 1.8;
}

body.rtl p {
  line-height: 2.4;
}

body.rtl .nav-links {
  margin-right: auto;
  margin-left: 0;
}

body.rtl .btn i {
  margin-left: 8px;
  margin-right: 0;
}

body.rtl .feature-item i {
  margin-left: 20px;
  margin-right: 0;
}

body.rtl .benefits-list li i {
  margin-left: 15px;
  margin-right: 0;
}

body.rtl .progress-info span:last-child {
  float: left;
}

body.rtl .review-author .author-img {
  margin-left: 15px;
  margin-right: 0;
}

body.rtl .faq-header i {
  margin-right: auto;
  margin-left: 0;
}

body.rtl .contact-icon {
  margin-left: 20px;
  margin-right: 0;
}

/* body.rtl floating widgets override removed since buttons are fixed individually */
}

@media (max-width: 768px) {
  body.rtl .why-choose-us, body.rtl .service-content-block, body.rtl .contact-wrapper, body.rtl .footer-col {
    text-align: right;
  }
  
  body.rtl .service-content-block h2 {
    text-align: right;
  }
  
  body.rtl .nav-menu-wrapper {
    right: auto;
    left: 20px;
    transform-origin: top left;
  }
  
  body.rtl .menu-toggle {
    margin-left: 0;
    margin-right: auto;
  }
}
