/* ========================================
   OFFICEPROPROPLAND - TECH FUTURISTIC CSS
   Design Style: Futuristic Tech-Inspired
   ======================================== */

/* ========================================
   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, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E8E8E8;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1528 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-shadow: 0 0 20px rgba(38, 198, 218, 0.3);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #26C6DA 0%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

a:hover {
  color: #00E5FF;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

ul {
  list-style: none;
}

ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

ul li:before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #26C6DA;
  font-size: 18px;
}

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

em {
  color: #26C6DA;
  font-style: normal;
}

blockquote {
  border-left: 4px solid #26C6DA;
  padding: 20px 24px;
  margin: 24px 0;
  background: rgba(38, 198, 218, 0.05);
  font-style: italic;
  color: #E8E8E8;
  position: relative;
}

blockquote:before {
  content: '"';
  font-size: 48px;
  color: #26C6DA;
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.3;
}

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38, 198, 218, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(38, 198, 218, 0.1);
}

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

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

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(38, 198, 218, 0.5));
}

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

.main-nav a {
  color: #B0B8C8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #26C6DA 0%, #00E5FF 100%);
  transition: width 0.3s ease;
}

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

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

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #26C6DA 0%, #00E5FF 100%);
  border: none;
  color: #0A0E27;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(38, 198, 218, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(38, 198, 218, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 30px rgba(38, 198, 218, 0.2);
  border-left: 1px solid rgba(38, 198, 218, 0.3);
}

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

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

.mobile-menu-close:hover {
  background: #26C6DA;
  color: #0A0E27;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 30px 30px;
}

.mobile-nav a {
  color: #B0B8C8;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(38, 198, 218, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #26C6DA;
  padding-left: 10px;
  border-bottom-color: #26C6DA;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover:before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #26C6DA 0%, #00E5FF 100%);
  color: #0A0E27;
  box-shadow: 0 4px 20px rgba(38, 198, 218, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(38, 198, 218, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #26C6DA;
  border-color: #26C6DA;
}

.btn-secondary:hover {
  background: rgba(38, 198, 218, 0.1);
  border-color: #00E5FF;
  color: #00E5FF;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
  border-bottom: 1px solid rgba(38, 198, 218, 0.2);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(38, 198, 218, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  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;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

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

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

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

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-indicators span {
  color: #26C6DA;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span:before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #26C6DA 0%, #00E5FF 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  color: #0A0E27;
  font-weight: bold;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.08) 0%, rgba(0, 229, 255, 0.04) 100%);
  border-bottom: 1px solid rgba(38, 198, 218, 0.2);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #B0B8C8;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: 60px 20px;
}

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

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

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: rgba(26, 31, 58, 0.6);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #26C6DA 0%, #00E5FF 100%);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #26C6DA;
  box-shadow: 0 8px 30px rgba(38, 198, 218, 0.3);
}

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

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

.feature-card p {
  color: #B0B8C8;
  margin-bottom: 0;
}

/* ========================================
   SERVICES SECTIONS
   ======================================== */
.services {
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #B0B8C8;
  margin-bottom: 48px;
}

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

.service-card,
.product-card,
.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8) 0%, rgba(15, 21, 40, 0.8) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.product-card:hover,
.package-card:hover {
  transform: translateY(-5px);
  border-color: #26C6DA;
  box-shadow: 0 10px 40px rgba(38, 198, 218, 0.3);
}

.service-card h3,
.product-card h3,
.package-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.product-card p {
  color: #B0B8C8;
  flex-grow: 1;
}

.price,
.price-info {
  color: #26C6DA;
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.package-card ul li {
  padding-left: 24px;
  margin-bottom: 8px;
  color: #B0B8C8;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  color: rgba(38, 198, 218, 0.2);
  line-height: 1;
}

.testimonial-card p {
  color: #E8E8E8;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.author {
  color: #26C6DA;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.15) 0%, rgba(0, 229, 255, 0.08) 100%);
  border: 1px solid rgba(38, 198, 218, 0.3);
  border-radius: 16px;
  margin: 60px auto;
  max-width: 900px;
}

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

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

.cta-section .btn {
  margin: 0 8px 16px;
}

.cta-note {
  font-size: 14px;
  color: #26C6DA;
  margin-top: 24px;
}

/* ========================================
   STATS & INFO SECTIONS
   ======================================== */
.stats {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.4);
}

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

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

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(38, 198, 218, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #26C6DA;
  line-height: 1;
  text-shadow: 0 0 20px rgba(38, 198, 218, 0.5);
}

.stat-label {
  font-size: 16px;
  color: #B0B8C8;
}

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

.stats-row span {
  color: #26C6DA;
  font-weight: 600;
  font-size: 16px;
}

/* ========================================
   VALUES & BENEFITS
   ======================================== */
.values,
.benefits {
  padding: 60px 20px;
}

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

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

.value-card,
.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(26, 31, 58, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover,
.benefit-card:hover {
  border-color: #26C6DA;
  box-shadow: 0 8px 30px rgba(38, 198, 218, 0.2);
}

.value-card h3,
.benefit-card h3 {
  margin-bottom: 12px;
}

.value-card p,
.benefit-card p {
  color: #B0B8C8;
  margin-bottom: 0;
}

/* ========================================
   SERVICE DETAIL SECTIONS
   ======================================== */
.services-overview,
.about-intro {
  padding: 40px 20px;
  text-align: center;
}

.services-detail {
  padding: 40px 20px;
}

.service-item {
  background: rgba(26, 31, 58, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  margin-bottom: 32px;
}

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

.service-item ul {
  margin: 24px 0;
}

/* ========================================
   CASE STUDIES / PORTFOLIO
   ======================================== */
.portfolio {
  padding: 40px 20px;
  text-align: center;
}

.case-studies {
  padding: 40px 20px;
}

.case-study {
  background: rgba(26, 31, 58, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  margin-bottom: 40px;
}

.case-study h2 {
  margin-bottom: 24px;
}

.case-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(38, 198, 218, 0.05);
  border-radius: 8px;
}

.case-info span {
  color: #B0B8C8;
  font-size: 14px;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */
.contact-info {
  padding: 40px 20px;
}

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

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: rgba(26, 31, 58, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  text-align: center;
  margin-bottom: 20px;
}

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

.contact-form-section,
.showroom-info,
.consultation-info {
  padding: 60px 20px;
}

.form-placeholder {
  background: rgba(26, 31, 58, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

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

.option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: rgba(26, 31, 58, 0.6);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.15) 0%, rgba(0, 229, 255, 0.08) 100%);
}

.thank-you-content h1 {
  color: #26C6DA;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #B0B8C8;
}

.confirmation-details,
.contact-reminder {
  padding: 40px 20px;
  text-align: center;
}

.next-steps {
  padding: 60px 20px;
}

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

.next-step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, rgba(38, 198, 218, 0.1) 0%, rgba(0, 229, 255, 0.05) 100%);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(38, 198, 218, 0.2);
  text-align: center;
  color: #26C6DA;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.next-step-card:hover {
  transform: translateY(-5px);
  border-color: #26C6DA;
  box-shadow: 0 8px 30px rgba(38, 198, 218, 0.3);
}

.social-proof,
.return-home {
  padding: 40px 20px;
  text-align: center;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(38, 198, 218, 0.2);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

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

.footer-section p {
  color: #B0B8C8;
  font-size: 14px;
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(38, 198, 218, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #7A8396;
  font-size: 14px;
  margin: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-top: 2px solid #26C6DA;
  box-shadow: 0 -4px 30px rgba(38, 198, 218, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ========================================
   COOKIE MODAL
   ======================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(15, 21, 40, 0.95) 100%);
  border: 2px solid #26C6DA;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(38, 198, 218, 0.4);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-close {
  background: transparent;
  border: 2px solid #26C6DA;
  color: #26C6DA;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #26C6DA;
  color: #0A0E27;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(38, 198, 218, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(38, 198, 218, 0.2);
}

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

.category-header h3 {
  margin: 0;
  font-size: 18px;
}

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4A4A4A;
  transition: 0.3s;
  border-radius: 26px;
}

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

input:checked + .slider {
  background: linear-gradient(135deg, #26C6DA 0%, #00E5FF 100%);
}

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

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

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  
  .trust-indicators { flex-direction: column; gap: 12px; }
  
  .features-grid,
  .services-grid,
  .products-grid,
  .packages-grid,
  .values-grid,
  .benefits-grid,
  .contact-grid,
  .consultation-options,
  .next-steps-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .product-card,
  .package-card,
  .value-card,
  .benefit-card,
  .contact-method,
  .option,
  .next-step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonials-grid { flex-direction: column; }
  .testimonial-card { flex: 1 1 100%; }
  
  .stats-grid { flex-direction: column; }
  .stat-card { flex: 1 1 100%; }
  
  .footer-content { flex-direction: column; gap: 32px; }
  .footer-section { flex: 1 1 100%; }
  
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-buttons .btn { width: 100%; }
  
  .modal-content { padding: 24px; }
  .modal-actions { flex-direction: column; }
  .modal-actions .btn { width: 100%; }
  
  section { padding: 32px 16px; margin-bottom: 40px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid { gap: 20px; }
  .feature-card { flex: 1 1 calc(50% - 20px); }
  
  .services-grid,
  .products-grid,
  .packages-grid { gap: 20px; }
  
  .service-card,
  .product-card,
  .package-card { flex: 1 1 calc(50% - 20px); }
  
  .stat-card { flex: 1 1 calc(50% - 20px); }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Smooth scrolling animations */
.animate-in {
  animation: fadeInUp 0.6s ease both;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid #26C6DA;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner { display: none; }
  body { background: white; color: black; }
}