/* ============================================
   DADAŞIM OTO - Premium Corporate Auto Service
   ============================================ */

:root {
  --primary: #e31e24;
  --primary-dark: #c4191f;
  --primary-light: #ff3b41;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-gray: #2d2d2d;
  --medium-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.preloader-logo i {
  color: var(--primary);
  font-size: 2rem;
  animation: spin 2s linear infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  animation: preloadProgress 1.5s ease forwards;
}

@keyframes preloadProgress {
  to { width: 100%; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  font-size: 1.4rem;
  font-weight: 500;
}

.brand-font .brand-text,
.preloader-logo span,
.footer-brand .brand-text,
.mobile-menu .offcanvas-title .brand-text {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-brand .brand-text {
  font-size: 1.35rem;
  line-height: 1;
}

.navbar-brand .brand-text strong,
.footer-brand .brand-text strong {
  color: var(--primary);
  font-weight: 800;
}

.navbar-brand i {
  color: var(--primary);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.navbar-brand strong {
  color: var(--primary);
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  background: none !important;
  box-shadow: none !important;
}

.toggler-icon {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin-bottom: 6px;
  transition: var(--transition);
  border-radius: 2px;
}

.toggler-icon:last-child {
  margin-bottom: 0;
}

.header-cta {
  border-radius: 50px;
  padding: 8px 20px !important;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
  background: var(--black) !important;
  width: 300px !important;
}

.mobile-menu .offcanvas-title {
  color: var(--white);
  font-weight: 600;
}

.mobile-menu .offcanvas-title i {
  color: var(--primary);
  margin-right: 8px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--dark-gray);
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1rem;
}

.mobile-nav-list a i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
}

.mobile-nav-list a:hover {
  color: var(--primary);
  padding-left: 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline-light {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  border-width: 2px;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(227, 30, 36, 0.15);
  color: var(--primary);
  border: 1px solid rgba(227, 30, 36, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Stats */
.hero-stats {
  margin-top: 60px;
  padding-bottom: 80px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 30, 36, 0.3);
  background: rgba(227, 30, 36, 0.08);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-card .stat-number {
  display: inline;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  display: inline;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll:hover {
  color: var(--primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SECTIONS - COMMON
   ============================================ */
.section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-badge-light {
  color: var(--primary-light);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-text {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.about-badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227, 30, 36, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(227, 30, 36, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.service-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover .service-hover-line {
  transform: scaleX(1);
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 50%, var(--dark-gray) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 30px 25px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(227, 30, 36, 0.1);
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-5px);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.why-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--light-gray);
  min-height: 160px;
}

.gallery-item.is-loading .gallery-skeleton {
  opacity: 1;
}

.gallery-item.is-loaded .gallery-skeleton {
  opacity: 0;
  pointer-events: none;
}

.gallery-item.has-error {
  background: linear-gradient(135deg, var(--dark-gray), var(--dark));
}

.gallery-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--light-gray) 0%,
    #ececec 50%,
    var(--light-gray) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 1;
  transition: opacity 0.3s ease;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.gallery-item.is-loaded img {
  opacity: 1;
}

.gallery-item.has-error .gallery-fallback {
  opacity: 1;
}

.gallery-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-fallback i {
  font-size: 2rem;
  color: var(--primary);
}

.gallery-fallback span {
  font-size: 0.85rem;
  font-weight: 500;
}

.btn-load-more {
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  border-width: 2px;
  transition: var(--transition);
}

.btn-load-more:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(227, 30, 36, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ============================================
   FAQ / SSS
   ============================================ */
.faq-section {
  background: var(--light-gray);
}

.faq-cta-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  margin-top: 30px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.faq-cta-box > i {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-cta-box strong {
  display: block;
  color: var(--black);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.faq-cta-box p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin: 0;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  background: var(--white);
}

.faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  padding: 20px 24px;
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e31e24'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  padding: 0 24px 22px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--light-gray);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  color: rgba(227, 30, 36, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(227, 30, 36, 0.1);
}

.testimonial-stars {
  margin-bottom: 18px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 0.95rem;
  margin-right: 2px;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.82rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--white);
}

.contact-info-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-actions {
  margin-top: 35px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-brand i {
  color: var(--primary);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.footer-brand strong {
  color: var(--primary);
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: var(--dark-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  margin-top: 60px;
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
  margin-top: 10px !important;
  font-size: 0.85rem !important;
}

.footer-credit-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.footer-credit-link:hover {
  color: var(--primary);
}

.footer-bottom strong {
  color: var(--primary);
}

/* ============================================
   FAB & BACK TO TOP
   ============================================ */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.fab:hover {
  transform: scale(1.1);
  color: var(--white);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.fab-phone {
  background: var(--primary);
}

.fab-phone:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }

  .about-image {
    height: 400px;
  }

  .about-badge {
    right: 10px;
    bottom: 20px;
    padding: 20px 25px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .hero-stats {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 70px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-card {
    padding: 20px 15px;
  }

  .stat-card .stat-number {
    font-size: 1.8rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .about-badge {
    right: 0;
    padding: 15px 20px;
  }

  .about-badge-number {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .contact-info-card {
    padding: 30px 25px;
  }

  .fab-container {
    bottom: 20px;
    right: 20px;
  }

  .fab {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }

  .footer {
    padding: 60px 0 0;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    padding-bottom: 60px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .service-card {
    padding: 25px 22px;
  }

  .testimonial-card {
    padding: 25px 22px;
  }
}
