/* ========================================
   CREATIVE ARTISTIC DESIGN SYSTEM
   Elyn Volt - Dynamic Automotive Excellence
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #1D3557;
  background: #F1FAEE;
  overflow-x: hidden;
}

/* CREATIVE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D3557;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  color: #1D3557;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E63946, #F1FAEE);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #E63946;
}

h4 {
  font-size: 18px;
  color: #1D3557;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

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

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background: #1D3557;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #F1FAEE;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.05em;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #E63946, #F1FAEE);
  transition: width 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 40px 40px;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

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

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

.mobile-menu-close:hover {
  background: #E63946;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F1FAEE;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  border-left-color: #E63946;
  background: rgba(230, 57, 70, 0.1);
  transform: translateX(10px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #F1FAEE;
  background: linear-gradient(135deg, #F1FAEE 0%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #F1FAEE;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #F1FAEE;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #E63946;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover {
  background: #E63946;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.trust-badge {
  color: #F1FAEE;
  font-size: 16px;
  font-weight: 600;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E63946, #F1FAEE, #E63946);
}

.page-hero h1 {
  color: #F1FAEE;
  background: linear-gradient(135deg, #F1FAEE 0%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: #F1FAEE;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SECTIONS
   ======================================== */

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

/* FEATURES SECTION */
.features {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-card {
  background: #F1FAEE;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px) rotate(1deg);
  border-color: #E63946;
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.3);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.3));
}

.feature-card h3 {
  margin-bottom: 16px;
  color: #1D3557;
}

.feature-card p {
  color: #1D3557;
  font-size: 15px;
}

/* SERVICES SECTION */
.services {
  background: linear-gradient(135deg, #F1FAEE 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.service-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 48%;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #E63946;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

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

.service-card p {
  color: #1D3557;
  margin-bottom: 20px;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.services .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* TESTIMONIALS */
.testimonials {
  background: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background: #F1FAEE;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card p {
  color: #1D3557;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #1D3557;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #E63946;
  font-size: 20px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: #F1FAEE;
  margin-bottom: 20px;
}

.cta-section h2::after {
  background: #E63946;
  left: 50%;
  transform: translateX(-50%);
}

.cta-section p {
  color: #F1FAEE;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.contact-info, .hours {
  color: #F1FAEE;
  font-size: 16px;
  margin-top: 16px;
}

/* CATEGORIES */
.categories {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.categories h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.category-card {
  background: linear-gradient(135deg, #F1FAEE 0%, #FFFFFF 100%);
  padding: 40px 30px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.category-card:hover {
  border-color: #E63946;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.category-card h3 {
  margin-bottom: 12px;
}

.category-card p {
  color: #1D3557;
  font-size: 15px;
}

/* TRUST SECTION */
.trust-section {
  padding: 60px 20px;
  background: #F1FAEE;
  margin-bottom: 60px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.badge {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.badge img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.2));
}

.badge p {
  color: #1D3557;
  font-weight: 600;
  font-size: 15px;
}

/* SERVICES DETAILED */
.services-overview {
  padding: 60px 20px;
  background: #FFFFFF;
  text-align: center;
  margin-bottom: 60px;
}

.services-overview p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #1D3557;
}

.services-detailed {
  padding: 60px 20px;
  background: #F1FAEE;
  margin-bottom: 60px;
}

.service-item {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  border-left: 5px solid #E63946;
  transition: all 0.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.service-item h3 {
  margin-bottom: 16px;
}

.service-item p {
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.service-meta .price {
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.service-meta .duration {
  color: #1D3557;
  font-weight: 600;
}

/* GUARANTEES */
.guarantees {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.guarantees h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.guarantee-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.guarantee-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.2));
}

.guarantee-item p {
  color: #1D3557;
  font-weight: 600;
}

/* ABOUT STORY */
.about-story {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.about-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.about-story > p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.milestone {
  background: #F1FAEE;
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 5px solid #E63946;
  font-weight: 600;
  color: #1D3557;
  transition: all 0.3s ease;
  position: relative;
}

.milestone:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

/* MISSION VISION */
.mission-vision {
  padding: 60px 20px;
  background: #F1FAEE;
  margin-bottom: 60px;
}

.mission-vision h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.value-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
  position: relative;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

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

.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-item {
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 50px;
  color: #E63946;
  font-weight: 700;
  border: 2px solid #E63946;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: #E63946;
  color: #F1FAEE;
  transform: scale(1.05);
}

/* STATS */
.stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  margin-bottom: 60px;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  margin-bottom: 20px;
  position: relative;
}

.stat-item h3 {
  font-size: 48px;
  color: #E63946;
  margin-bottom: 8px;
}

.stat-item p {
  color: #F1FAEE;
  font-size: 16px;
  font-weight: 600;
}

/* GALLERY */
.gallery-categories {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.gallery-categories h2 {
  text-align: center;
  margin-bottom: 50px;
}

.category-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-block {
  background: linear-gradient(135deg, #F1FAEE 0%, #FFFFFF 100%);
  padding: 32px 28px;
  border-radius: 16px;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.category-block:hover {
  border-color: #E63946;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.category-block h3 {
  margin-bottom: 12px;
}

.category-block p {
  font-size: 15px;
  color: #1D3557;
}

/* PROJECTS */
.projects {
  padding: 60px 20px;
  background: #F1FAEE;
  margin-bottom: 60px;
}

.projects h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.project-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 48%;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.project-card h3 {
  margin-bottom: 12px;
}

.project-card p {
  color: #1D3557;
  font-size: 15px;
}

/* TESTIMONIALS VISUAL */
.testimonials-visual {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.testimonials-visual h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* CONTACT */
.contact-methods {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

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

.contact-card {
  background: #F1FAEE;
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #E63946;
  margin-bottom: 20px;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.contact-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.2));
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-card p {
  color: #1D3557;
  margin-bottom: 12px;
}

.contact-card .note {
  font-size: 14px;
  color: #E63946;
  font-weight: 600;
}

/* MAP SECTION */
.map-section {
  padding: 60px 20px;
  background: #F1FAEE;
  margin-bottom: 60px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-info {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(29, 53, 87, 0.1);
}

.map-info p {
  margin-bottom: 16px;
  color: #1D3557;
}

/* VISIT INFO */
.visit-info {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.visit-info h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.info-item {
  background: #F1FAEE;
  padding: 32px 28px;
  border-radius: 16px;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.2);
}

.info-item h3 {
  margin-bottom: 12px;
}

.info-item p {
  color: #1D3557;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper p, .content-wrapper ul {
  margin-bottom: 16px;
  color: #1D3557;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #F1FAEE;
  border-radius: 8px;
  overflow: hidden;
}

.cookies-table th {
  background: #1D3557;
  color: #F1FAEE;
  padding: 16px;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.cookies-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #FFFFFF;
  color: #1D3557;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

.related-links {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: #F1FAEE;
  border-radius: 16px;
}

.related-links h3 {
  margin-bottom: 20px;
  color: #1D3557;
}

.related-links a {
  display: block;
  padding: 12px 20px;
  margin-bottom: 12px;
  background: #FFFFFF;
  border-radius: 8px;
  color: #E63946;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.related-links a:hover {
  border-left-color: #E63946;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.1);
}

/* THANK YOU PAGE */
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.confirmation {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-content p {
  font-size: 18px;
  margin-bottom: 16px;
}

.timeline {
  color: #E63946;
  font-weight: 700;
}

.next-steps {
  padding: 60px 20px;
  background: #F1FAEE;
  margin-bottom: 60px;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step {
  background: #FFFFFF;
  padding: 24px 28px;
  border-radius: 12px;
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  font-weight: 600;
  color: #1D3557;
  box-shadow: 0 4px 15px rgba(29, 53, 87, 0.1);
  border-left: 4px solid #E63946;
  margin-bottom: 20px;
  position: relative;
}

.quick-actions {
  padding: 60px 20px;
  background: #FFFFFF;
  margin-bottom: 60px;
}

.quick-actions h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.social-follow {
  padding: 60px 20px;
  background: #F1FAEE;
  text-align: center;
  margin-bottom: 60px;
}

.social-follow h2 {
  margin-bottom: 16px;
}

.social-follow p {
  color: #1D3557;
  font-size: 16px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: #1D3557;
  color: #F1FAEE;
  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 200px;
  min-width: 200px;
}

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

.tagline {
  color: #F1FAEE;
  font-size: 14px;
  font-style: italic;
}

.footer-column h4 {
  color: #E63946;
  margin-bottom: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

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

.footer-column a {
  display: block;
  color: #F1FAEE;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 12px;
  border-left: 2px solid transparent;
}

.footer-column a:hover {
  color: #E63946;
  border-left-color: #E63946;
  padding-left: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
}

.footer-bottom p {
  color: #F1FAEE;
  font-size: 14px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #F1FAEE;
  font-size: 15px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
}

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

.cookie-reject:hover {
  background: rgba(241, 250, 238, 0.1);
}

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

.cookie-settings:hover {
  background: rgba(230, 57, 70, 0.2);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: #1D3557;
  margin-bottom: 24px;
}

.cookie-category {
  background: #F1FAEE;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #E63946;
}

.cookie-category h4 {
  color: #1D3557;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #1D3557;
  font-size: 14px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #E63946;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-save {
  flex: 1;
  background: linear-gradient(135deg, #E63946 0%, #C62835 100%);
  color: #F1FAEE;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  /* Mobile menu visible */
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav,
  .cta-button {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Page hero */
  .page-hero {
    padding: 60px 20px;
  }

  /* Service cards full width on mobile */
  .service-card,
  .project-card {
    max-width: 100%;
  }

  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    width: 100%;
  }

  /* Cookie banner stack */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  /* Stats and badges */
  .stat-item,
  .badge,
  .guarantee-item,
  .info-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Tables responsive */
  .cookies-table {
    font-size: 14px;
  }

  .cookies-table th,
  .cookies-table td {
    padding: 10px 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .service-card,
  .project-card {
    flex: 1 1 45%;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

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

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

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

.hidden {
  display: none;
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* FOCUS STATES */
a:focus,
button:focus {
  outline: 3px solid #E63946;
  outline-offset: 2px;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}