/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1A1A2E;
  background: #ffffff;
  overflow-x: hidden;
}

/* Typography - Modern Bold Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A2E;
  margin-bottom: 20px;
}

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

h2 {
  font-size: 38px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #FF6B35;
}

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

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

/* Header Styles */
header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #2D5BFF;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

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

.tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: none;
}

/* Main Navigation */
.main-nav {
  display: none;
}

.main-nav a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #2D5BFF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #2D5BFF 0%, #1a3acc 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 91, 255, 0.4);
  background: linear-gradient(135deg, #1a3acc 0%, #2D5BFF 100%);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D5BFF;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.3);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-menu-close {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

.mobile-nav a {
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background: rgba(255, 107, 53, 0.2);
  border-left-color: #FF6B35;
  padding-left: 32px;
  color: #FF6B35;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A1A2E 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

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

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

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

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

.btn-primary,
.btn-secondary {
  padding: 16px 36px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #FF6B35;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  background: #ff8c5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2D5BFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary.center {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

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

.trust-indicators span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #1A1A2E;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

.service-card h3 {
  color: #1A1A2E;
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 0;
}

.service-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
  flex-grow: 1;
}

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

.service-link {
  display: inline-block;
  color: #2D5BFF;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #FF6B35;
  padding-left: 8px;
}

/* Services Detailed Grid */
.services-grid-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card-detailed {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 30px);
  min-width: 320px;
  max-width: 500px;
  box-shadow: 0 6px 20px rgba(45, 91, 255, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}

.service-card-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

.service-card-detailed h3 {
  color: #1A1A2E;
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card-detailed p {
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-detailed .price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #FF6B35;
  margin: 20px 0;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #2D5BFF 100%);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

.benefit-card h3 {
  color: #2D5BFF;
  font-size: 22px;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #4a4a4a;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  background: #ffffff;
  border-left: 6px solid #FF6B35;
  border-radius: 12px;
  padding: 32px 28px;
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(45, 91, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.testimonial-card .author {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #2D5BFF;
  font-size: 16px;
  text-align: right;
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A1A2E 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 15px,
    rgba(255, 255, 255, 0.03) 15px,
    rgba(255, 255, 255, 0.03) 30px
  );
}

.cta-section h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  position: relative;
  z-index: 1;
}

/* Location Section */
.location {
  background: #f8f9ff;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 40px 20px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.location-info p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #4a4a4a;
}

.location-info strong {
  color: #2D5BFF;
  font-weight: 700;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A1A2E 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumbs {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

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

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

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

.step h3 {
  color: #2D5BFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.step p {
  color: #4a4a4a;
}

/* Warranty Grid */
.warranty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.warranty-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.warranty-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #2D5BFF 100%);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.warranty-card:hover::after {
  opacity: 1;
}

.warranty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

.warranty-card h3 {
  color: #2D5BFF;
  font-size: 22px;
  margin-bottom: 16px;
}

.warranty-card p {
  color: #4a4a4a;
}

/* Equipment Categories */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-card {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

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

.category-card p {
  color: #4a4a4a;
}

/* PC Builds */
.builds-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.build-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.build-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.build-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

.build-card h3 {
  color: #1A1A2E;
  font-size: 24px;
  margin-bottom: 12px;
}

.build-card p {
  color: #4a4a4a;
  margin-bottom: 16px;
}

.price-range {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
}

/* Selection Factors */
.selection-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.factor {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.factor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #2D5BFF 100%);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.factor:hover::after {
  opacity: 1;
}

.factor:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

.factor h3 {
  color: #2D5BFF;
  font-size: 22px;
  margin-bottom: 12px;
}

.factor p {
  color: #4a4a4a;
}

/* Story Section */
.text-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #4a4a4a;
}

.text-section h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1A1A2E;
}

.text-section ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.text-section ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
}

.text-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 20px;
  font-weight: 700;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

.value-card h3 {
  color: #2D5BFF;
  font-size: 24px;
  margin-bottom: 16px;
}

.value-card p {
  color: #4a4a4a;
}

/* Expertise Grid */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.expertise-card {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #2D5BFF 100%);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expertise-card:hover::after {
  opacity: 1;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

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

.expertise-card p {
  color: #4a4a4a;
}

/* Location Full */
.location-details {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.location-details p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #4a4a4a;
}

.location-details strong {
  color: #2D5BFF;
  font-weight: 700;
}

/* Projects Grid */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.project-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

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

.project-card p {
  color: #4a4a4a;
}

/* Types Grid */
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.type-card {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.type-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B35 0%, #2D5BFF 100%);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.type-card:hover::after {
  opacity: 1;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

.type-card h3 {
  color: #2D5BFF;
  font-size: 22px;
  margin-bottom: 12px;
}

.type-card p {
  color: #4a4a4a;
}

/* Results Grid */
.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.result-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

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

.result-card p {
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 600;
}

/* Contact Methods */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 28px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 260px;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

.method-card h3 {
  color: #2D5BFF;
  font-size: 24px;
  margin-bottom: 16px;
}

.method-card p {
  color: #4a4a4a;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.info-block {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

.info-block h3 {
  color: #2D5BFF;
  font-size: 26px;
  margin-bottom: 20px;
}

.info-block p {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.info-block strong {
  color: #1A1A2E;
  font-weight: 700;
}

/* Consultation Section */
.consultation-types {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.consultation-types .type {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 36px 32px;
  flex: 1 1 calc(50% - 30px);
  min-width: 260px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
}

.consultation-types .type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.consultation-types .type:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
}

.consultation-types .type h3 {
  color: #2D5BFF;
  font-size: 24px;
  margin-bottom: 12px;
}

.consultation-types .type p {
  color: #4a4a4a;
  font-size: 16px;
}

.duration {
  font-size: 18px;
  color: #4a4a4a;
  margin: 30px 0;
  text-align: center;
}

.email-cta {
  font-size: 20px;
  color: #4a4a4a;
  text-align: center;
  margin-top: 30px;
}

.email-cta strong {
  color: #2D5BFF;
  font-weight: 700;
}

/* FAQ Section */
.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 0 0 12px;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(45, 91, 255, 0.2);
  border-color: #FF6B35;
}

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

.faq-item p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Legal Content */
.legal-content {
  padding: 40px 20px;
}

.legal-content .text-section h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2D5BFF;
}

.legal-content .text-section h3 {
  font-size: 22px;
  color: #1A1A2E;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content .text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content .text-section a {
  color: #2D5BFF;
  text-decoration: underline;
}

.legal-content .text-section a:hover {
  color: #FF6B35;
}

/* Thank You Pages */
.thank-you-hero {
  background: linear-gradient(135deg, #2D5BFF 0%, #1A1A2E 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 16px;
}

.thank-you-content .subtitle {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.thank-you-message {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 20px;
}

.thank-you-message .text-section {
  text-align: center;
}

.thank-you-message p {
  font-size: 18px;
  margin-bottom: 20px;
}

.helpful-links {
  padding: 60px 20px;
  background: #f8f9ff;
}

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

.link-card {
  background: #ffffff;
  border: 3px solid #2D5BFF;
  border-radius: 12px;
  padding: 28px 24px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.1);
  color: #1A1A2E;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2D5BFF 0%, #FF6B35 100%);
  border-radius: 12px 12px 0 0;
}

.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(45, 91, 255, 0.25);
  border-color: #FF6B35;
  color: #2D5BFF;
}

.return-home {
  text-align: center;
  padding: 60px 20px;
}

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

.additional-links a {
  color: #2D5BFF;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border: 2px solid #2D5BFF;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.additional-links a:hover {
  background: #2D5BFF;
  color: #ffffff;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 0;
}

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

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #FF6B35;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D5BFF 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #FF6B35;
}

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

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

.cookie-text {
  flex: 1 1 300px;
}

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

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

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

.cookie-btn-accept {
  background: #FF6B35;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #ff8c5a;
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.cookie-btn-settings:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

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

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

.cookie-modal h3 {
  color: #1A1A2E;
  font-size: 28px;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 12px;
  border: 2px solid #2D5BFF;
}

.cookie-category h4 {
  color: #2D5BFF;
  font-size: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background: #2D5BFF;
}

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

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

.cookie-toggle.active::after {
  left: 27px;
}

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

.cookie-modal-buttons button {
  flex: 1;
  min-width: 140px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    gap: 5px;
  }

  .tagline {
    display: block;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

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

  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .services-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .header-content {
    justify-content: center;
  }

  .cta-button {
    display: none;
  }

  section {
    padding: 30px 15px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-btn {
    width: 100%;
  }
}

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

/* Smooth Scrolling */
html {
  scroll-padding-top: 80px;
}