/* ============================================
   GLACIAL AUTOTECH - INDUSTRIAL MODERN STYLES
   Design Style: Industrial Modern Aesthetic
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E5E7EB;
  background-color: #111827;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F9FAFB;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #F97316, #C45A0A);
  margin-top: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #D1D5DB;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #F97316, #C45A0A);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #EA580C, #9A3412);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #F97316;
  border: 2px solid #F97316;
}

.btn-secondary:hover {
  background: #F97316;
  color: #111827;
  border-color: #F97316;
}

/* ===== HEADER ===== */
header {
  background: #1F2937;
  border-bottom: 3px solid #374151;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D1D5DB;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #F97316;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F97316;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F97316;
  letter-spacing: 0.05em;
}

.phone-link:hover {
  color: #EA580C;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #F97316;
  color: #111827;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #EA580C;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #1F2937;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F97316;
  border: 2px solid #F97316;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F97316;
  color: #111827;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D1D5DB;
  padding: 12px 0;
  border-bottom: 1px solid #374151;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F97316;
  padding-left: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(249, 115, 22, 0.03) 10px,
    rgba(249, 115, 22, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #F9FAFB;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}

.tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: #D1D5DB;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item img {
  width: 40px;
  height: 40px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

.trust-item span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D1D5DB;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #1F2937;
  padding: 48px 20px;
  border-top: 3px solid #F97316;
  border-bottom: 3px solid #374151;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #F97316;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9CA3AF;
  letter-spacing: 0.05em;
}

/* ===== SERVICES GRID ===== */
.services-preview,
.services-detailed {
  background: #111827;
  padding: 60px 20px;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #9CA3AF;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F97316, #C45A0A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: #F97316;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.2);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #F9FAFB;
}

.service-card p {
  margin-bottom: 20px;
  color: #9CA3AF;
  line-height: 1.6;
}

.service-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #F97316;
  margin-bottom: 20px;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  background: #1F2937;
  padding: 60px 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background: #111827;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #F97316;
  transform: translateY(-4px);
}

.benefit-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

/* ===== PROCESS SECTION ===== */
.process {
  background: #111827;
  padding: 60px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.process-step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #374151;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 12px;
  color: #F97316;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #1F2937;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.testimonial-card {
  background: #F9FAFB;
  border-left: 4px solid #F97316;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rating {
  color: #F97316;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #374151;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #111827;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.testimonial-author span {
  color: #6B7280;
  font-size: 14px;
}

/* ===== CTA SECTIONS ===== */
.cta-banner,
.cta-consultation,
.cta-trust,
.cta-project,
.cta-quote {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(249, 115, 22, 0.05) 10px,
    rgba(249, 115, 22, 0.05) 20px
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content h2::after {
  margin: 16px auto 0;
}

.cta-content p {
  font-size: 18px;
  color: #9CA3AF;
  margin-bottom: 32px;
}

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

/* ===== CONTACT SECTIONS ===== */
.contact-quick,
.contact-methods,
.location-info,
.transport-info {
  background: #111827;
  padding: 60px 20px;
}

.contact-grid,
.contact-methods-grid,
.location-grid,
.transport-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.contact-card,
.contact-method-card,
.location-card,
.transport-card {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover,
.contact-method-card:hover,
.location-card:hover,
.transport-card:hover {
  border-color: #F97316;
  transform: translateY(-4px);
}

.contact-card img,
.contact-method-card img,
.location-card img,
.transport-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

.contact-card h3,
.contact-method-card h3,
.location-card h3,
.transport-card h3 {
  margin-bottom: 12px;
  color: #F9FAFB;
}

.contact-card p,
.contact-method-card p,
.location-card p,
.transport-card p {
  color: #9CA3AF;
  font-size: 14px;
}

.contact-card a,
.contact-method-card a {
  color: #F97316;
  font-weight: 600;
}

.contact-card a:hover,
.contact-method-card a:hover {
  color: #EA580C;
}

/* ===== HERO INTERNAL PAGES ===== */
.hero-internal {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #9CA3AF;
}

.breadcrumb a {
  color: #F97316;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #EA580C;
}

.page-description {
  font-size: 18px;
  color: #9CA3AF;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 40px;
  margin-bottom: 32px;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.service-content img {
  width: 72px;
  height: 72px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-features li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #D1D5DB;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F97316;
  font-weight: bold;
}

/* ===== WARRANTY INFO ===== */
.warranty-info {
  background: #111827;
  padding: 60px 20px;
}

.warranty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.warranty-card {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: center;
}

.warranty-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

/* ===== FAQ SECTION ===== */
.faq,
.contact-faq {
  background: #1F2937;
  padding: 60px 20px;
}

.faq-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  background: #111827;
  border-left: 4px solid #F97316;
  padding: 24px;
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #F9FAFB;
}

.faq-item p {
  color: #9CA3AF;
  line-height: 1.8;
}

/* ===== COMPANY STORY ===== */
.company-story {
  background: #111827;
  padding: 60px 20px;
}

.story-content {
  max-width: 800px;
  margin: 32px auto 0;
}

.story-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #D1D5DB;
}

/* ===== VALUES SECTION ===== */
.values {
  background: #1F2937;
  padding: 60px 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.value-card {
  background: #111827;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

/* ===== TIMELINE ===== */
.timeline {
  background: #111827;
  padding: 60px 20px;
}

.timeline-content {
  max-width: 800px;
  margin: 32px auto 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: #1F2937;
  border-left: 4px solid #F97316;
}

.year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #F97316;
  min-width: 80px;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  background: #1F2937;
  padding: 60px 20px;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.cert-badge {
  background: #111827;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 320px;
  text-align: center;
}

.cert-badge img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

/* ===== PORTFOLIO SHOWCASE ===== */
.portfolio-showcase {
  background: #111827;
  padding: 60px 20px;
}

.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.showcase-card {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
}

.showcase-card h3 {
  color: #F97316;
  margin-bottom: 20px;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-details p {
  line-height: 1.8;
}

.project-details strong {
  color: #F9FAFB;
}

/* ===== VEHICLE TYPES ===== */
.vehicle-types {
  background: #1F2937;
  padding: 60px 20px;
}

.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.vehicle-card {
  background: #111827;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  border-color: #F97316;
  transform: translateY(-4px);
}

.vehicle-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

/* ===== CLIENT FEEDBACK ===== */
.client-feedback {
  background: #111827;
  padding: 60px 20px;
}

.feedback-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

/* ===== PRICING SECTIONS ===== */
.pricing-intro,
.pricing-table,
.pricing-packages {
  background: #111827;
  padding: 60px 20px;
}

.pricing-benefits ul {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
}

.pricing-benefits li {
  padding: 16px 16px 16px 40px;
  margin-bottom: 12px;
  background: #1F2937;
  border-left: 4px solid #F97316;
  position: relative;
  color: #D1D5DB;
}

.pricing-benefits li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #F97316;
  font-weight: bold;
  font-size: 20px;
}

.price-list {
  max-width: 900px;
  margin: 32px auto 0;
}

.price-item {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: #F97316;
}

.price-item h3 {
  margin-bottom: 12px;
  color: #F9FAFB;
}

.price-item .price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #F97316;
  margin: 20px 0;
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.package-card {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 40px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package-card.popular {
  border-color: #F97316;
  transform: scale(1.05);
}

.package-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #F97316;
  color: #111827;
  padding: 6px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.2);
}

.package-services {
  color: #9CA3AF;
  margin-bottom: 24px;
  min-height: 60px;
}

.package-price {
  margin: 24px 0;
}

.discount {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #10B981;
}

/* ===== PAYMENT OPTIONS ===== */
.payment-options {
  background: #1F2937;
  padding: 60px 20px;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.payment-card {
  background: #111827;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
}

.payment-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  filter: invert(60%) sepia(69%) saturate(2471%) hue-rotate(360deg) brightness(97%) contrast(96%);
}

/* ===== PRICE GUARANTEE ===== */
.price-guarantee {
  background: linear-gradient(135deg, #F97316, #C45A0A);
  padding: 48px 20px;
  text-align: center;
}

.guarantee-content h2,
.guarantee-content p {
  color: #FFFFFF;
}

.guarantee-content h2::after {
  background: #FFFFFF;
  margin: 16px auto 0;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: #111827;
  padding: 60px 20px;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-text p,
.legal-text ul {
  color: #D1D5DB;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-text ul {
  list-style: none;
  padding-left: 0;
}

.legal-text li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.legal-text li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #F97316;
  font-size: 20px;
}

.legal-text a {
  color: #F97316;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #EA580C;
}

.last-updated {
  color: #9CA3AF;
  font-style: italic;
  margin-top: 8px;
}

/* ===== RODO INFO ===== */
.rodo-info {
  background: #111827;
  padding: 60px 20px;
}

.rodo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.rodo-card {
  background: #1F2937;
  border-left: 4px solid #F97316;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 500px;
}

.rodo-card h3 {
  color: #F97316;
  margin-bottom: 12px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.confirmation-message {
  font-size: 18px;
  color: #9CA3AF;
  margin-bottom: 32px;
}

.what-next {
  background: #111827;
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.step-card {
  background: #1F2937;
  border-top: 4px solid #F97316;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
}

.step-card .step-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 16px;
}

.additional-resources {
  background: #1F2937;
  padding: 60px 20px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.resource-card {
  background: #111827;
  border: 2px solid #374151;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
}

.urgent-contact {
  background: #111827;
  padding: 60px 20px;
}

.urgent-banner {
  background: #1F2937;
  border: 2px solid #F97316;
  padding: 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  background: #0F172A;
  border-top: 3px solid #374151;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.6;
}

.footer-column h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #F97316;
  margin-bottom: 16px;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column nav a {
  color: #9CA3AF;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column nav a:hover {
  color: #F97316;
  padding-left: 8px;
}

.footer-column p {
  font-size: 14px;
  color: #9CA3AF;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-column a {
  color: #F97316;
}

.footer-column a:hover {
  color: #EA580C;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  font-size: 14px;
  color: #9CA3AF;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.footer-legal a:hover {
  color: #F97316;
}

.copyright {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1F2937;
  border-top: 3px solid #F97316;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text p {
  color: #D1D5DB;
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent button {
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #F97316;
  color: #111827;
}

.cookie-accept:hover {
  background: #EA580C;
}

.cookie-reject {
  background: transparent;
  color: #9CA3AF;
  border: 2px solid #374151;
}

.cookie-reject:hover {
  border-color: #9CA3AF;
  color: #D1D5DB;
}

.cookie-settings {
  background: transparent;
  color: #F97316;
  border: 2px solid #F97316;
}

.cookie-settings:hover {
  background: #F97316;
  color: #111827;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #1F2937;
  border: 2px solid #374151;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #9CA3AF;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #F97316;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  background: #111827;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #F97316;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #374151;
  transition: 0.4s;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #FFFFFF;
  transition: 0.4s;
}

input:checked + .cookie-slider {
  background: #F97316;
}

input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-slider.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .tagline {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  /* Services */
  .service-card,
  .benefit-card,
  .warranty-card,
  .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Process */
  .process-steps {
    flex-direction: column;
  }
  
  .process-step {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Contact */
  .contact-card,
  .contact-method-card,
  .location-card,
  .transport-card,
  .payment-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Packages */
  .package-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .package-card.popular {
    transform: none;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-consent button {
    flex: 1;
  }
  
  /* Sections */
  .section {
    padding: 40px 20px;
  }
  
  /* CTA */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .process-step {
    flex: 1 1 calc(50% - 32px);
  }
  
  .package-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.hidden {
  display: none;
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .cookie-consent,
  .cta-banner,
  .hero-cta {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}