/*
Theme Name: Plus Siyana
Theme URI: https://plus-siyana.com/
Author: Plus Siyana Tech
Author URI: https://plus-siyana.com/
Description: Custom, high-converting Elementor-compatible Arabic theme for Plus Siyana (Automatic Washing Machine Repair in Jeddah - 0597160332).
Version: 2.1.0
License: GNU General Public License v2 or later
Text Domain: plus-siyana
Tags: rtl-language-support, custom-menu, elementor-ready, e-commerce, localized
*/

:root {
  --primary-color: #0b3b60;
  --primary-dark: #072640;
  --primary-light: #165688;
  --accent-color: #f37021;
  --accent-hover: #d95b10;
  --whatsapp-color: #25d366;
  --whatsapp-dark: #128c7e;
  --text-dark: #1e293b;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 59, 96, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(11, 59, 96, 0.15);
  --transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
}

html {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

body {
  font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
  direction: rtl;
  text-align: right;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden !important;
  max-width: 100% !important;
  padding-bottom: 70px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(243, 112, 33, 0.1);
  color: var(--accent-color);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Header & Navigation Spacing */
.header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header .container {
  max-width: 1320px;
  padding: 0 36px;
}

/* Fix WP Admin Bar Overlap when logged in */
body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}

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

.top-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary-color);
  white-space: nowrap;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.logo img {
  width: 80px !important;
  height: 80px !important;
  max-height: 80px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  display: block;
}

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

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

.nav-links a {
  font-weight: 700;
  color: var(--primary-dark);
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

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

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

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

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3);
}

.btn-phone {
  background: var(--primary-color);
  color: #ffffff;
}

.btn-phone:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 59, 96, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp-color);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #072640 0%, #0b3b60 100%);
  color: #ffffff !important;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1, .hero-content h1 {
  font-size: 2.75rem;
  color: #ffffff !important;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.hero h1 span, .hero-content h1 span {
  color: #ff9d5c !important;
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.45;
  margin-top: 12px;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}

/* Quick Features / Stats Section */
.features-bar {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

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

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(11, 59, 96, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

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

.feature-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

/* Brands Cards Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.brand-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transition: var(--transition);
}

.brand-card:hover::before {
  background: var(--accent-color);
}

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

.brand-logo-badge {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--primary-color);
  display: inline-block;
  padding: 10px 24px;
  background: rgba(11, 59, 96, 0.05);
  border-radius: var(--radius-sm);
}

.brand-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.brand-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.brand-card .btn {
  width: 100%;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 59, 96, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-list li svg {
  color: var(--accent-color);
}

/* Common Faults Accordion & Cards */
.faults-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fault-item {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 24px;
  border-right: 4px solid var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.fault-item h4 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Error Codes Grid for Brand Pages */
.error-codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.code-card {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.code-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-family: monospace;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.code-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

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

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

.why-us-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.12);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

/* Coverage Areas Grid */
.areas-wrapper {
  background: var(--primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
}

.areas-wrapper h2 {
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}

.areas-wrapper p {
  color: #94a3b8;
  text-align: center;
  margin-bottom: 30px;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.area-tag:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: right;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(11, 59, 96, 0.02);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

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

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: 60px 0;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

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

/* Footer */
.footer {
  background: linear-gradient(180deg, #071e33 0%, #030f1a 100%);
  color: #94a3b8;
  padding: 70px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr 1.1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: start;
}

.footer-about .logo {
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #94a3b8;
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '◀';
  font-size: 0.65rem;
  color: var(--accent-color);
  opacity: 0.7;
  transition: transform 0.2s ease;
}

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

.footer-links a:hover::before {
  transform: translateX(-3px);
  color: #ff9d5c;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-contact-item i {
  color: var(--accent-color);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

.footer-bottom strong {
  color: #e2e8f0;
}

/* Sticky Mobile Bottom Bar (Direct Call Only) */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(4, 22, 36, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(243, 112, 33, 0.35);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-sticky-btn:active {
  transform: scale(0.98);
}

.mobile-sticky-btn i {
  font-size: 1.2rem;
  will-change: transform;
  transform: translateZ(0);
  display: inline-block;
  animation: phonePulse 2s infinite ease-in-out;
}

@keyframes phonePulse {
  0%, 100% { transform: rotate(0deg) scale(1) translateZ(0); }
  10%, 30% { transform: rotate(-15deg) scale(1.1) translateZ(0); }
  20%, 40% { transform: rotate(15deg) scale(1.1) translateZ(0); }
  50% { transform: rotate(0deg) scale(1) translateZ(0); }
}

/* Brands Grid Section (Strict 5 Columns Desktop / 2 Columns Mobile) */
.brands-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

.brand-card {
  display: block;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  will-change: transform;
  transform: translateZ(0);
}

.brand-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 10px 25px -5px rgba(11, 59, 96, 0.08);
}

/* Diagnostic Matrix 3-Column Grid (Desktop: 2 Rows of 3 Equal Cards) */
.grid-3-cols {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 992px) {
  .grid-3-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 640px) {
  .grid-3-cols {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Responsive Mobile Layout Adjustments */
@media (max-width: 992px) {
  .header .container {
    padding: 0 24px !important;
  }

  .navbar {
    padding: 12px 0 !important;
    gap: 12px;
    min-height: 64px;
  }
  
  .logo {
    font-size: 1.35rem !important;
    gap: 10px;
    margin-right: 4px !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    font-size: 1.4rem;
    color: var(--primary-color);
    background: rgba(11, 59, 96, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-left: 4px !important;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-toggle:hover,
  .mobile-toggle:active {
    background: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #ffffff !important;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    border-bottom: 4px solid var(--accent-color) !important;
    border-radius: 0 0 16px 16px !important;
    z-index: 99999 !important;
  }

  .nav-links.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-links a {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    padding: 12px 16px !important;
    width: 100% !important;
    text-align: right !important;
    border-bottom: 1px solid #f1f5f9 !important;
    display: block !important;
  }

  /* Hero Section Mobile Styling */
  .hero {
    padding: 40px 16px 35px !important;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

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

  .hero-content .badge {
    display: inline-block;
    font-size: 0.85rem;
    padding: 6px 14px;
    margin-bottom: 14px;
    background: rgba(243, 112, 33, 0.2);
    color: #ff9d5c;
    border: 1px solid rgba(243, 112, 33, 0.3);
  }

  .hero-content h1 {
    font-size: 2.1rem !important;
    line-height: 1.35 !important;
    color: #ffffff !important;
    margin-bottom: 14px !important;
    text-align: center !important;
  }

  .hero-content h1 span {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
    color: #ff9d5c !important;
    margin-top: 10px !important;
    font-weight: 700 !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    color: #cbd5e1 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  .hero-badges {
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
  }

  .hero-badge-item {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
  }

  .hero-buttons .btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 1.05rem !important;
  }

  .hero-card {
    padding: 24px 18px !important;
    border-radius: var(--radius-md) !important;
    margin-top: 10px !important;
  }

  .hero-card h3 {
    font-size: 1.25rem !important;
  }

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

@media (max-width: 768px) {
  body {
    padding-bottom: 75px;
  }

  .header .container {
    padding: 0 20px !important;
  }
  
  .top-bar {
    display: none;
  }
  
  .mobile-sticky-bar {
    display: block;
  }
  
  .nav-cta .btn-phone {
    display: none;
  }

  .navbar {
    min-height: 60px !important;
    padding: 8px 0 !important;
  }

  .logo {
    width: 60px !important;
    height: 60px !important;
  }

  .logo img {
    width: 60px !important;
    height: 60px !important;
    max-height: 60px !important;
    aspect-ratio: 1 / 1 !important;
  }

  .hero-content h1 {
    font-size: 1.8rem !important;
    line-height: 1.35 !important;
  }

  .hero-content h1 span {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
    margin-top: 8px !important;
  }
  
  .footer {
    padding: 50px 0 25px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* Ultra-Narrow Screen Optimization (275px - 360px viewports) */
@media (max-width: 360px) {
  html, body {
    overflow-x: hidden !important;
  }
  
  .logo {
    width: 48px !important;
    height: 48px !important;
  }

  .logo img {
    width: 48px !important;
    height: 48px !important;
    max-height: 48px !important;
    aspect-ratio: 1 / 1 !important;
  }
  
  .mobile-toggle {
    width: 38px !important;
    height: 38px !important;
    padding: 4px !important;
    font-size: 1.2rem !important;
  }
  
  .hero h1 {
    font-size: 1.5rem !important;
  }
  
  .mobile-sticky-flex .btn {
    padding: 10px 6px !important;
    font-size: 0.8rem !important;
  }
}

/* ==========================================================================
   Scoped Font Awesome 6 Icons with font-display: swap (Zero Unused CSS)
   ========================================================================== */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2') format('woff2');
}

.fa-solid, .fas {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.fa-brands, .fab {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.fa-location-dot::before { content: "\f3c5"; }
.fa-clock::before { content: "\f017"; }
.fa-phone::before { content: "\f095"; }
.fa-phone-volume::before { content: "\f2a0"; }
.fa-screwdriver-wrench::before, .fa-tools::before { content: "\f7d9"; }
.fa-bars::before { content: "\f0c9"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-shield-halved::before { content: "\f3ed"; }
.fa-square-check::before { content: "\f14a"; }
.fa-house-chimney::before { content: "\e3af"; }
.fa-calendar-check::before { content: "\f274"; }
.fa-microchip::before { content: "\f2db"; }
.fa-wave-square::before { content: "\f83e"; }
.fa-wind::before { content: "\f72e"; }
.fa-arrows-spin::before { content: "\e4d6"; }
.fa-wrench::before { content: "\f0ad"; }
.fa-user-gear::before { content: "\f4fe"; }
.fa-whatsapp::before { content: "\f232"; }
.fa-star::before { content: "\f005"; }
.fa-check::before { content: "\f00c"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-chevron-up::before { content: "\f077"; }
.fa-circle-check::before { content: "\f058"; }
.fa-circle-exclamation::before { content: "\f06a"; }
.fa-circle-xmark::before { content: "\f057"; }
.fa-triangle-exclamation::before { content: "\f071"; }
.fa-house::before { content: "\f015"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-truck-fast::before { content: "\f48b"; }

