/* Modern Dark Theme - Garage Gang */
:root {
  /* Colors */
  --bg-color: #0d0d0d;
  --bg-secondary: #161616;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-color: #ff6b00;
  /* Orange */
  /* New Yellow removed */
  /* New Yellow for 'Service Enquiry' button */
  --dark-accent: #000000;
  --border-color: #333333;

  /* Spacing */
  --container-width: 1400px;
  /* Wider for that broad header look */
  --section-padding: 100px 20px;

  /* Typography */
  --font-main: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  position: relative;
}

.loader-logo {
  width: 150px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-bar {
  width: 0%;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto;
  animation: loadingBar 2s ease-in-out forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes loadingBar {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* --- HEADER STYLES (NEW) --- */

/* Top Bar */
.top-bar {
  background-color: var(--bg-color);
  /* Match website bg */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

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

.top-bar-left a:hover {
  color: var(--accent-color);
}

.separator {
  color: #444;
}

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

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

.social-icons a {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.social-icons a:hover {
  background: var(--accent-color);
}

.btn-top-outline {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 4px 15px;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.btn-top-outline:hover {
  background: var(--accent-color);
  color: black;
}

/* Main Header */
header {
  background-color: var(--bg-color);
  /* Match website bg */
  padding: 20px 0;
  /* Slightly taller for grandeur */
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Subtle separation */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 80px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 50px;
  /* More breathable */
}

.nav-links a {
  color: #fff;
  font-size: 14px;
  /* Slightly smaller but bolder looks more premium */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 5px 0;
}

/* Animated Underline Effect */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
  /* Keep white, let underline do the talking */
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mobile-only-link {
  display: none;
}

.search-icon {
  color: white;
  font-size: 18px;
  transition: color 0.3s;
}

.search-icon:hover {
  color: var(--accent-color);
}

.btn-enquiry {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d45700 100%);
  color: #fff;
  /* White text creates better contrast on deep orange */
  padding: 12px 28px;
  border-radius: 50px;
  /* Pill shape is often more premium */
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
  background-color: #e65c00;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}


/* --- HERO SLIDER --- */
.hero-slider-container {
  background-color: #000;
  position: relative;
}

.hero-slider-track {
  display: grid;
  grid-template-areas: "slide";
}

.slide-img {
  grid-area: slide;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
  display: block;
  pointer-events: none;
}

.slide-img.active {
  opacity: 1;
  z-index: 1;
}

/* Arrows on Slider */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-arrow:hover {
  background: var(--accent-color);
  color: #000;
  border-color: transparent;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}


/* GENERAL SECTIONS (Shared) */
.btn {
  display: inline-block;
  padding: 14px 34px;
  background-color: var(--accent-color);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #ff8533;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-main);
}


/* About & Services & Contact styling */
.services,
.contact {
  padding: 80px 0;
}

.about,
.contact {
  background-color: var(--bg-color);
}

.services {
  background-color: var(--bg-secondary);
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white;
}

.section-title .subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--card-bg);
  padding: 30px;
  border: 1px solid #222;
  transition: transform 0.3s;
}

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

.service-icon {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-card h3 {
  color: white;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
}


/* Contact Form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  background: var(--bg-secondary);
  padding: 50px;
  border: 1px solid #222;
}

.divider {
  background: #333;
  height: 100%;
}

.form-group label {
  display: block;
  color: #888;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 1px solid #333;
  color: white;
  margin-bottom: 20px;
}

.form-group input:focus {
  border-color: var(--accent-color);
  outline: none;
}


/* Footer */
footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 1px solid #222;
}

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

.footer-links a {
  display: block;
  color: #888;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  color: #444;
  font-size: 13px;
  border-top: 1px solid #111;
  padding-top: 20px;
}


/* Mobile Responsive */
@media (max-width: 992px) {

  .nav-links,
  .top-buttons,
  .top-bar-left,
  .social-icons {
    display: none;
  }

  .mobile-toggle {
    display: block;
    order: 3;
  }

  .nav-actions {
    display: none !important;
  }

  .nav-logo {
    height: 75px;
  }

  /* Mobile Menu Drawer */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 20px;
    border-top: 1px solid var(--border-color);
  }

  .mobile-only-link {
    display: block;
    text-align: center;
    background: var(--accent-color);
    padding: 12px;
    border-radius: 4px;
    color: black !important;
    font-weight: 800;
    margin-top: 15px;
    text-transform: uppercase;
  }

  .top-bar {
    padding: 5px 0;
    font-size: 12px;
  }

  .top-bar-inner {
    justify-content: center;
  }

  .top-bar-left {
    display: flex;
    font-size: 11px;
    gap: 10px;
  }

  /* Show minimal contact info on mobile top bar */
}

@media (max-width: 768px) {

  .section-grid,
  .contact-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .divider {
    display: none;
  }
}

/* --- BRAND MARQUEE --- */
.brand-marquee-section {
  background-color: #000;
  padding: 20px 0;
  border-bottom: 1px solid #222;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.brand-label {
  min-width: 200px;
  font-weight: 800;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  z-index: 10;
  background: #000;
  padding-right: 20px;
  /* Box shadow to create fade effect over the scrolling items */
  box-shadow: 20px 0 30px #000;
}

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

.marquee-container {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  /* Mask for fade out on the right */
  mask-image: linear-gradient(to right, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent);
}

.marquee-content {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
  /* Important: width needs to be enough to hold items */
  width: max-content;
  padding-left: 20px;
}

/* Ensure logos are visible but integrated */
.partner-logo {
  height: 30px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .brand-label {
    box-shadow: none;
    text-align: left;
    margin-bottom: 0px;
    width: 100%;
    box-shadow: 0 10px 20px #000;
  }

  .marquee-container {
    width: 100%;
    mask-image: none;
  }
}

/* --- TRUST & PARTICLE SECTION --- */
.trust-section {
  background-color: #000;
  padding: 80px 0;
  border-bottom: 1px solid #222;
  overflow: hidden;
}

/* About & Services & Contact styling */
.services,
.contact {
  padding: 80px 0;
}

.about {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* --- PREMIUM SERVICES GRID --- */
/* --- PREMIUM SERVICES GRID --- */
.premium-services {
  background-color: #1a1a1a;
  padding: 80px 0;
  margin-top: 0;
  margin-bottom: 0 !important;
  /* Ensure no gap below */
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trust-text {
  flex: 1;
  max-width: 600px;
}

.trust-text h2 {
  font-size: 48px;
  font-weight: 800;
  /* Extra bold like reference */
  line-height: 1.1;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
}

.trust-text .highlight-text {
  color: var(--accent-color);
  /* Orange */
}

/* --- PREMIUM SERVICES GRID --- */
.premium-services {
  background-color: #1a1a1a;
  padding: 80px 0;
  margin-top: 0;
}

.section-header-left {
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
}

.section-header-left h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  /* 5 columns roughly on large screens */
  gap: 20px;
}

.premium-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}

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

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.card-footer {
  padding: 15px;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
}

.card-footer span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.card-footer i {
  color: var(--accent-color);
  font-size: 14px;
  transform: translateX(0);
  transition: transform 0.3s;
}

.premium-card:hover .card-footer i {
  transform: translateX(5px);
}

.card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (min-width: 1200px) {
  .premium-grid {
    grid-template-columns: repeat(5, 1fr);
    /* Force 5 columns on very wide screens to match Ref */
  }
}

@media (max-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

/* If user wants yellow specifically for 'WE BUILD TRUST' part as per reference image (yellow text) */
.trust-text .highlight-text-yellow {
  color: var(--accent-color);
}

.trust-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}


#particleCanvas {
  width: 100%;
  max-width: 350px;
  /* Constraints for desktop */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Remove old hover scale since particles handle movement */

@media (max-width: 768px) {
  .trust-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .trust-visual {
    justify-content: center;
  }

  .trust-text h2 {
    font-size: 32px;
  }
}

/* --- STATS & SOCIAL SECTION --- */
.stats-social-section {
  background-color: #1a1a1a;
  /* Match premium services bg */
  padding: 80px 0;
  border-top: none;
  /* Seamless merge */
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  /* Left side slightly smaller, social side wider */
  gap: 30px;
}

/* Business Stats Grid (2x2) */
.stats-left-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

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

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 5px;
}

/* Append '+' using pseudo element or JS format, using CSS here for simplicity */
.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
}


/* Social Cards Grid */
.social-right-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* 3 Social cards */
  gap: 20px;
}

.social-card {
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, filter 0.3s;
}

.social-card:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  color: white;
}

.social-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.social-count {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}

.social-count::after {
  content: '+';
}

.social-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Specific Social Gradients matching reference */
.youtube-card {
  background: linear-gradient(135deg, #ff9999 0%, #ff0000 100%);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.instagram-card {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.facebook-card {
  background: linear-gradient(135deg, #66a6ff 0%, #0056b3 100%);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}


@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .social-right-group {
    grid-template-columns: 1fr 1fr 1fr;
    /* Keep 3 in row if space permits, else stack */
  }
}

@media (max-width: 600px) {
  .social-right-group {
    grid-template-columns: 1fr;
  }
}

/* --- REVIEW SLIDER SECTION --- */
.reviews-section {
  background-color: #0d0d0d;
  /* Slightly darker to separate from stats */
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #222;
}

.reviews-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Track for sliding */
.reviews-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* We will use JS to duplicate content for infinite scroll, or CSS animation */
  animation: scrollReviews 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Needs duplication of items to work perfectly seamless */
}

.review-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  width: 350px;
  /* Fixed width for slider */
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.reviewer-info h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.reviewer-info .stars {
  color: #ffc107;
  /* Gold for stars */
  font-size: 12px;
}

.google-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  font-size: 18px;
  opacity: 0.5;
}

.review-text {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* --- GALLERY SECTION --- */
.gallery-section {
  background-color: #111;
  padding: 80px 0;
  overflow: hidden;
}

.gallery-section .section-title {
  margin-bottom: 40px;
}

.gallery-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
  touch-action: pan-x;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 350px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid #333;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination Dots */
.gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.gallery-pagination .dot {
  width: 40px;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.gallery-pagination .dot.active {
  background-color: var(--accent-color);
}

@media (max-width: 768px) {
  .gallery-item {
    min-width: 280px;
    height: 200px;
  }
}

/* --- FOOTER STYLES (NEW) --- */
.main-footer {
  background-color: #000;
  color: #fff;
  padding-top: 80px;
  border-top: 1px solid #222;
  font-size: 14px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-heading {
  color: var(--accent-color);
  /* Yellow/Orange */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-info p {
  color: #ccc;
  margin-bottom: 5px;
  line-height: 1.5;
}

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

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

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.contact-links p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

/* Footer Buttons */
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-footer-cta {
  background-color: var(--accent-color);
  color: #000;
  padding: 10px 15px;
  text-align: center;
  border-radius: 8px;
  /* Slightly rounded */
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, background-color 0.2s;
  font-size: 13px;
}

.btn-footer-cta:hover {
  transform: translateY(-2px);
  background-color: #e65c00;
  /* Darker shade on hover */
  color: black;
}

/* Bottom Bar */
.footer-bottom-bar {
  background-color: #222;
  /* Darker gray strip */
  padding: 20px 0;
  border-top: 1px solid #333;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social-icons a:hover {
  background: var(--accent-color);
}

.footer-copyright {
  color: #888;
  font-size: 13px;
}

.footer-policies a {
  color: var(--accent-color);
  font-size: 13px;
  margin: 0 5px;
}

.footer-policies a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* --- ABOUT US PREMIUM STYLES --- */

/* 1. Cinematic Hero */
.about-hero {
  height: 80vh;
  background: url('images/hero_background.png') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  /* Parallax feel */
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
  font-size: 20px;
  color: #ccc;
}


/* 2. Origin Story */
.story-section {
  padding: 120px 0;
  background: #0d0d0d;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.img-frame {
  position: relative;
  z-index: 1;
}

.img-frame img {
  border-radius: 8px;
  filter: grayscale(100%);
  transition: filter 0.5s;
}

.img-frame:hover img {
  filter: grayscale(0%);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-color);
  color: #000;
  padding: 30px;
  z-index: 2;
  text-align: center;
  border: 5px solid #0d0d0d;
}

.experience-badge .years {
  display: block;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sub-heading {
  color: var(--accent-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.story-text h2 {
  font-size: 42px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.story-text p {
  color: #999;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.signature-block {
  margin-top: 40px;
  border-left: 3px solid var(--accent-color);
  padding-left: 20px;
}

.quote {
  font-style: italic;
  font-size: 18px;
  color: #fff;
}


/* 3. Philosophy Section */
.philosophy-section {
  padding: 100px 0;
  background: #111;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.philo-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, border-color 0.3s;
}

.philo-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
}

.philo-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.philo-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.philo-card p {
  color: #888;
  font-size: 14px;
}


/* 4. Founder Spotlight */
.founder-section {
  padding: 100px 0;
  background: url('images/hero_banner.png') no-repeat center center/cover;
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.founder-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-image img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
  filter: sepia(20%) contrast(110%);
}

.founder-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.founder-bio {
  color: #ccc;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}


/* 5. Why Choose Us */
.why-us-section {
  padding: 120px 0;
  background: #000;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin-top: 40px;
}

.why-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.why-list i {
  color: var(--accent-color);
  font-size: 24px;
  margin-top: 5px;
}

.why-list strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}

.why-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.stat-circle {
  width: 180px;
  height: 180px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-circle h2 {
  font-size: 42px;
  color: #fff;
}

.stat-circle span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 5px;
  color: #999;
}


/* 6. CTA Banner */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(to right, #111, #222);
  border-top: 1px solid #333;
}

.cta-banner h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.cta-banner p {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 40px;
}

.btn-large {
  padding: 18px 50px;
  font-size: 16px;
}


/* MOBILE ADAPTATION FOR ABOUT PAGE */
@media (max-width: 992px) {
  .about-hero-content h1 {
    font-size: 36px;
  }

  .story-grid,
  .philosophy-grid,
  .founder-wrapper,
  .why-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .experience-badge {
    padding: 15px;
  }

  .experience-badge .years {
    font-size: 32px;
  }

  .founder-wrapper {
    padding: 30px;
  }

  .founder-image img {
    width: 100%;
    height: auto;
  }

  .why-stats {
    flex-direction: column;
  }
}

/* PHONE OPTIMIZATION (<600px) */
@media (max-width: 600px) {
  .about-hero {
    height: 60vh;
    /* Shorter hero */
  }

  .about-hero-content h1 {
    font-size: 28px;
    /* Smaller title */
  }

  .about-hero-content p {
    font-size: 16px;
  }

  .story-section,
  .philosophy-section,
  .founder-section,
  .why-us-section,
  .cta-banner {
    padding: 60px 0;
    /* Reduce vertical padding */
  }

  .story-text h2,
  .cta-banner h2 {
    font-size: 28px;
  }

  .founder-wrapper {
    padding: 20px;
    /* Tighter padding */
    gap: 30px;
  }

  .founder-image img {
    height: 300px;
    /* Limit height */
  }

  .founder-content h3 {
    font-size: 26px;
  }

  .philo-card {
    padding: 25px;
  }

  .experience-badge {
    right: 0;
    bottom: -20px;
    padding: 15px;
  }
}

/* --- CONTACT PROCESS SECTION --- */
.process-section {
  background-color: #000;
  padding: 100px 0;
  text-align: center;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-line {
  position: absolute;
  top: 30px;
  /* Aligns with icon center */
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #444;
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 0 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--accent-color);
  border-radius: 12px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--accent-color);
  font-size: 24px;
}

.process-step h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
}

/* --- COLLAB SECTION --- */
.collab-section {
  background-color: #000;
  padding: 80px 0;
  overflow: hidden;
}

.collab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.collab-image img {
  width: 100%;
  opacity: 0.6;
  /* Fade effect mask */
  mask-image: linear-gradient(to right, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
}

.collab-form-wrapper {
  padding-right: 40px;
}

.collab-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collab-form input,
.collab-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 15px 0;
  color: white;
  width: 100%;
  font-size: 14px;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.3s;
}

.collab-form input:focus,
.collab-form textarea:focus {
  border-bottom-color: var(--accent-color);
}

.btn-submit {
  background-color: var(--accent-color);
  color: #000;
  border: none;
  padding: 12px 30px;
  font-weight: 800;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 14px;
  transition: transform 0.2s;
}

.btn-submit:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }

  .collab-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collab-form-wrapper {
    padding-right: 0;
  }
}


/* --- MOBILE FIXES (DEFINITIVE & AGGRESSIVE) --- */
@media (max-width: 992px) {

  /* 1. FORCE 2-COLUMN FOOTER */
  .footer-top-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 15px !important;
    width: 100% !important;
  }

  /* Address/Logo spans full top row */
  .footer-col.about-col {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #222 !important;
    margin-bottom: 25px !important;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  /* 2. FORCE TRUST SECTION LOGO SIZE */
  /* Target the ID wrapper AND the image class specifically */
  #trustLogo,
  #trustLogo .particle-img,
  #trustLogo img {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .trust-text h2 {
    font-size: 26px !important;
    /* Slightly smaller to fit "Restore Pride" */
    text-align: center;
    line-height: 1.3;
  }

  .trust-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* 3. General Mobile Layout Safety */
  .container {
    padding: 0 20px !important;
  }

  .nav-links.active {
    z-index: 2147483647 !important;
    /* Max Z-Index */
    background-color: #000 !important;
  }

  /* Brand Marquee Stack */
  .brand-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .brand-label {
    width: 100%;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  /* Clean up stacks */
  /* Stack Grids (Single Column) */
  .stats-grid,
  .stats-left-group,
  .social-right-group,
  .process-timeline,
  .collab-grid,
  .section-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* Services Grid (2 Columns) */
  .premium-grid,
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }

  .collab-grid {
    gap: 0 !important;
  }

  .collab-form-wrapper {
    padding: 30px 0;
  }
}