/* =================================================================
   ZEPHYR CRYPT - GEOMETRIC STRUCTURED DESIGN SYSTEM
   Self-Storage Website - Complete Styles
   Design Style: Geometric & Structured
   ================================================================= */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #F8F9FA;
  overflow-x: hidden;
}

/* =================================================================
   TYPOGRAPHY - GEOMETRIC STRUCTURE
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A4A63;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-bottom: 3px solid #D68838;
  padding-bottom: 12px;
  display: inline-block;
}

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

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

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

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

li {
  margin-bottom: 8px;
}

a {
  color: #2C5F7C;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D68838;
}

strong {
  color: #1A4A63;
  font-weight: 700;
}

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

/* =================================================================
   HEADER - GEOMETRIC STRUCTURE
   ================================================================= */
header {
  background: #FFFFFF;
  border-bottom: 4px solid #D68838;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1A4A63;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* =================================================================
   MOBILE MENU - GEOMETRIC SLIDING PANEL
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1100;
  background: #1A4A63;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1A4A63;
  z-index: 1050;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 12px rgba(0,0,0,0.3);
}

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

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

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #D68838;
  background: rgba(255,255,255,0.1);
  padding-left: 24px;
}

/* =================================================================
   HERO SECTION - GEOMETRIC ANGULAR DESIGN
   ================================================================= */
.hero {
  background: linear-gradient(135deg, #1A4A63 0%, #2C5F7C 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(214, 136, 56, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #E8F1F5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badges span {
  background: rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255,255,255,0.3);
}

.trust-badge {
  background: #D68838;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =================================================================
   BUTTONS - GEOMETRIC ANGULAR STYLE
   ================================================================= */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.3s ease;
  z-index: 0;
}

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

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: #D68838;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(214,136,56,0.3);
}

.btn-primary:hover {
  background: #C57A2E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(214,136,56,0.4);
}

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

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1A4A63;
  transform: translateY(-2px);
}

/* =================================================================
   SECTIONS - STRUCTURED GRID LAYOUT
   ================================================================= */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

/* =================================================================
   BENEFITS GRID - GEOMETRIC CARDS
   ================================================================= */
.benefits {
  background: #FFFFFF;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: #F8F9FA;
  padding: 32px 24px;
  border-left: 4px solid #D68838;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #1A4A63;
  transition: height 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card h3 {
  color: #1A4A63;
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-card p {
  color: #6C757D;
  margin-bottom: 0;
}

/* =================================================================
   SERVICES GRID - STRUCTURED LAYOUT
   ================================================================= */
.services-preview,
.services-detailed {
  background: #F8F9FA;
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #D68838;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: #D68838;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

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

.service-card h3 {
  color: #1A4A63;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p {
  color: #6C757D;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #D68838;
  margin-top: 16px;
  margin-bottom: 0;
}

.service-block {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 6px solid #1A4A63;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-block h2 {
  margin-bottom: 24px;
}

.service-block ul {
  margin-bottom: 24px;
}

.service-block ul li {
  padding-left: 24px;
  position: relative;
}

.service-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D68838;
  font-weight: 700;
}

.service-block .price {
  font-size: 32px;
  font-weight: 700;
  color: #D68838;
  margin-bottom: 24px;
  display: block;
}

/* =================================================================
   STEPS PROCESS - GEOMETRIC NUMBERED BLOCKS
   ================================================================= */
.how-it-works,
.process-overview {
  background: #FFFFFF;
}

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

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
  position: relative;
  padding: 32px 24px;
  background: #F8F9FA;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #D68838;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step-number {
  display: block;
  width: 64px;
  height: 64px;
  background: #1A4A63;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  border-radius: 4px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(26,74,99,0.3);
}

.step:hover .step-number {
  background: #D68838;
  transform: scale(1.1);
}

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

.step p {
  color: #6C757D;
  margin-bottom: 0;
}

.step .time {
  font-size: 14px;
  color: #D68838;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =================================================================
   STATISTICS - GEOMETRIC BLOCKS
   ================================================================= */
.trust-indicators,
.statistics {
  background: linear-gradient(135deg, #1A4A63 0%, #2C5F7C 100%);
  color: #FFFFFF;
}

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

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #D68838;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #E8F1F5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =================================================================
   TESTIMONIALS - GEOMETRIC CARD DESIGN
   ================================================================= */
.testimonials {
  background: #F8F9FA;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border-left: 6px solid #D68838;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  color: rgba(214,136,56,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimonial-card p {
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1A4A63;
  font-style: normal;
  margin-bottom: 0;
  text-align: right;
}

/* =================================================================
   PRICING TABLES - STRUCTURED GRID
   ================================================================= */
.pricing-tables {
  background: #F8F9FA;
}

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

.pricing-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border-color: #D68838;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border-color: #D68838;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #D68838;
  color: #FFFFFF;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  color: #1A4A63;
  margin-bottom: 8px;
  display: block;
}

.pricing-card .space {
  color: #6C757D;
  font-size: 16px;
  margin-bottom: 24px;
  display: block;
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E9ECEF;
  position: relative;
  padding-left: 28px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D68838;
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .best-for {
  font-size: 14px;
  color: #6C757D;
  font-style: italic;
  margin-bottom: 24px;
}

/* =================================================================
   USE CASES GRID
   ================================================================= */
.use-cases {
  background: #FFFFFF;
}

.use-cases h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.use-case-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #F8F9FA;
  padding: 32px 24px;
  border-radius: 4px;
  border-top: 4px solid #D68838;
  text-align: center;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  background: #FFFFFF;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.use-case-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.use-case-card p {
  color: #6C757D;
  margin-bottom: 0;
  font-size: 14px;
}

/* =================================================================
   DISCOUNT & INCLUDED SECTIONS
   ================================================================= */
.discount-options,
.whats-included {
  background: #FFFFFF;
}

.discount-list {
  max-width: 700px;
  margin: 0 auto;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
  border-left: 6px solid #D68838;
}

.discount-list li {
  padding: 12px 0;
  font-weight: 600;
  color: #1A4A63;
}

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

.included-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #F8F9FA;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #1A4A63;
  font-weight: 600;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.included-item:hover {
  background: #FFFFFF;
  border-left-color: #D68838;
  transform: translateX(8px);
}

/* =================================================================
   SECURITY & FEATURES
   ================================================================= */
.security-process,
.security-grid {
  background: #F8F9FA;
}

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

.security-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  transition: all 0.3s ease;
}

.security-item:hover {
  border-color: #1A4A63;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.security-item h3 {
  color: #1A4A63;
  margin-bottom: 16px;
  font-size: 20px;
}

.security-item p {
  color: #6C757D;
  margin-bottom: 0;
}

/* =================================================================
   ACCESS & TIPS SECTIONS
   ================================================================= */
.access-information {
  background: linear-gradient(135deg, #2C5F7C 0%, #1A4A63 100%);
  color: #FFFFFF;
  text-align: center;
}

.access-information h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.access-information .hours {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.access-information .premium {
  font-size: 16px;
  color: #D68838;
  font-weight: 600;
  margin-top: 24px;
}

.moving-tips {
  background: #FFFFFF;
}

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

.tip-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #F8F9FA;
  padding: 24px;
  border-radius: 4px;
  border-top: 3px solid #D68838;
  transition: all 0.3s ease;
}

.tip-card:hover {
  background: #FFFFFF;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tip-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.tip-card p {
  font-size: 14px;
  color: #6C757D;
  margin-bottom: 0;
}

/* =================================================================
   CONTACT SECTIONS
   ================================================================= */
.contact-methods {
  background: #FFFFFF;
}

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

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  text-align: center;
  background: #F8F9FA;
  padding: 40px 24px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: #D68838;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-method h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.contact-method .value {
  font-size: 20px;
  font-weight: 700;
  color: #1A4A63;
  margin-bottom: 16px;
  display: block;
}

.contact-method .hours {
  font-size: 14px;
  color: #6C757D;
}

.contact-form-section {
  background: #F8F9FA;
  text-align: center;
}

.form-info {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
}

.form-info .note {
  font-size: 14px;
  color: #6C757D;
  font-style: italic;
  margin-top: 16px;
}

.office-hours {
  background: #FFFFFF;
}

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

.hours-block {
  flex: 1 1 300px;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #1A4A63;
  text-align: center;
}

.hours-block h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.emergency {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #D68838;
  margin-top: 32px;
}

.location-map,
.visit-information {
  background: #F8F9FA;
}

.address {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1A4A63;
  margin-bottom: 32px;
}

.transport-info {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
}

.transport-info h3 {
  margin-bottom: 24px;
}

.transport-info ul {
  list-style: none;
  padding: 0;
}

.transport-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E9ECEF;
  padding-left: 28px;
  position: relative;
}

.transport-info ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D68838;
  font-weight: 700;
}

.what-to-bring {
  font-size: 16px;
  font-weight: 600;
  color: #1A4A63;
  margin-top: 24px;
}

/* =================================================================
   COMPANY & MISSION SECTIONS
   ================================================================= */
.company-story,
.mission-values {
  background: #FFFFFF;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #F8F9FA;
  border-radius: 4px;
  border-left: 6px solid #1A4A63;
}

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

.text-section p {
  line-height: 1.8;
}

.mission {
  font-size: 20px;
  font-weight: 600;
  color: #1A4A63;
  text-align: center;
  padding: 32px;
  background: #F8F9FA;
  border-radius: 4px;
  border: 3px solid #D68838;
  margin-bottom: 40px;
}

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

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #D68838;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.value-card p {
  color: #6C757D;
  margin-bottom: 0;
  font-size: 14px;
}

/* =================================================================
   LEGAL CONTENT PAGES
   ================================================================= */
.legal-content {
  background: #FFFFFF;
}

.legal-content .intro {
  font-size: 18px;
  color: #6C757D;
  margin-bottom: 32px;
  text-align: center;
}

.last-update {
  font-size: 14px;
  color: #6C757D;
  text-align: center;
  font-style: italic;
}

.rights-details {
  background: #F8F9FA;
}

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

.right-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #1A4A63;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.right-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.right-card p {
  color: #6C757D;
  margin-bottom: 0;
}

.contact-dpo {
  background: #FFFFFF;
}

.contact-dpo h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-dpo ul {
  max-width: 600px;
  margin: 0 auto;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
  list-style: none;
}

.contact-dpo ul li {
  padding: 12px 0;
  border-bottom: 1px solid #E9ECEF;
}

.cookies-table {
  background: #F8F9FA;
}

.cookies-table h2 {
  text-align: center;
  margin-bottom: 32px;
}

table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-collapse: collapse;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

thead {
  background: #1A4A63;
  color: #FFFFFF;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

tbody tr {
  border-bottom: 1px solid #E9ECEF;
}

tbody tr:hover {
  background: #F8F9FA;
}

tbody td {
  padding: 16px;
  color: #2C3E50;
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */
.hero.thank-you {
  padding: 120px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28A745;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(40,167,69,0.3);
}

.confirmation-content {
  background: #FFFFFF;
}

.what-next {
  max-width: 700px;
  margin: 0 auto;
  background: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #D68838;
}

.what-next h2 {
  margin-bottom: 24px;
}

.what-next ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.what-next ol li {
  counter-increment: step-counter;
  padding: 16px 0;
  padding-left: 48px;
  position: relative;
  border-bottom: 1px solid #E9ECEF;
}

.what-next ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background: #1A4A63;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.next-steps {
  background: #F8F9FA;
}

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

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  border: 2px solid #E9ECEF;
  text-align: center;
  font-weight: 600;
  color: #1A4A63;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #D68838;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  color: #D68838;
}

.social-proof {
  background: #FFFFFF;
}

/* =================================================================
   CTA SECTIONS
   ================================================================= */
.cta-section,
.cta-final,
.cta-simple {
  background: linear-gradient(135deg, #1A4A63 0%, #2C5F7C 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2,
.cta-final h2 {
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 16px;
}

.contact-info {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 24px;
}

.phone {
  font-size: 32px;
  font-weight: 700;
  color: #D68838;
  margin: 16px 0;
}

.hours {
  font-size: 16px;
  color: #E8F1F5;
}

.guarantee {
  font-size: 16px;
  color: #D68838;
  font-weight: 600;
  margin-top: 24px;
}

/* =================================================================
   FOOTER - GEOMETRIC STRUCTURED
   ================================================================= */
footer {
  background: #1A4A63;
  color: #E8F1F5;
  padding: 60px 20px 24px;
}

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

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

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

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
  border-bottom: 2px solid #D68838;
  padding-bottom: 8px;
  display: inline-block;
}

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

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

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

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #D68838;
}

.footer-nav a:hover {
  color: #D68838;
  padding-left: 16px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

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

/* =================================================================
   COOKIE CONSENT BANNER - GEOMETRIC DESIGN
   ================================================================= */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A4A63;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  z-index: 1040;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid #D68838;
}

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

#cookie-consent-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 300px;
  color: #E8F1F5;
}

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

#cookie-consent-banner button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cookie-accept-all {
  background: #D68838;
  color: #FFFFFF;
}

#cookie-accept-all:hover {
  background: #C57A2E;
  transform: translateY(-2px);
}

#cookie-reject-all {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#cookie-reject-all:hover {
  background: rgba(255,255,255,0.1);
}

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

#cookie-settings:hover {
  background: #D68838;
  color: #FFFFFF;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-top: 6px solid #D68838;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 4px;
  border-left: 4px solid #1A4A63;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

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

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.cookie-modal-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cookie-save-preferences {
  background: #D68838;
  color: #FFFFFF;
}

#cookie-save-preferences:hover {
  background: #C57A2E;
}

#cookie-close-modal {
  background: #6C757D;
  color: #FFFFFF;
}

#cookie-close-modal:hover {
  background: #545B62;
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Grids - All use flexbox */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .use-cases-grid,
  .testimonials-grid,
  .pricing-grid,
  .contact-grid,
  .security-grid,
  .tips-grid,
  .values-grid,
  .rights-grid,
  .included-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .use-case-card,
  .testimonial-card,
  .pricing-card,
  .contact-method,
  .security-item,
  .tip-card,
  .value-card,
  .right-card,
  .included-item,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  #cookie-consent-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  #cookie-consent-banner .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  #cookie-consent-banner button {
    width: 100%;
  }
  
  /* Table */
  table {
    font-size: 14px;
  }
  
  thead th,
  tbody td {
    padding: 12px 8px;
  }
  
  /* Pricing Cards */
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card {
    padding: 24px 16px;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px 16px;
  }
}

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

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations to cards on scroll */
.benefit-card,
.service-card,
.step,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  #cookie-settings-modal {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* =================================================================
   END OF STYLES
   ================================================================= */