/* ==========================================================================
   WarmQuest - Warm & Friendly Design Style
   Complete CSS for All Pages - Mobile First Approach
   ========================================================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #333333;
  background-color: #FFF9F5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

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

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

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

strong {
  font-weight: 600;
  color: #2C5F8D;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Header Styles
   ========================================================================== */
header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

.tagline {
  font-size: 13px;
  color: #E67E22;
  font-weight: 600;
  text-align: center;
}

.main-nav {
  display: none;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 16px;
}

.cta-button {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

/* Mobile Menu Toggle Button
   ========================================================================== */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

/* Mobile Menu Overlay
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  color: #2C5F8D;
  border: 2px solid #2C5F8D;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F8D;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(44, 95, 141, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #E67E22;
  color: #FFFFFF;
  transform: translateX(8px);
}

/* Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A4068 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
  margin-top: 16px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}

.trust-indicators span {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

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

.section-subtitle {
  text-align: center;
  color: #666666;
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
  color: #2C5F8D;
}

/* Card Grids with Flexbox
   ========================================================================== */
.benefits-grid,
.services-grid,
.products-grid,
.team-grid,
.values-grid,
.warranty-grid,
.methods-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.product-card,
.team-member,
.value-card,
.warranty-item,
.method-card,
.category-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.product-card:hover,
.team-member:hover,
.value-card:hover,
.warranty-item:hover,
.method-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.benefit-card img,
.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.benefit-card h3,
.service-card h3,
.product-card h3,
.value-card h3,
.warranty-item h3,
.method-card h3,
.category-card h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.product-card p,
.value-card p,
.warranty-item p,
.method-card p,
.category-card p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #E67E22;
  margin-top: auto;
}

.service-card .features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.service-card .features li {
  padding-left: 24px;
  position: relative;
  color: #666666;
  font-size: 14px;
}

.service-card .features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: bold;
}

/* Steps Grid
   ========================================================================== */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.step {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.step h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

/* Stats Grid
   ========================================================================== */
.stats-grid,
.satisfaction-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.stat,
.stat-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 100%;
  min-width: 200px;
  transition: all 0.3s ease;
}

.stat:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: #E67E22;
  line-height: 1;
}

.stat-label {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

/* Testimonials
   ========================================================================== */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.testimonial-card p {
  font-style: italic;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
  font-style: normal;
}

.testimonial-highlight {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  margin-top: 32px;
  text-align: center;
}

.testimonial-highlight p {
  font-style: italic;
  color: #333333;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-highlight .author {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
}

/* Package Cards
   ========================================================================== */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.package-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.package-card.featured {
  border: 3px solid #E67E22;
  transform: scale(1.02);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.package-card h3 {
  color: #2C5F8D;
  font-size: 24px;
  margin-bottom: 8px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 16px;
}

.package-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card ul li {
  padding-left: 28px;
  position: relative;
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
}

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

/* Case Studies & Projects
   ========================================================================== */
.case-grid,
.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.case-card,
.type-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.case-card:hover,
.type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.case-card h3,
.type-card h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 12px;
}

.case-card .scope {
  display: inline-block;
  background: rgba(230, 126, 34, 0.1);
  color: #E67E22;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0;
}

.case-card .result {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
  margin-top: 8px;
}

/* Timeline
   ========================================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.timeline-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.timeline-item .year {
  font-size: 24px;
  font-weight: 700;
  color: #E67E22;
  min-width: 80px;
}

.timeline-item p {
  color: #666666;
  font-size: 15px;
  margin: 0;
}

/* Team Section
   ========================================================================== */
.team-member h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 4px;
}

.team-member .role {
  color: #E67E22;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Contact & Form Sections
   ========================================================================== */
.contact-methods,
.office-info,
.business-info {
  background: #FFFFFF;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.form-wrapper {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
}

.form-note {
  background: rgba(230, 126, 34, 0.1);
  padding: 16px;
  border-radius: 12px;
  color: #333333;
  margin-bottom: 24px;
  font-size: 14px;
}

.form-placeholder {
  background: rgba(44, 95, 141, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 2px dashed #2C5F8D;
}

.form-placeholder ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.form-placeholder ul li {
  padding-left: 24px;
  position: relative;
  color: #666666;
}

.form-placeholder ul li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E67E22;
}

.note {
  font-size: 13px;
  color: #999999;
  font-style: italic;
  margin-top: 16px;
}

.office-details,
.business-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.office-detail {
  background: rgba(44, 95, 141, 0.05);
  padding: 20px;
  border-radius: 12px;
}

.office-detail h3 {
  color: #E67E22;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.benefits-list li {
  padding-left: 28px;
  position: relative;
  color: #666666;
  font-size: 15px;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: bold;
  font-size: 18px;
}

/* Legal Content
   ========================================================================== */
.legal-content {
  background: #FFFFFF;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(44, 95, 141, 0.1);
}

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

.legal-section h2 {
  text-align: left;
  font-size: 22px;
  margin-bottom: 16px;
  color: #2C5F8D;
}

.legal-section p {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section a {
  color: #E67E22;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #D35400;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
}

.cookie-table th,
.cookie-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(44, 95, 141, 0.1);
}

.cookie-table th {
  background: rgba(44, 95, 141, 0.1);
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
}

.cookie-table td {
  color: #666666;
  font-size: 14px;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Rights Details
   ========================================================================== */
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.right-card {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  width: 100%;
  transition: all 0.3s ease;
}

.right-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

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

/* Thank You Page
   ========================================================================== */
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(39, 174, 96, 0.3);
}

.response-time,
.last-updated,
.availability,
.hours,
.booking-options,
.coverage-main {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.phone-display,
.phone-large {
  font-size: 28px;
  font-weight: 700;
  color: #2C5F8D;
  text-align: center;
  margin: 20px 0;
}

.stats-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.stats-inline span {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

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

.action-card {
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(44, 95, 141, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.action-card h3 {
  color: #2C5F8D;
  font-size: 20px;
}

/* Text & Image Sections
   ========================================================================== */
.company-story,
.service-process,
.warranty,
.geographic-coverage,
.client-satisfaction,
.consultation-cta,
.contact-reminder,
.contact-dpo {
  background: #FFFFFF;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.mission-vision {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.text-section {
  background: rgba(44, 95, 141, 0.05);
  padding: 24px;
  border-radius: 16px;
}

.text-section h3 {
  color: #E67E22;
  font-size: 20px;
  margin-bottom: 12px;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.locations-list p {
  background: rgba(44, 95, 141, 0.05);
  padding: 12px 16px;
  border-radius: 12px;
  color: #666666;
  font-size: 14px;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.brands-list span {
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.1);
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.brands-list span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

/* CTA Sections
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A4068 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 60px;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  margin: 16px auto;
}

/* Footer
   ========================================================================== */
footer {
  background: linear-gradient(135deg, #2C5F8D 0%, #1A4068 100%);
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

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

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

.footer-column a:hover {
  color: #E67E22;
}

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

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

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

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

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

.legal-nav a:hover {
  color: #E67E22;
}

/* Cookie Consent Banner
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-consent-text {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
}

.cookie-btn-reject {
  background: rgba(44, 95, 141, 0.1);
  color: #2C5F8D;
}

.cookie-btn-reject:hover {
  background: rgba(44, 95, 141, 0.2);
}

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

.cookie-btn-settings:hover {
  background: #E67E22;
  color: #FFFFFF;
}

/* Cookie Settings Modal
   ========================================================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  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: 20px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

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

.cookie-modal-header h3 {
  color: #2C5F8D;
  font-size: 22px;
}

.cookie-modal-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #666666;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #2C5F8D;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 16px;
  border-radius: 12px;
  background: rgba(44, 95, 141, 0.05);
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #2C5F8D;
  font-size: 16px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: #27AE60;
}

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

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
  transform: translateX(24px);
}

.cookie-category p {
  color: #666666;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

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

.cookie-modal-buttons .cookie-btn {
  flex: 1;
}

/* Tablet Styles (768px and up)
   ========================================================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-nav {
    display: flex;
    gap: 24px;
  }
  
  .main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #2C5F8D;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
  }
  
  .main-nav a:hover {
    color: #E67E22;
    border-bottom-color: #E67E22;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .header-cta {
    flex-direction: row;
    gap: 16px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: row;
    max-width: 500px;
  }
  
  .trust-indicators {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .benefit-card,
  .service-card,
  .product-card,
  .value-card,
  .warranty-item,
  .method-card,
  .category-card {
    width: calc(50% - 12px);
  }
  
  .step {
    width: calc(50% - 12px);
  }
  
  .stat,
  .stat-card {
    width: calc(50% - 12px);
  }
  
  .testimonial-card {
    width: calc(50% - 12px);
  }
  
  .package-card {
    width: calc(50% - 12px);
  }
  
  .case-card,
  .type-card {
    width: calc(50% - 12px);
  }
  
  .right-card {
    width: calc(50% - 12px);
  }
  
  .action-card {
    width: calc(50% - 12px);
  }
  
  .footer-column {
    width: calc(50% - 16px);
  }
  
  .stats-inline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mission-vision {
    flex-direction: row;
  }
  
  .text-section {
    width: calc(50% - 12px);
  }
  
  .office-details {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .office-detail {
    width: calc(50% - 12px);
  }
  
  .cookie-consent-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-consent-text {
    text-align: left;
    flex: 1;
  }
  
  .cookie-consent-buttons {
    flex-shrink: 0;
  }
}

/* Desktop Styles (1024px and up)
   ========================================================================== */
@media (min-width: 1024px) {
  .benefit-card,
  .service-card,
  .product-card {
    width: calc(33.333% - 16px);
  }
  
  .step {
    width: calc(25% - 18px);
  }
  
  .stat,
  .stat-card {
    width: calc(25% - 18px);
  }
  
  .value-card,
  .warranty-item,
  .method-card,
  .category-card {
    width: calc(33.333% - 16px);
  }
  
  .package-card {
    width: calc(33.333% - 16px);
  }
  
  .team-member {
    width: calc(25% - 18px);
  }
  
  .type-card {
    width: calc(25% - 18px);
  }
  
  .right-card {
    width: calc(25% - 18px);
  }
  
  .footer-column {
    width: calc(25% - 24px);
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  section h2 {
    font-size: 42px;
  }
}

/* Utility Classes
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

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

/* Print Styles
   ========================================================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}
p.hero-subtitle {
    display: contents;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}