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

:root {
  --primary-orange: #FF8C00;
  --primary-orange-dark: #CC7000;
  --accent-teal: #00CED1;
  --dark-grey: #222222;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --medium-grey: #E0E0E0;
  --text-grey: #555555;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  font-size: clamp(0.9rem, 2vw, 1rem);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px var(--shadow-medium);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.15s ease;
}

.nav-desktop a:hover {
  color: var(--primary-orange);
}

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

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark-grey);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-teal);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.mobile-cta:hover {
  transform: scale(1.1);
}

.mobile-cta svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-grey);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  text-align: center;
}

.mobile-nav li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-nav.active li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav a {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--primary-orange);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-close::before,
.mobile-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: var(--white);
}

.mobile-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.85) 0%, rgba(34, 34, 34, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 40px 20px;
}

.hero-content h1 {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-orange-dark);
  transform: scale(1.02);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: var(--accent-teal);
  color: var(--white);
}

.btn-secondary:hover {
  background: #00B5B8;
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.services-overview-text h2 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark-grey) 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-overview-text p {
  color: var(--text-grey);
  margin-bottom: 15px;
}

.services-overview-image {
  position: relative;
}

.services-overview-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px var(--shadow-medium);
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: var(--light-grey);
}

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

.section-header h2 {
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--dark-grey) 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, #00A5A8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--dark-grey);
}

.benefit-card p {
  color: var(--text-grey);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 34, 34, 0.9);
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.testimonials .section-header p {
  opacity: 0.8;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin: 20px;
  box-shadow: 0 10px 40px var(--shadow-medium);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-grey);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-grey);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-dot.active {
  background: var(--primary-orange);
  transform: scale(1.2);
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.testimonial-arrow:hover {
  background: var(--primary-orange);
}

.testimonial-arrow:hover svg {
  fill: var(--white);
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--dark-grey);
  transition: fill 0.3s ease;
}

.testimonial-arrow.prev {
  left: -20px;
}

.testimonial-arrow.next {
  right: -20px;
}

/* Contact Form Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-grey) 0%, #333333 100%);
  color: var(--white);
}

.contact-cta h2 {
  margin-bottom: 15px;
}

.contact-cta p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--medium-grey);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: var(--white);
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Car Brands */
.car-brands {
  padding: 80px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.brand-item {
  padding: 20px;
  opacity: 0.5;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.brand-item img {
  max-width: 100px;
  height: auto;
}

/* Services Page Hero */
.services-hero {
  background-image: url('../images/services-hero.png');
}

.services-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.85) 0%, rgba(34, 34, 34, 0.7) 100%);
}

/* Detailed Services */
.detailed-services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px var(--shadow-light);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(2deg);
}

.service-card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--dark-grey);
}

.service-card p {
  color: var(--text-grey);
  font-size: 0.9rem;
}

/* Service Process */
.service-process {
  padding: 80px 0;
  background: var(--light-grey);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-grey);
  font-size: 0.9rem;
}

/* Services CTA */
.services-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
  text-align: center;
  color: var(--white);
}

.services-cta h2 {
  margin-bottom: 15px;
}

.services-cta p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.services-cta .btn {
  background: var(--white);
  color: var(--primary-orange);
}

.services-cta .btn:hover {
  background: var(--dark-grey);
  color: var(--white);
}

/* About Hero */
.about-hero {
  background-image: url('../images/about-hero.png');
}

.about-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.85) 0%, rgba(34, 34, 34, 0.7) 100%);
}

/* Our Story */
.our-story {
  padding: 80px 0;
}

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

.story-content h2 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark-grey) 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-content p {
  color: var(--text-grey);
  margin-bottom: 15px;
}

.story-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px var(--shadow-medium);
}

/* Our Values */
.our-values {
  padding: 80px 0;
  background: var(--light-grey);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-teal) 0%, #00A5A8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-grey);
  font-size: 0.9rem;
}

/* About CTA */
.about-cta {
  padding: 80px 0;
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--dark-grey) 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-cta p {
  color: var(--text-grey);
  margin-bottom: 30px;
}

.about-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Hero */
.contact-hero {
  background-image: url('../images/contact-hero.png');
}

.contact-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(34, 34, 34, 0.85) 0%, rgba(34, 34, 34, 0.7) 100%);
}

/* Contact Info */
.contact-info-section {
  padding: 80px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.1);
}

.contact-item-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--white);
}

.contact-item-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item-content p {
  color: var(--text-grey);
}

.contact-item-content a {
  color: var(--primary-orange);
  transition: color 0.2s ease;
}

.contact-item-content a:hover {
  color: var(--primary-orange-dark);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: var(--light-grey);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px var(--shadow-light);
}

.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--dark-grey) 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-light);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
.footer {
  background: var(--dark-grey);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  height: 40px;
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-brand a {
  color: var(--primary-orange);
  transition: color 0.2s ease;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul a {
  opacity: 0.8;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.footer-section ul a:hover {
  opacity: 1;
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animations stagger */
.benefit-card:nth-child(1),
.service-card:nth-child(1),
.process-step:nth-child(1),
.value-card:nth-child(1) {
  transition-delay: 0s;
}

.benefit-card:nth-child(2),
.service-card:nth-child(2),
.process-step:nth-child(2),
.value-card:nth-child(2) {
  transition-delay: 0.1s;
}

.benefit-card:nth-child(3),
.service-card:nth-child(3),
.process-step:nth-child(3),
.value-card:nth-child(3) {
  transition-delay: 0.2s;
}

.benefit-card:nth-child(4),
.service-card:nth-child(4),
.process-step:nth-child(4),
.value-card:nth-child(4) {
  transition-delay: 0.3s;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .nav-desktop {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding: 60px 40px;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-overview-image {
    order: 2;
  }
  
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .story-image {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    padding: 10px 40px;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-cta {
    display: none;
  }
  
  .nav-desktop {
    display: block;
  }
  
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }
  
  .header-cta:hover {
    background: var(--primary-orange-dark);
    transform: scale(1.02);
  }
  
  .header-cta svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
  }
  
  .hero {
    background-attachment: fixed;
  }
  
  .services-overview-grid {
    gap: 60px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .testimonial-arrow {
    display: flex;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero {
    background-attachment: scroll;
  }
}

/* Mobile specific fixes */
@media (max-width: 639px) {
  .mobile-nav {
    display: flex;
  }
  
  .testimonial-arrow {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin-top: 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.trust-badge:hover {
  filter: grayscale(0%);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-teal);
}

.trust-badge span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Subheadline gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--dark-grey) 0%, #444444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .gradient-text {
    -webkit-text-fill-color: var(--dark-grey);
    background: none;
  }
}
