/* ===================================
   RADIANT VAULT - TECH FUTURISTIC CSS
   Design Style: Futuristic tech-inspired
   =================================== */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 50%, #16213E 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(138, 111, 71, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #B0B0B0;
}

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

a:hover {
  color: #F4D03F;
  text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 32px;
}

li {
  margin-bottom: 8px;
  color: #B0B0B0;
}

strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8B6F47 0%, #6B5437 100%);
  color: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, #A08557 0%, #8B6F47 100%);
  border-color: #D4AF37;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
  box-shadow: 0 6px 25px rgba(244, 208, 63, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #F4D03F;
  color: #F4D03F;
  box-shadow: 0 0 25px rgba(244, 208, 63, 0.4);
}

/* HEADER */
header {
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 175, 55, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(244, 208, 63, 0.5));
}

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

.main-nav a {
  color: #E0E0E0;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B6F47 0%, #6B5437 100%);
  border: 2px solid #D4AF37;
  color: #FFFFFF;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #A08557 0%, #8B6F47 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(244, 208, 63, 0.3);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
  backdrop-filter: blur(20px);
  border-left: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.3);
  color: #F4D03F;
  box-shadow: 0 0 20px rgba(244, 208, 63, 0.4);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E0E0E0;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  padding-left: 30px;
  border-left: 3px solid #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

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

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

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

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

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-indicators span {
  color: #D4AF37;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

section:not(.hero) {
  background: rgba(15, 15, 30, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

/* VALUE PROPOSITION */
.value-proposition {
  text-align: center;
}

.pillars {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.pillar {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.2) 0%, rgba(107, 84, 55, 0.2) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.3) 0%, rgba(107, 84, 55, 0.3) 100%);
  border-color: #F4D03F;
  box-shadow: 0 0 30px rgba(244, 208, 63, 0.4);
  transform: translateY(-4px);
}

/* SERVICES */
.services-grid, .services-overview .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.1);
  transform: translateY(-8px);
}

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

.service-card h3 {
  color: #D4AF37;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 12px;
  font-size: 15px;
}

.service-card .price {
  color: #F4D03F;
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* SERVICE DETAIL PAGES */
.service-detail {
  margin-bottom: 48px;
}

.service-detail .tagline {
  font-size: 20px;
  color: #D4AF37;
  font-style: italic;
  margin-bottom: 24px;
}

.service-detail .price {
  font-size: 24px;
  color: #F4D03F;
  font-weight: 700;
  margin: 24px 0;
  padding: 16px;
  background: rgba(244, 208, 63, 0.1);
  border-left: 4px solid #D4AF37;
  border-radius: 4px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: #B0B0B0;
  position: relative;
  padding-left: 8px;
}

.service-detail ul li::before {
  content: '▹';
  color: #D4AF37;
  position: absolute;
  left: -20px;
  font-size: 18px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.8) 100%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: rgba(15, 15, 30, 0.9);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 60px;
  color: rgba(212, 175, 55, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-card .author {
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-style: normal;
}

/* STATS & ACHIEVEMENTS */
.stats, .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.2) 0%, rgba(107, 84, 55, 0.2) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: #F4D03F;
  box-shadow: 0 0 30px rgba(244, 208, 63, 0.4);
  transform: scale(1.05);
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #D4AF37, transparent);
}

.milestone {
  position: relative;
  padding: 16px 24px;
  background: rgba(15, 15, 30, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #E0E0E0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #D4AF37;
  border: 3px solid #0F0F1E;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.milestone:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #F4D03F;
  transform: translateX(8px);
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.value-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.value-card:hover::before {
  top: -25%;
  right: -25%;
}

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

/* PORTFOLIO/PROJECTS */
.projects-grid, .portfolio-grid .projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.project-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
}

.project-card:hover::after {
  transform: scaleX(1);
}

.project-card h3 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 12px;
}

.project-card p {
  color: #B0B0B0;
  font-size: 14px;
}

/* FEATURED PROJECTS */
.featured-project {
  margin-bottom: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(15, 15, 30, 0.6) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.featured-project::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #D4AF37, #F4D03F, #D4AF37);
}

.featured-project .location,
.featured-project .category {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.featured-project .features {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-project .quote {
  color: #FFFFFF;
  font-style: italic;
  font-size: 18px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid #D4AF37;
  border-radius: 4px;
}

/* PROCESS STEPS */
.phases {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
  justify-content: center;
}

.phase {
  flex: 1 1 200px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.2) 0%, rgba(107, 84, 55, 0.2) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #D4AF37;
  transition: all 0.3s ease;
  position: relative;
}

.phase:hover {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.3) 0%, rgba(107, 84, 55, 0.3) 100%);
  border-color: #F4D03F;
  box-shadow: 0 0 25px rgba(244, 208, 63, 0.4);
  transform: scale(1.05);
}

.process-step {
  margin-bottom: 60px;
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  border: 3px solid #F4D03F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.process-step .duration {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* CONTACT FORMS & OPTIONS */
.contact-options {
  margin: 40px 0;
}

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

.option, .method {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover, .method:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.option h3, .method h3 {
  color: #D4AF37;
  margin-bottom: 16px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

/* FORM NOTES */
.form-note {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 20px;
  margin: 32px 0;
}

.form-note p {
  color: #E0E0E0;
  margin-bottom: 0;
}

.form-note strong {
  color: #D4AF37;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #D4AF37;
  margin-bottom: 20px;
  margin-top: 32px;
}

.legal-section h3 {
  color: #F4D03F;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 20px;
}

/* RIGHTS CARDS */
.rights-grid, .commitments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.right-card, .commitment {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.right-card:hover, .commitment:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.right-card h3, .commitment h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 12px;
}

/* CTA SECTIONS */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 12px;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.cta-benefits {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
  position: relative;
  z-index: 1;
}

.cta-benefits span {
  color: #D4AF37;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
}

.contact-info, .reassurance {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* SUGGESTIONS GRID */
.suggestions-grid, .suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.suggestion {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
}

.suggestion h3 {
  color: #D4AF37;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
  backdrop-filter: blur(20px);
  border-top: 2px solid #D4AF37;
  padding: 24px 20px;
  z-index: 10000;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8), 0 -1px 0 rgba(212, 175, 55, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

.cookie-text a {
  color: #D4AF37;
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

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

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

.modal-content {
  background: linear-gradient(135deg, #0F0F1E 0%, #1A1A2E 100%);
  border: 2px solid #D4AF37;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.3);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #D4AF37;
  color: #D4AF37;
  font-size: 24px;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(212, 175, 55, 0.3);
  color: #F4D03F;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(15, 15, 30, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

.cookie-category h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(128, 128, 128, 0.3);
  border: 2px solid rgba(128, 128, 128, 0.5);
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #808080;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: rgba(212, 175, 55, 0.3);
  border-color: #D4AF37;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background: #D4AF37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Section padding */
  section {
    padding: 40px 20px;
    margin-bottom: 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Flexbox layouts for mobile */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .pillars {
    flex-direction: column;
  }
  
  .pillar {
    width: 100%;
  }
  
  /* Service cards - stack vertically */
  .services-grid,
  .services-overview .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Testimonials - stack vertically */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats grid */
  .stats,
  .stats-grid {
    flex-direction: column;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* Values grid */
  .values-grid {
    flex-direction: column;
  }
  
  .value-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Projects grid */
  .projects-grid,
  .portfolio-grid .projects-grid {
    flex-direction: column;
  }
  
  .project-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Process steps */
  .phases {
    flex-direction: column;
  }
  
  .phase {
    flex: 1 1 100%;
  }
  
  .process-step {
    padding-left: 0;
    padding-top: 80px;
  }
  
  .step-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Contact options */
  .options-grid,
  .contact-methods {
    flex-direction: column;
  }
  
  .option,
  .method {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Rights & commitments */
  .rights-grid,
  .commitments-grid {
    flex-direction: column;
  }
  
  .right-card,
  .commitment {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* CTA sections */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .cta-benefits {
    flex-direction: column;
  }
  
  /* Suggestions */
  .suggestions-grid,
  .suggestions {
    flex-direction: column;
  }
  
  .suggestion {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

/* ANIMATIONS */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* 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;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}