/* ============================================
   AL AMANI SPECIALITY STRUCTURES - MAIN CSS
   ============================================ */

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

:root {
  --primary: #0d4380;
  --primary-dark: #082d58;
  --primary-light: #1a5aa0;
  --accent: #f39c12;
  --accent-hover: #e67e22;
  --dark: #1a1a1a;
  --text: #333333;
  --text-light: #666666;
  --light-bg: #f5f8fc;
  --border: #e5e9f0;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 8px rgba(13, 67, 128, 0.08);
  --shadow-md: 0 6px 20px rgba(13, 67, 128, 0.12);
  --shadow-lg: 0 15px 40px rgba(13, 67, 128, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

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

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
}
.top-bar a:hover { color: var(--accent); }
.top-bar .social-icons a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.top-bar .social-icons a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(13,67,128,0.3);
}
.logo-text h1 {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.nav-cta::after { display: none !important; }

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

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(13,67,128,0.25);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(243,156,18,0.35);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(8,45,88,0.78), rgba(13,67,128,0.72)),
    url('image12.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 700px;
  animation: fadeInUp 1s ease;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s ease;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(rgba(8,45,88,0.85), rgba(13,67,128,0.78)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.7; }

/* ========== SECTION COMMON ========== */
section { padding: 80px 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 12px;
  position: relative;
  padding: 0 30px;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

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

/* ========== FEATURES (HOME) ========== */
.features-strip {
  background: var(--white);
  padding: 30px 0;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.features-strip .grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 14px rgba(13,67,128,0.25);
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ========== ABOUT PREVIEW / CARDS ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.05); }
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.experience-badge .num {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.experience-badge .txt { font-size: 0.85rem; font-weight: 600; }

.about-content .section-tag { margin-left: 0; padding-left: 30px; padding-right: 0; }
.about-content .section-tag::after { display: none; }
.about-content h2 { margin-bottom: 20px; font-size: 2rem; }
.about-content p { margin-bottom: 16px; color: var(--text-light); }
.check-list { margin: 24px 0 30px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.check-list i {
  color: var(--white);
  background: var(--primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.1); }
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,67,128,0.5), transparent 60%);
}
.service-body {
  padding: 26px;
}
.service-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  margin-top: -56px;
  position: relative;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(13,67,128,0.3);
  transition: var(--transition);
}
.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  transform: rotate(-5deg) scale(1.05);
}
.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { color: var(--accent); gap: 10px; }

/* ========== DETAILED SECTIONS (HOME) ========== */
.detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.detail-block:last-child { margin-bottom: 0; }
.detail-block.reverse { direction: rtl; }
.detail-block.reverse > * { direction: ltr; }
.detail-block .detail-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
}
.detail-block .detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.detail-block .detail-img:hover img { transform: scale(1.06); }
.detail-block h3 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: var(--primary);
}
.detail-block p {
  color: var(--text-light);
  margin-bottom: 14px;
}
.detail-block ul {
  margin: 18px 0;
}
.detail-block ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}
.detail-block ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 2px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  background: rgba(243,156,18,0.15);
  border-radius: 50%;
}
.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-banner p { opacity: 0.9; }

/* ========== STATS / WHY US ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  text-align: center;
  padding: 38px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid var(--primary);
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}
.stat-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 34px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.why-card .why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  transform: rotateY(180deg);
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ========== PROJECTS GRID / GALLERY ========== */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.88rem;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,45,88,0.92) 0%, rgba(13,67,128,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  transition: var(--transition);
}
.project-category {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-overlay h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
  transform: translateY(10px);
  transition: var(--transition);
}
.project-overlay p {
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition);
}
.project-card:hover .project-overlay h3 { transform: translateY(0); }
.project-card:hover .project-overlay p { opacity: 0.9; transform: translateY(0); transition-delay: 0.1s; }
.zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: var(--transition);
  font-size: 1rem;
}
.project-card:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(rgba(8,45,88,0.9), rgba(13,67,128,0.88)),
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
  color: var(--white);
}
.testimonials .section-header h2, .testimonials .section-header p { color: var(--white); }
.testimonial-slider {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: 14px;
}
.testimonial-card i.fa-quote-left {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author h5 {
  color: var(--white);
  font-size: 1.05rem;
}
.testimonial-author span {
  font-size: 0.85rem;
  opacity: 0.8;
}
.stars {
  color: var(--accent);
  margin-bottom: 14px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.contact-info-card:hover {
  transform: translateX(6px);
  border-left-color: var(--accent);
}
.contact-info-card .ci-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.contact-info-card p, .contact-info-card a {
  color: var(--text-light);
  font-size: 0.92rem;
}
.contact-info-card a:hover { color: var(--primary); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,67,128,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.map-wrap {
  margin-top: 50px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ========== SERVICE SINGLE (services page) ========== */
.service-single {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-single:last-child { border-bottom: none; }
.service-single .detail-block { margin-bottom: 0; }
.service-single:nth-child(even) .detail-block { direction: rtl; }
.service-single:nth-child(even) .detail-block > * { direction: ltr; }

/* ========== ABOUT PAGE ========== */
.about-mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mission-card {
  padding: 36px 28px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}
.mission-card .m-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.mission-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.mission-card p { color: var(--text-light); }

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.value-item {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}
.value-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.value-item .v-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item h4 { font-size: 1rem; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: var(--text-light); }

/* ========== FOOTER ========== */
.footer {
  background: #061d3b;
  color: #c5d0de;
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: #c5d0de;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--accent);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
  min-width: 16px;
}
.footer-contact a:hover { color: var(--accent); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  transform: translateY(-4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-bottom a:hover { color: var(--accent); }

/* ========== WHATSAPP FLOATING ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  animation: whatsappPulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.12) rotate(8deg);
  background: #128c7e;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--whatsapp);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s infinite;
}
@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 10px 30px rgba(37,211,102,0.6); }
}
@keyframes ripple {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .top-bar .info-item { margin-right: 14px; font-size: 0.8rem; }
  .top-bar .left-info { display: none; }
  .features-strip .grid { grid-template-columns: repeat(2,1fr); }
  .two-col, .detail-block, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-block.reverse { direction: ltr; }
  .service-single:nth-child(even) .detail-block { direction: ltr; }
  .about-img img { height: 400px; }
  .experience-badge { left: 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-mission { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .top-bar { display: none; }
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 14px;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open { max-height: 600px; }
  .nav-cta { text-align: center; }
  .hero { min-height: 80vh; text-align: center; }
  .hero-buttons { justify-content: center; }
  .features-strip { margin-left: 16px; margin-right: 16px; margin-top: -40px; padding: 20px; }
  .features-strip .grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-item { padding: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .values-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .about-img img { height: 340px; }
  .detail-block .detail-img { height: 300px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .hero h1 { font-size: 1.8rem; }
  .logo-text h1 { font-size: 1rem; }
  .logo-text span { font-size: 0.65rem; }
  .logo-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .scroll-top { width: 42px; height: 42px; bottom: 20px; left: 20px; }
}
