/* ===================================
   PHANTOM COAST - LUXURY PREMIUM CSS
   Modern Office Furniture Website
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* LUXURY PREMIUM TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a252f;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

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

strong {
  font-weight: 600;
  color: #1a252f;
}

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

/* PREMIUM BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #2574B0 0%, #1a5580 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 116, 176, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a5580 0%, #2574B0 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 116, 176, 0.4);
}

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

.btn-secondary:hover {
  background: #2574B0;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 116, 176, 0.3);
}

.btn-link {
  color: #2574B0;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #1a5580;
  transform: translateX(4px);
}

.btn-link::after {
  content: '→';
  font-size: 18px;
}

/* LUXURY HEADER */
header {
  background: linear-gradient(180deg, #1a252f 0%, #2C3E50 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #2574B0;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo a {
  display: block;
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2574B0, #3498DB);
  transition: width 0.3s ease;
}

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

.header-cta .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #2574B0, #1a5580);
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 116, 176, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 116, 176, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1a252f 0%, #2C3E50 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2574B0;
  padding-left: 8px;
}

/* LUXURY HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 50%, #34495E 100%);
  padding: 100px 20px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(37, 116, 176, 0.15), transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
}

.trust-badges span::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #2574B0, #3498DB);
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
}

/* SECTIONS SPACING */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition,
.services-overview,
.process,
.benefits,
.social-proof,
.testimonials {
  padding: 80px 20px;
}

.value-proposition {
  background: linear-gradient(180deg, #FFFFFF 0%, #f8f9fa 100%);
}

.services-overview {
  background: #FFFFFF;
}

.process {
  background: linear-gradient(180deg, #f8f9fa 0%, #FFFFFF 100%);
}

.benefits {
  background: #FFFFFF;
}

.social-proof {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  color: #FFFFFF;
}

.testimonials {
  background: #f8f9fa;
}

/* SECTION TITLES */
section h2 {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2574B0, transparent);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 48px;
}

/* FLEXBOX GRIDS */
.features-grid,
.services-grid,
.benefits-grid,
.stats-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

/* PREMIUM FEATURE CARDS */
.feature-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 116, 176, 0.1);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2574B0, #3498DB);
  border-radius: 8px 8px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(37, 116, 176, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  color: #1a252f;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p {
  color: #5a6c7d;
  font-size: 15px;
  line-height: 1.7;
}

/* SERVICE CARDS */
.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(37, 116, 176, 0.15);
  border-color: #2574B0;
}

.service-card h3 {
  color: #1a252f;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #5a6c7d;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2574B0;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(20% - 32px);
  min-width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2574B0, #3498DB);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(37, 116, 176, 0.3);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #5a6c7d;
}

/* BENEFITS CARDS */
.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #2574B0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(37, 116, 176, 0.15);
}

.benefit-card h3 {
  color: #2574B0;
  margin-bottom: 12px;
  font-size: 20px;
}

/* STATS CARDS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 24px;
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2574B0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p:first-child {
  font-size: 16px;
  line-height: 1.8;
  color: #2C3E50;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #1a252f;
  font-size: 14px;
  margin-bottom: 0;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2574B0 0%, #1a5580 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section h2::after {
  background: linear-gradient(90deg, transparent, #FFFFFF, transparent);
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
}

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

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

.cta-center {
  text-align: center;
  margin-top: 48px;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.guarantee-badge::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  color: #2574B0;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
}

/* CONTACT INFO */
.contact-info {
  background: #f8f9fa;
  padding: 60px 20px;
}

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

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item h3 {
  color: #2574B0;
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-item p {
  color: #5a6c7d;
  font-size: 15px;
}

.contact-item a {
  color: #2574B0;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  padding: 60px 20px 40px;
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 42px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #FFFFFF;
}

/* SERVICES DETAILED */
.services-detailed {
  padding: 80px 20px;
  background: #FFFFFF;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.service-detailed-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2574B0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detailed-card h3 {
  color: #1a252f;
  font-size: 24px;
}

.service-detailed-card p {
  color: #5a6c7d;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: #2574B0;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

/* PROCESS DETAILED */
.process-detailed {
  padding: 80px 20px;
  background: #f8f9fa;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2574B0;
}

.timeline-item h3 {
  color: #2574B0;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-item p {
  color: #5a6c7d;
  font-size: 14px;
  margin-bottom: 0;
}

/* FAQ */
.faq {
  padding: 80px 20px;
  background: #FFFFFF;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #2574B0;
}

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

.faq-item p {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* CATEGORY NAVIGATION */
.category-navigation {
  padding: 60px 20px;
  background: #f8f9fa;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  background: linear-gradient(135deg, #2574B0, #3498DB);
  color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 116, 176, 0.3);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 116, 176, 0.4);
}

/* PRODUCT SHOWCASE */
.product-showcase {
  padding: 80px 20px;
}

.product-showcase:nth-child(even) {
  background: #f8f9fa;
}

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

.product-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(37, 116, 176, 0.15);
  border-color: #2574B0;
}

.product-card h3 {
  color: #1a252f;
  font-size: 20px;
  margin-bottom: 8px;
}

.product-card p {
  color: #5a6c7d;
  flex-grow: 1;
  font-size: 15px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #2574B0;
  font-family: 'Montserrat', sans-serif;
  margin: 12px 0;
}

/* FEATURES */
.features {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #FFFFFF 100%);
}

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

.feature-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2574B0;
}

.feature-item h3 {
  color: #2574B0;
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-item p {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* CASE STUDIES */
.case-study {
  padding: 80px 20px;
  background: #FFFFFF;
}

.case-study:nth-child(even) {
  background: #f8f9fa;
}

.case-study-content {
  max-width: 900px;
  margin: 0 auto;
}

.case-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(37, 116, 176, 0.05);
  border-radius: 8px;
  border-left: 4px solid #2574B0;
}

.case-details p {
  flex: 1 1 calc(50% - 24px);
  min-width: 200px;
  margin-bottom: 0;
  font-size: 15px;
}

.case-description {
  margin: 32px 0;
}

.case-description h3 {
  color: #2574B0;
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.case-description ul {
  margin-left: 20px;
}

.case-description li {
  margin-bottom: 8px;
  color: #5a6c7d;
}

blockquote.testimonial {
  background: linear-gradient(135deg, #2574B0, #3498DB);
  color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  border-left: 4px solid #FFFFFF;
}

blockquote.testimonial em {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.9;
}

/* STATISTICS */
.statistics {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  color: #FFFFFF;
}

.statistics h2 {
  color: #FFFFFF;
}

.statistics h2::after {
  background: linear-gradient(90deg, transparent, #FFFFFF, transparent);
}

/* COMPANY STORY */
.company-story {
  padding: 80px 20px;
  background: #FFFFFF;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
}

.text-section ul {
  margin: 24px 0;
  padding-left: 24px;
}

.text-section li {
  margin-bottom: 12px;
  color: #5a6c7d;
}

.timeline-compact {
  margin: 40px 0;
  padding: 32px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2574B0;
}

.timeline-year {
  margin-bottom: 16px;
  font-size: 16px;
  color: #5a6c7d;
}

.timeline-year strong {
  color: #2574B0;
  font-weight: 700;
}

/* VALUES */
.values {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #2574B0;
}

.value-card h3 {
  color: #2574B0;
  font-size: 22px;
  margin-bottom: 12px;
}

/* EXPERTISE */
.expertise {
  padding: 80px 20px;
  background: #FFFFFF;
}

.expertise-list {
  max-width: 800px;
  margin: 48px auto 0;
  padding-left: 24px;
}

.expertise-list li {
  margin-bottom: 16px;
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.7;
}

/* CERTIFICATIONS */
.certifications {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.cert-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #2574B0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(37, 116, 176, 0.2);
}

/* SHOWROOM INFO */
.showroom-info {
  padding: 80px 20px;
  background: #FFFFFF;
}

/* SUSTAINABILITY */
.sustainability {
  padding: 80px 20px;
  background: #f8f9fa;
}

/* CONTACT METHODS */
.contact-methods {
  padding: 60px 20px;
  background: #f8f9fa;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method h3 {
  color: #2574B0;
  font-size: 20px;
}

.contact-info {
  font-size: 14px;
  color: #5a6c7d;
  font-style: italic;
  margin-bottom: 0;
}

/* LOCATION INFO */
.location-info {
  padding: 80px 20px;
  background: #FFFFFF;
}

.info-note {
  padding: 16px;
  background: rgba(37, 116, 176, 0.05);
  border-left: 4px solid #2574B0;
  border-radius: 4px;
  font-size: 14px;
  color: #5a6c7d;
  margin-top: 24px;
}

/* SERVICE AREAS */
.service-areas {
  padding: 80px 20px;
  background: #f8f9fa;
}

/* FAQ CONTACT */
.faq-contact {
  padding: 80px 20px;
  background: #FFFFFF;
}

/* TRUST SIGNALS */
.trust-signals {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2574B0, #3498DB);
  color: #FFFFFF;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.trust-item {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  padding: 60px 20px 40px;
  color: #FFFFFF;
}

.legal-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.legal-update {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.legal-content {
  padding: 80px 20px;
  background: #FFFFFF;
}

.legal-content h2 {
  color: #2574B0;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content h2::after {
  display: none;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2574B0, #3498DB);
  padding: 100px 20px;
  text-align: center;
  color: #FFFFFF;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #FFFFFF;
  margin: 0 auto 32px;
  font-weight: bold;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-message {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* NEXT STEPS */
.next-steps {
  padding: 80px 20px;
  background: #FFFFFF;
}

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

.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #f8f9fa;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2574B0, #3498DB);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 0;
}

.timeline-note {
  text-align: center;
  font-size: 14px;
  color: #5a6c7d;
  font-style: italic;
}

/* WHILE YOU WAIT */
.while-you-wait {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.action-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 116, 176, 0.15);
  border-color: #2574B0;
}

.action-card h3 {
  color: #2574B0;
  font-size: 20px;
  margin-bottom: 12px;
}

.action-card p {
  color: #5a6c7d;
  margin-bottom: 0;
}

/* SOCIAL PROOF COMPACT */
.social-proof {
  padding: 80px 20px;
  background: #FFFFFF;
}

.testimonials-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 32px;
}

.testimonial-short {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #2574B0;
}

.testimonial-short p:first-child {
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 12px;
}

.testimonial-short .author {
  font-size: 14px;
  font-weight: 600;
  color: #5a6c7d;
  margin-bottom: 0;
}

.rating-badge {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #2574B0;
}

.stats-inline {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stats-inline span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1a252f 0%, #0f1419 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 24px;
  border-top: 3px solid #2574B0;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

.footer-nav a {
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
  color: #2574B0;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a252f 0%, #0f1419 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #2574B0;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-accept {
  background: linear-gradient(135deg, #2574B0, #3498DB);
  color: #FFFFFF;
  border: none;
}

.btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #1a252f;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2574B0;
}

.cookie-category h3 {
  color: #2574B0;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-category p {
  font-size: 14px;
  color: #5a6c7d;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .feature-card,
  .service-card,
  .benefit-card,
  .product-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(33.333% - 32px);
  }
}

@media (max-width: 768px) {
  /* MOBILE TYPOGRAPHY */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  /* MOBILE HEADER */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* MOBILE HERO */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* MOBILE GRIDS */
  .features-grid,
  .services-grid,
  .benefits-grid,
  .products-grid,
  .values-grid,
  .testimonials-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-card,
  .service-card,
  .benefit-card,
  .product-card,
  .value-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* MOBILE STATS */
  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-card {
    flex: 1 1 100%;
  }
  
  /* MOBILE CONTACT */
  .contact-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-item,
  .contact-method {
    flex: 1 1 100%;
  }
  
  /* MOBILE FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* MOBILE COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* MOBILE CATEGORIES */
  .categories-grid {
    flex-direction: column;
  }
  
  .category-card {
    flex: 1 1 100%;
  }
  
  /* MOBILE SECTIONS */
  section,
  .value-proposition,
  .services-overview,
  .process,
  .benefits,
  .social-proof,
  .testimonials {
    padding: 48px 20px;
  }
  
  /* MOBILE CASE DETAILS */
  .case-details {
    flex-direction: column;
  }
  
  .case-details p {
    flex: 1 1 100%;
  }
  
  /* MOBILE TIMELINE */
  .timeline-item {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* EXTRA SMALL MOBILE */
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats-inline {
    flex-direction: column;
    gap: 16px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
}