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

:root {
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --text: #1F2937;
  --text-secondary: #6B7280;
  --bg: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --border: #E5E7EB;
  --success: #10B981;
  --error: #EF4444;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: linear-gradient(to bottom, #FEF3C7, #FFFFFF);
  line-height: 1.6;
  user-select: none;
  -webkit-user-select: none;
}

body[dir="rtl"] {
  direction: rtl;
}

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

a:hover {
  text-decoration: underline;
}

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

/* Navigation */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg);
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

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

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: var(--primary-dark);
}

.submit-btn:disabled {
  background: var(--text-secondary);
  cursor: not-allowed;
}

.form-success {
  background: #D1FAE5;
  color: #065F46;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.form-error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 24px;
}

/* What We Do Page */
.page-header {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--bg);
}

.about-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.how-it-works h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.step {
  text-align: center;
  padding: 24px;
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.footer-brand p {
  color: #9CA3AF;
}

.footer-links h4 {
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #9CA3AF;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
  color: #9CA3AF;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .nav-links {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .service-number {
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Optional label text */
.optional {
  font-weight: normal;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Service list without bullet styling (for semantic ol/li) */
.service-list {
  list-style: none;
}

.steps {
  list-style: none;
}

/* ============================================
   NEW DESIGN STYLES
   ============================================ */

/* New Header */
.header-new {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-direction: row-reverse;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4B5563;
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  font-family: inherit;
}

.lang-toggle:hover {
  color: #F59E0B;
  background: #F9FAFB;
}

.icon-globe {
  color: currentColor;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #10B981;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  text-decoration: none;
}

.call-btn:hover {
  background: #059669;
  text-decoration: none;
}

.icon-phone {
  color: white;
}

/* New Hero Section */
.hero-new {
  padding: 32px 16px;
}

.hero-container {
  max-width: 896px;
  margin: 0 auto;
}

.hero-card {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE047 100%);
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 24px;
  color: #111827;
}

.hero-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.hero-location {
  color: #374151;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.hero-subtitle {
  color: #374151;
  margin-bottom: 24px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}

.trust-icon {
  color: #111827;
  flex-shrink: 0;
}

/* Lead Form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111827;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background: white;
  color: #111827;
  font-size: 18px;
  font-family: inherit;
  transition: box-shadow 0.2s;
  user-select: text;
  -webkit-user-select: text;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3);
}

.form-textarea {
  resize: none;
  min-height: 80px;
}

.submit-btn-new {
  width: 100%;
  background: #111827;
  color: white;
  padding: 16px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.submit-btn-new:hover {
  background: #1F2937;
}

.submit-btn-new:disabled {
  background: #6B7280;
  cursor: not-allowed;
}

.form-disclaimer {
  text-align: center;
  color: #374151;
  font-size: 12px;
  margin-top: 16px;
}

/* WhatsApp CTA */
.whatsapp-cta {
  margin-top: 16px;
  text-align: center;
}

.whatsapp-prefix {
  color: #4B5563;
  font-size: 14px;
  margin-bottom: 12px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10B981;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #059669;
  text-decoration: none;
}

.whatsapp-icon {
  color: white;
}

/* How It Works New */
.how-it-works-new {
  background: #F9FAFB;
  padding: 48px 16px;
}

.how-it-works-container {
  max-width: 896px;
  margin: 0 auto;
}

.how-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #111827;
}

.steps-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-new {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  font-size: 30px;
  font-weight: 700;
  color: #F59E0B;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  color: #111827;
}

.step-desc {
  color: #4B5563;
}

/* Testimonials */
.testimonials-section {
  padding: 48px 16px;
}

.testimonials-container {
  max-width: 896px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #111827;
}

.testimonials-grid {
  display: grid;
  gap: 24px;
}

.testimonial-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stars {
  color: #FBBF24;
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 12px;
}

.testimonial-customer {
  font-size: 14px;
  color: #6B7280;
}

/* Final CTA */
.final-cta {
  background: white;
  padding: 48px 16px;
}

.final-cta-container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  color: #111827;
}

.final-cta-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta-subtitle {
  color: #4B5563;
  margin-bottom: 24px;
  font-size: 18px;
}

.scroll-top-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE047 100%);
  color: #111827;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.scroll-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* New Footer */
.footer-new {
  background: white;
  color: #111827;
  padding: 32px 16px;
  border-top: 1px solid #E5E7EB;
}

.footer-container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #F59E0B;
  margin-bottom: 16px;
}

.footer-tagline {
  color: #4B5563;
  margin-bottom: 16px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 24px;
}

.ltr-text {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

.footer-copyright {
  color: #6B7280;
  font-size: 12px;
  margin-top: 24px;
}

/* Form Messages */
#form-message {
  margin-bottom: 16px;
}

.form-success {
  background: #D1FAE5;
  color: #065F46;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

.form-error {
  background: #FEE2E2;
  color: #991B1B;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
}

/* Responsive for New Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-location {
    font-size: 16px;
  }

  .header-container {
    padding: 12px 16px;
    position: relative;
  }

  .header-container-whatwedo {
    position: relative;
    flex-wrap: nowrap;
  }

  .header-left {
    flex: 1;
    min-width: 0;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .logo-new {
    flex-shrink: 0;
  }

  /*
  .nav-mobile {
    display: flex;
  } */

  .call-text {
    display: none;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .step-new {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }
}

/* RTL Support */
/* RTL: Reverse header-actions so Call is leftmost, then Language */
[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .step-new {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-toggle,
[dir="rtl"] .call-btn,
[dir="rtl"] .whatsapp-btn {
  flex-direction: row-reverse;
}


/* ============================================
   WHAT WE DO PAGE STYLES
   ============================================ */

/* Header for What We Do Page */
.header-container-whatwedo {
  max-width: 1152px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
}

.logo-new {
  font-size: 24px;
  font-weight: 700;
  color: #F59E0B;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-new:hover {
  text-decoration: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #111827;
  text-decoration: none;
}

.nav-link-active {
  color: #111827;
  font-weight: 600;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #374151;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  flex-direction: column;
  padding: 16px;
  gap: 12px;
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.nav-mobile-open {
  display: flex;
  max-height: 300px;
  padding: 16px;
}

.nav-link-mobile {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
  display: block;
}

.nav-link-mobile:hover {
  background: #F9FAFB;
  color: #111827;
  text-decoration: none;
}

/* Hero Section for What We Do */
.hero-whatwedo {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE047 100%);
  padding: 64px 16px;
}

.hero-whatwedo-container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.hero-whatwedo-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.hero-whatwedo-subtitle {
  font-size: 20px;
  color: #374151;
}

/* Intro Section */
.intro-section {
  padding: 64px 16px;
}

.intro-container {
  max-width: 896px;
  margin: 0 auto;
}

.intro-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111827;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-paragraph {
  font-size: 18px;
  color: #374151;
  line-height: 1.75;
}

/* How It Works for What We Do */
.how-it-works-whatwedo {
  background: #F9FAFB;
  padding: 64px 16px;
}

.how-it-works-whatwedo-container {
  max-width: 896px;
  margin: 0 auto;
}

.how-title-whatwedo {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #111827;
}

.steps-whatwedo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-whatwedo {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number-whatwedo {
  font-size: 36px;
  font-weight: 700;
  color: #F59E0B;
  flex-shrink: 0;
}

.step-content-whatwedo {
  flex: 1;
}

.step-title-whatwedo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.step-desc-whatwedo {
  font-size: 18px;
  color: #4B5563;
}

/* CTA Section for What We Do */
.cta-section-whatwedo {
  padding: 64px 16px;
}

.cta-container-whatwedo {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-whatwedo {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.cta-subtitle-whatwedo {
  font-size: 20px;
  color: #4B5563;
  margin-bottom: 32px;
}

.cta-button-whatwedo {
  display: inline-block;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE047 100%);
  color: #111827;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button-whatwedo:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  text-decoration: none;
}

/* Footer for What We Do */
.footer-whatwedo {
  background: white;
  color: #111827;
  padding: 32px 16px;
  border-top: 1px solid #E5E7EB;
}

.footer-container-whatwedo {
  max-width: 1152px;
  margin: 0 auto;
}

.footer-grid-whatwedo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col-whatwedo {
  display: flex;
  flex-direction: column;
}

.footer-logo-whatwedo {
  font-size: 20px;
  font-weight: 700;
  color: #F59E0B;
  margin-bottom: 16px;
}

.footer-tagline-whatwedo {
  color: #4B5563;
}

.footer-heading-whatwedo {
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.footer-links-whatwedo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link-whatwedo {
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-whatwedo:hover {
  color: #111827;
  text-decoration: none;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  color: #4B5563;
}

.footer-bottom-whatwedo {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #E5E7EB;
}

.footer-copyright-whatwedo {
  color: #6B7280;
  font-size: 14px;
}

/* Responsive for What We Do Page */
@media (max-width: 768px) {
  .header-container-whatwedo {
    flex-wrap: nowrap;
    gap: 16px;
    position: relative;
  }

  .header-left {
    gap: 16px;
    flex: 1;
    min-width: 0;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .logo-new {
    flex-shrink: 0;
  }
/*
  .nav-mobile {
    display: flex;
  } */

  .hero-whatwedo-title {
    font-size: 28px;
  }

  .hero-whatwedo-subtitle {
    font-size: 18px;
  }

  .intro-title {
    font-size: 24px;
  }

  .intro-paragraph {
    font-size: 16px;
  }

  .how-title-whatwedo {
    font-size: 24px;
  }

  .step-whatwedo {
    flex-direction: column;
    text-align: center;
  }

  .step-number-whatwedo {
    margin: 0 auto;
  }

  .cta-title-whatwedo {
    font-size: 24px;
  }

  .cta-subtitle-whatwedo {
    font-size: 18px;
  }

  .footer-grid-whatwedo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .call-text {
    display: none;
  }
}

/* RTL Support for What We Do 
[dir="rtl"] .header-container-whatwedo {
  flex-direction: row-reverse;
} */

/* RTL Desktop: Reverse header-left so logo is rightmost, then nav links */
/* Only apply to desktop - mobile keeps hamburger first 
@media (min-width: 769px) {
  [dir="rtl"] .header-left {
    flex-direction: row-reverse;
  }
} */

[dir="rtl"] .step-whatwedo {
  flex-direction: row-reverse;
}

/* RTL: Keep navigation order the same (Home always first from reading direction) */
[dir="rtl"] .nav-desktop {
  /* Don't reverse - keep Home first from right in RTL */
  flex-direction: row;
}

[dir="rtl"] .nav-mobile {
  left: auto;
  right: 0;
}

/* Electrician Application Form Styles */
.electrician-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-intro-text {
  text-align: center;
  color: #4B5563;
  margin-bottom: 32px;
  font-size: 16px;
}

.electrician-form .form-field {
  margin-bottom: 20px;
}

.electrician-form .form-input,
.electrician-form .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
  color: #111827;
}

.electrician-form .form-input:focus,
.electrician-form .form-textarea:focus {
  outline: none;
  border-color: #F59E0B;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.electrician-form .form-textarea {
  resize: vertical;
  min-height: 100px;
}

@media (max-width: 768px) {
  .electrician-form {
    padding: 24px;
  }
}

