/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --bg-color: #f8fafc;
  --surface-color: #ffffff;
  --surface-color-hover: #f1f5f9;
  --primary-color: #0284c7;
  --primary-hover: #0369a1;
  --text-main: #0f172a;
  --text-muted: #475569;
  --accent-gradient: linear-gradient(135deg, #0ea5e9, #2563eb);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface-color);
  min-width: 220px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
  list-style: none;
  border: 1px solid var(--glass-border);
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  padding: 0.8rem 1.5rem;
  display: block;
  font-weight: 500;
  color: var(--text-main);
  transition: background 0.3s ease;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: var(--surface-color-hover);
  color: var(--primary-color);
  padding-left: 2rem;
}

.contact-btn {
  background: var(--accent-gradient);
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}



.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  gap: 0;
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-color);
}


.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}


.hero-content {
  text-align: left;
  padding: 8rem 5% 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-features li {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-features i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-trust .stars {
  color: #f59e0b;
  font-size: 1.2rem;
  display: flex;
  gap: 0.2rem;
}

.hero-trust span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-border);
}

/* Service Inner Pages Hero */
.service-hero {
    min-height: 40vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--surface-color);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}
.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.service-hero h1 span {
    color: var(--primary-color);
}
.service-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
}

/* Services Section */
.service-section {
  padding: 5rem 5%;
}
.service-section:nth-child(even) {
  background: var(--surface-color);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header h2 span {
  color: var(--primary-color);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem; /* Balanced gap between the cards */
  margin: 0 auto 4rem auto;
  max-width: 1150px; /* Balanced max-width for perfect left/right outer gaps */
  perspective: 1500px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  /* Scroll reveal initial state */
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Class added by JS on scroll */
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Heavy Premium Hover & Mobile Tap (Active) State */
.service-card:hover, .service-card:active {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(14, 165, 233, 0.2);
  z-index: 20;
}

.card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.card-image-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.card-image-slider-track::-webkit-scrollbar {
  display: none;
}

.card-img img, .card-image-slider-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.card-image-slider-track img {
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
}

/* Dots Styling */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.service-card:hover .card-img img, .service-card:hover .card-image-slider-track img {
  transform: scale(1.15);
  filter: brightness(0.8);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.trust-badge {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.explore-btn {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover .explore-btn {
  transform: translateX(8px);
}

.view-all-container {
  text-align: center;
  margin-top: 2rem;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: var(--surface-color);
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}

.marquee {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  width: fit-content;
  animation: slideRightToLeft 25s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes slideRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.review-card {
  width: 350px;
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-color);
}

.review-card .stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.review-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-card h4 {
  color: var(--text-main);
  font-weight: 700;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--surface-color);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--surface-color-hover);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-color);
}

.faq-answer p {
  padding: 1.5rem;
  color: var(--text-muted);
}

/* Stats Section */
.stats-section {
  padding: 5rem 5%;
  background: var(--accent-gradient);
  color: #fff;
  text-align: center;
}

.stat-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-box i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.stat-box h3 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-box p {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary-hover), #0f172a);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('image/ac-repair.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-call {
  background: #ffffff;
  color: var(--primary-hover);
}

.btn-call:hover {
  background: #f1f5f9;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
  background: var(--surface-color);
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info li a:hover {
  color: var(--primary-color);
}

.contact-info li i {
  margin-top: 4px;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 5%;
  background: var(--surface-color);
}
.why-choose-us .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.wcu-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.wcu-image {
  flex: 1;
  background: #06193b;
  padding: 3rem;
  border-radius: 20px;
}
.wcu-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.wcu-content {
  flex: 1;
}
.wcu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wcu-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}
.wcu-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 2.5rem;
  bottom: -2rem;
  width: 2px;
  background: #06193b;
  z-index: 0;
}
.wcu-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #06193b;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-size: 1rem;
}
.wcu-text h4 {
  color: #06193b;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.wcu-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Supported Brands Section */
.supported-brands {
  padding: 5rem 5%;
  background: var(--bg-color);
  text-align: center;
}
.supported-brands h2 {
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
}
.supported-brands h2 span {
  color: var(--primary-color);
}
.brands-tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.brand-tag {
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  padding: 15px;
  overflow: hidden;
}
.brand-tag img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-tag:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(rgba(6, 25, 59, 0.8), rgba(6, 25, 59, 0.9)), url('image/ac_cleaning.png') center/cover;
  padding: 10rem 5% 6rem;
  text-align: center;
  color: white;
}
.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.about-hero h1 span {
  color: var(--primary-color);
}
.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.heavy-article {
  padding: 6rem 5%;
}
.ha-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ha-container.reverse {
  flex-direction: row-reverse;
}
.ha-image {
  flex: 1;
}
.ha-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.ha-text {
  flex: 1;
}
.ha-text h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}
.ha-text h2 span {
  color: var(--primary-color);
}
.ha-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-section {
  background: var(--secondary-color);
  color: white;
  text-align: center;
}
.mission-container {
  max-width: 800px;
  margin: 0 auto;
}
.mission-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.mission-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}
.mission-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.value-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.value-card h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.quality-list {
  list-style: none;
  margin-top: 2rem;
}
.quality-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 500;
}
.quality-list i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.standard-section {
  background: linear-gradient(135deg, var(--surface-color) 0%, #ffffff 100%);
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.standard-content {
  max-width: 800px;
  margin: 0 auto;
}
.standard-content h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}
.standard-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-us-team {
  padding: 6rem 5%;
  background: var(--bg-color);
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
}
.team-header {
  text-align: center;
  margin-bottom: 4rem;
}
.team-header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.team-member {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.member-info {
  padding: 2rem;
  text-align: center;
}
.member-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.member-info p {
  color: var(--text-muted);
}

/* Local SEO Jeddah Sections */

.jeddah-article h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.jeddah-article h2 span {
  color: var(--primary-color);
}

.jeddah-article p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.famous-places {
  padding: 5rem 5%;
  background: var(--surface-color);
}

.famous-places .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.place-card {
  background: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

.place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.place-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-card:hover img {
  transform: scale(1.05);
}

.place-card .place-info {
  padding: 1.5rem;
  text-align: left;
}

.place-card .place-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.place-card .place-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Bubble Navigation Styles (iOS Style) */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(240, 240, 245, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 1.5rem 2rem;
    gap: 0.8rem;
    z-index: 999;
    /* Bubble effect */
    clip-path: circle(0px at calc(100% - 45px) 40px);
    transition: clip-path 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .nav-links.active {
    clip-path: circle(150% at calc(100% - 45px) 40px);
  }
  
  .nav-links > li {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .nav-links.active > li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }

  .nav-links > li > a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1c1c1e;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Make Dropdown expand on mobile menu */
  .nav-links .dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: transparent;
    padding: 0;
    margin-top: 0;
    text-align: left;
    display: none; /* Hidden by default */
  }
  
  .nav-links .dropdown.open .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links .dropdown .dropdown-menu li a {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem 0.8rem 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.02);
    color: var(--text-muted);
  }
  
  .nav-links .dropdown .dropdown-menu li a:hover {
    color: var(--primary-color);
    background: transparent;
  }
  
  /* Mobile Toggle Bubble Icon */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .mobile-toggle:active {
    transform: scale(0.9);
  }
  .mobile-toggle i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
  }
  .mobile-toggle.active i {
    transform: rotate(90deg);
  }
  .mobile-toggle.active i::before {
    content: "\f00d"; /* fa-times */
  }

  /* Fully Responsive Sections */
  .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-slider {
    height: 40vh;
  }

  .hero-content {
    padding: 3rem 5%;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .hero-btns .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .social-links {
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
  }
  
  .ha-container,
  .wcu-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .wcu-image {
    padding: 1.5rem;
    width: 100%;
  }

  .wcu-item {
    text-align: left; /* Keep list items left-aligned for readability */
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-btn {
    display: none;
  }

  /* Fix navbar title overflow on small screens */
  .logo {
    font-size: 0.85rem;
    max-width: none;
    line-height: 1;
    white-space: nowrap;
    gap: 8px;
  }
  .logo img {
    max-height: 35px !important;
  }
  .logo span {
    display: inline;
    font-size: 0.85rem;
    font-weight: 700;
  }

  /* Ensure all other grids stack correctly on mobile */
  .stats-grid,
  .values-grid,
  .history-grid,
  .contact-info-grid,
  .places-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Language Switcher Button Styles */
.lang-switcher {
  background: var(--bg-color);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 3px;
  margin-left: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.lang-btn:hover:not(.active) {
  color: var(--primary-color);
}

/* Hide Default Google Translate Widget and Bar */
.goog-te-banner-frame.skiptranslate, 
.goog-tooltip,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}
body {
  top: 0px !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Ensure body retains right-to-left layout perfectly when translated */
body[dir="rtl"] {
  text-align: right;
  direction: rtl;
}
body[dir="rtl"] .hero-content {
  text-align: right;
}
body[dir="rtl"] .nav-links {
  direction: rtl;
}
body[dir="rtl"] .hero-features li i {
  margin-left: 10px;
  margin-right: 0;
}
body[dir="rtl"] .btn i,
body[dir="rtl"] .contact-info li i {
  margin-left: 8px;
  margin-right: 0;
}
body[dir="rtl"] .logo img {
  margin-left: 10px;
  margin-right: 0;
}

/* Aggressive Hide Google Translate Banner */
iframe.goog-te-banner-frame, .goog-te-banner-frame, .goog-te-banner-frame.skiptranslate, .skiptranslate > iframe.goog-te-banner-frame, .VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; visibility: hidden !important; height: 0 !important; }
body { top: 0px !important; position: static !important; margin-top: 0px !important; }


/* Restore Hero Shadow */
.hero-slider::after { content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 100%; background: linear-gradient(to right, transparent, var(--bg-color)); z-index: 3; pointer-events: none; }
@media (max-width: 768px) { .hero-slider::after { width: 100%; height: 150px; top: auto; bottom: 0; right: 0; background: linear-gradient(to bottom, transparent, var(--bg-color)); } }


/* Arabic Logo Switch */
body[dir="rtl"] .logo-en { display: none !important; }
body[dir="rtl"] .logo-ar { display: inline-block !important; }


@media (max-width: 768px) { .ha-container.reverse { flex-direction: column; } }



.card-wa-btn {
  background: #25D366;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.card-wa-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}


/* Stylish Location in Footer */
.footer-col ul.contact-info li:first-child {
  background: rgba(14, 165, 233, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  color: inherit;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer-col ul.contact-info li:first-child i {
  color: #ff4757;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-5px);}
  60% {transform: translateY(-3px);}
}


/* WhatsApp Modal Styles */
.contact-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}
.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.contact-modal-content {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  max-width: 90%;
  width: 380px;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.contact-modal-overlay.active .contact-modal-content {
  transform: translateY(0) scale(1);
}
.contact-close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  transition: color 0.2s;
}
.contact-close-btn:hover {
  color: #333;
}
.contact-modal-content h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary-color, #333);
  font-size: 1.4rem;
}
.contact-modal-btn {
  display: flex !important;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
  padding: 1rem !important;
  font-size: 1.1rem !important;
  border-radius: 8px !important;
}
