/* Azeez Garage - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #ff6a00;
  --secondary: #000000;
  --accent: #ffffff;
  --dark: #0a0a0a;
  --dark-card: #141414;
  --dark-hover: #1e1e1e;
  --gray-text: #b0b0b0;
  --border-color: #262626;
  --font-primary: 'Poppins', sans-serif;
  --font-title: 'Montserrat', sans-serif;
}





  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 140px;   /* Desktop size */
    height: auto;
}

.logo span {
    font-size: 22px;
    color: #000;
}

.logo span strong {
    color: #f4b400; /* highlight color (gold/yellow) */
}

/* Mobile responsive */
@media (max-width: 868px) {
    .logo-img {
        width: 125px;
    }

    .logo span {
        font-size: 18px;
    }
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--dark);
  color: var(--accent);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Circle animation */
.loader-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 4px solid gold;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}

/* Logo styling */
.loader-icon img {
  width: 250px;   /* BIG size */
  height: auto;
  animation: zoomIn 1s ease-in-out infinite alternate;
}

/* Animations */
@keyframes spin {
  100% { transform: rotate(360deg); }
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

.nav-btn {
  background: var(--primary);
  color: var(--accent);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--primary);
  box-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
}

.nav-btn:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

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

/* Common Section Layouts */
section {
  padding: 100px 20px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-title {
  font-size: 36px;
  font-weight: 800;
}

.section-title span {
  color: var(--primary);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--accent);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 106, 0, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Home Page Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1486006920555-c77dce18193b?q=80&w=1600') no-repeat center center/cover;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.5s;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 18px;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Preview Card Grid */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.15);
}

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

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

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

.service-card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: var(--accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service-card-body {
  padding: 30px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 25px;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.service-card-link:hover {
  gap: 15px;
}

/* Why Choose Us Section */
.why-section {
  background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1617886322168-72b886573c3c?q=80&w=1200') no-repeat center center/cover;
}

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

.why-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--primary);
  background: rgba(255, 106, 0, 0.03);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--accent);
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-desc {
  color: var(--gray-text);
  font-size: 14px;
}

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

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  position: relative;
}

.testimonial-card::after {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: rgba(255, 106, 0, 0.08);
}

.testimonial-stars {
  color: #ffb700;
  margin-bottom: 20px;
  font-size: 14px;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 25px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 700;
  font-size: 16px;
  display: block;
}

.client-role {
  color: var(--primary);
  font-size: 12px;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 30%, #442000 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-banner-desc {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 30px;
}

/* Footer Section */
footer {
  background: #050505;
  border-top: 1px solid var(--border-color);
  padding: 80px 20px 30px;
}

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

.footer-logo {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

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

.footer-desc {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 25px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-menu {
  list-style: none;
}

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

.footer-menu a {
  color: var(--gray-text);
  font-size: 14px;
}

.footer-menu a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-info {
  list-style: none;
}

.footer-info li {
  display: flex;
  gap: 15px;
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-info i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  color: var(--gray-text);
  font-size: 13px;
}

/* Page Header (Subpages) */
.page-header {
  height: 400px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1486006920555-c77dce18193b?q=80&w=1600') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.page-header-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--gray-text);
}

.breadcrumbs a {
  color: var(--accent);
}

.breadcrumbs span {
  color: var(--primary);
  margin: 0 10px;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  align-items: center;
}

.about-img-container {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: var(--primary);
  padding: 25px 35px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

.about-experience-badge h3 {
  font-size: 36px;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--primary);
}

.about-text p {
  color: var(--gray-text);
  margin-bottom: 25px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  background: var(--dark-card);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.mv-card i {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 15px;
}

.mv-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 13px;
  margin: 0;
  color: var(--gray-text);
}

/* Services Page Styles */
.services-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--dark-card);
  color: var(--accent);
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
}

.services-search-wrapper {
  max-width: 500px;
  margin: 0 auto 50px;
  position: relative;
}

.services-search {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  padding: 15px 50px 15px 20px;
  color: var(--accent);
  font-family: var(--font-primary);
  border-radius: 8px;
  outline: none;
  font-size: 15px;
}

.services-search:focus {
  border-color: var(--primary);
}

.services-search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-text);
}

.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.compact-service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.compact-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.1);
}

.compact-service-img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.compact-service-body {
  padding: 20px;
}

.compact-service-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.compact-service-category {
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.compact-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  justify-content: center;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.compact-service-btn:hover {
  background: var(--primary);
  color: var(--accent);
}

/* Gallery / Lightbox Page Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 106, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 20px;
  text-align: center;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
}

.gallery-overlay p {
  font-size: 13px;
  margin-top: 5px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.15s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Before / After Grid */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.ba-card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.ba-title {
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
}

.ba-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-img-box {
  position: relative;
  height: 280px;
}

.ba-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-tag {
  position: absolute;
  top: 15px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ba-tag.before {
  background: rgba(239, 68, 68, 0.9);
  left: 15px;
}

.ba-tag.after {
  background: rgba(34, 197, 94, 0.9);
  right: 15px;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

.lightbox-content-wrapper {
  max-width: 900px;
  width: 90%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 4px;
  border: 2px solid var(--border-color);
}

.lightbox-caption {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--accent);
  font-size: 32px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 40px;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.info-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.info-details p {
  color: var(--gray-text);
  font-size: 14px;
}

.contact-form-panel {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--accent);
}

.form-control {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border-color);
  padding: 15px;
  border-radius: 4px;
  color: var(--accent);
  font-family: var(--font-primary);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
}

textarea.form-control {
  resize: vertical;
}

.map-container {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 450px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    transition: left 0.4s ease;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-experience-badge {
    position: static;
    margin-top: 20px;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  
  .ba-slider {
    grid-template-columns: 1fr;
  }
  
  .ba-img-box {
    height: 200px;
  }
}
