/* ==========================================
   STELLA WATT - CREATIVE ARTISTIC CSS
   Modern E-commerce Platform Styles
   ========================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* Typography - Creative Artistic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1B4B8C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1B4B8C 0%, #F47920 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F47920, #1B4B8C);
  border-radius: 2px;
}

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

h4 {
  font-size: 20px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #34495E;
}

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

ul {
  list-style: none;
}

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

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

/* Header - Creative Design */
header {
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(27, 75, 140, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 121, 32, 0.3), transparent);
  transition: left 0.5s ease;
}

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

.main-nav a:hover {
  background: rgba(244, 121, 32, 0.2);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #F47920, #FF8C42);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244, 121, 32, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border-left: 4px solid #F47920;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(244, 121, 32, 0.3);
  transform: translateX(10px);
  border-left-width: 8px;
}

/* Hero Section - Artistic Style */
.hero {
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 50%, #F47920 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.hero p,
.hero .subheadline {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.breadcrumbs a {
  color: #F47920;
  text-decoration: underline;
}

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

/* Buttons - Creative Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #F47920, #FF8C42);
  color: white;
  box-shadow: 0 4px 15px rgba(244, 121, 32, 0.4);
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.6);
}

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

.btn-secondary:hover {
  background: #F47920;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.4);
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-badge {
  background: linear-gradient(135deg, #F47920, #FF8C42);
  color: white;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(244, 121, 32, 0.3);
}

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

.value-proposition,
.services-preview,
.testimonials,
.cta-section,
.services-list,
.company-story,
.mission-vision,
.achievements,
.pricing-packages,
.additional-services,
.guarantees,
.featured-post,
.blog-posts,
.newsletter,
.contact-options,
.office-info,
.contact-form-section,
.departments,
.legal-content,
.confirmation,
.resources {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(27, 75, 140, 0.1);
  margin-bottom: 40px;
  position: relative;
}

.value-proposition::before,
.services-preview::before,
.pricing-packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1B4B8C, #F47920, #1B4B8C);
  border-radius: 20px 20px 0 0;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #F47920;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 121, 32, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(244, 121, 32, 0.2);
  border-left-width: 10px;
}

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

.benefit-card h3 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: #34495E;
  position: relative;
  z-index: 1;
}

/* Stats */
.stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 3px solid #E8F4F8;
}

.stats span {
  font-size: 20px;
  font-weight: 700;
  color: #1B4B8C;
  padding: 16px 32px;
  background: linear-gradient(135deg, #E8F4F8, #ffffff);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(27, 75, 140, 0.1);
  transition: all 0.3s ease;
}

.stats span:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.3);
}

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

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 100%);
  padding: 40px;
  border-radius: 15px;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 121, 32, 0.3), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(244, 121, 32, 0.4);
}

.service-card h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.service-card p {
  color: #E8F4F8;
  font-size: 18px;
  font-weight: 700;
}

/* Service Detail Cards */
.service-detail {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 3px solid #E8F4F8;
  transition: all 0.3s ease;
  position: relative;
}

.service-detail:hover {
  border-color: #F47920;
  transform: translateX(10px);
  box-shadow: -10px 10px 30px rgba(244, 121, 32, 0.2);
}

.service-detail h3 {
  color: #1B4B8C;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 800;
  color: #F47920;
  margin: 20px 0;
}

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

.service-detail ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #34495E;
}

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

.service-detail .implementation {
  font-style: italic;
  color: #7F8C8D;
  margin-top: 20px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  border-top: 5px solid #F47920;
  box-shadow: 0 5px 20px rgba(27, 75, 140, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: rgba(244, 121, 32, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 121, 32, 0.2);
}

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

.testimonial-card cite {
  color: #1B4B8C;
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #F47920;
  margin-top: 24px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 100%);
  color: white;
  text-align: center;
  padding: 80px 40px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 24px;
}

.cta-section h2::after {
  background: #F47920;
  left: 50%;
  transform: translateX(-50%);
}

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

.trust-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
}

/* Footer - Creative Design */
footer {
  background: linear-gradient(135deg, #1B4B8C 0%, #0D2947 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 60px;
}

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

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

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

.footer-col h4 {
  color: #F47920;
  margin-bottom: 20px;
  font-size: 18px;
}

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

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

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

.footer-col nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #F47920;
}

.footer-col nav a:hover {
  color: #F47920;
  padding-left: 20px;
}

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

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

/* Pricing Packages */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.package {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  border: 3px solid #E8F4F8;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.package:hover {
  transform: translateY(-10px);
  border-color: #F47920;
  box-shadow: 0 15px 40px rgba(244, 121, 32, 0.2);
}

.package.featured {
  border-color: #F47920;
  border-width: 5px;
  background: linear-gradient(135deg, #FFF5EE 0%, #ffffff 100%);
  transform: scale(1.05);
}

.package.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.package .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F47920, #FF8C42);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package h3 {
  color: #1B4B8C;
  font-size: 28px;
  margin-bottom: 16px;
}

.package .price {
  font-size: 36px;
  font-weight: 800;
  color: #F47920;
  margin: 20px 0;
}

.package .tagline {
  color: #7F8C8D;
  font-style: italic;
  margin-bottom: 24px;
}

.package ul {
  text-align: left;
  margin: 24px 0;
  flex-grow: 1;
}

.package ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #34495E;
}

.package ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F47920;
  font-weight: 700;
}

.note {
  font-size: 14px;
  color: #7F8C8D;
  text-align: center;
  font-style: italic;
  margin-top: 32px;
}

/* Additional Services & Guarantees */
.additional-services ul,
.guarantees ul,
.departments ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.additional-services ul li,
.guarantees ul li,
.departments ul li {
  padding: 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  border-radius: 10px;
  border-left: 5px solid #F47920;
  transition: all 0.3s ease;
}

.additional-services ul li:hover,
.guarantees ul li:hover,
.departments ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(244, 121, 32, 0.2);
}

/* Blog Posts */
.featured-post {
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 100%);
  color: white;
  text-align: center;
}

.featured-post .badge {
  background: #F47920;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.featured-post h2 {
  color: white;
  margin-bottom: 24px;
}

.featured-post p {
  color: #E8F4F8;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.post-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-top: 5px solid #F47920;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 75, 140, 0.2);
}

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

.meta {
  color: #7F8C8D;
  font-size: 14px;
  margin-top: 16px;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  text-align: center;
}

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

.newsletter-benefits span {
  background: white;
  padding: 12px 24px;
  border-radius: 20px;
  border: 2px solid #F47920;
  color: #1B4B8C;
  font-weight: 600;
}

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

.contact-method {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border-top: 5px solid #F47920;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 121, 32, 0.2);
}

.contact-method h3 {
  color: #1B4B8C;
  margin-bottom: 16px;
}

/* Office Details */
.office-details {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #F47920;
}

.office-details p {
  margin-bottom: 12px;
}

.office-details .hours {
  color: #1B4B8C;
  font-weight: 600;
}

/* Form Note */
.form-note {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 10px;
  border-left: 5px solid #F47920;
  margin-top: 24px;
}

/* Legal Content */
.legal-content h2 {
  color: #1B4B8C;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.update-date,
.effective-date {
  color: #7F8C8D;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* Company Story */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
  background: linear-gradient(135deg, #F47920, #FF8C42);
  color: white;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(244, 121, 32, 0.4);
}

/* Mission Vision Values */
.mission,
.vision,
.values {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 24px;
  border-left: 5px solid #F47920;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.values ul li {
  padding-left: 30px;
  position: relative;
}

.values ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #F47920;
  font-size: 18px;
}

/* Achievements Grid */
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.achievements-grid div {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: linear-gradient(135deg, #1B4B8C, #2C5AA0);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.achievements-grid div:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #F47920, #FF8C42);
  box-shadow: 0 10px 30px rgba(244, 121, 32, 0.4);
}

/* Confirmation Page */
.confirmation-message {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 3px solid #F47920;
  margin-bottom: 40px;
}

.next-steps {
  background: white;
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid #1B4B8C;
  margin-bottom: 40px;
}

.next-steps ol {
  margin-top: 24px;
  padding-left: 20px;
}

.next-steps ol li {
  margin-bottom: 16px;
  padding-left: 16px;
  color: #34495E;
  line-height: 1.8;
}

.resources ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.resources ul li {
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #F47920;
  transition: all 0.3s ease;
}

.resources ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(244, 121, 32, 0.2);
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4B8C 0%, #2C5AA0 100%);
  color: white;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background: linear-gradient(135deg, #F47920, #FF8C42);
  color: white;
}

#accept-cookies:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(244, 121, 32, 0.5);
}

#reject-cookies {
  background: transparent;
  color: white;
  border: 2px solid white;
}

#reject-cookies:hover {
  background: white;
  color: #1B4B8C;
}

#cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #7F8C8D;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #ffffff 100%);
  border-radius: 10px;
  border-left: 5px solid #1B4B8C;
}

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

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

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

.modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p,
  .hero .subheadline {
    font-size: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Grids - All to single column on mobile */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .packages-grid,
  .contact-grid,
  .posts-grid,
  .achievements-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .package,
  .contact-method,
  .post-card,
  .milestone {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .package.featured {
    transform: scale(1);
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats span {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Sections */
  section,
  .value-proposition,
  .services-preview,
  .testimonials,
  .cta-section,
  .services-list,
  .company-story,
  .mission-vision,
  .achievements,
  .pricing-packages {
    padding: 40px 20px;
  }
  
  /* Cookie Consent */
  #cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .benefit-card,
  .service-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .package,
  .contact-method {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
}

/* Print Styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-section,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  * {
    box-shadow: none !important;
  }
}

/* Accessibility Improvements */
.btn-primary:focus,
.btn-secondary:focus,
button:focus,
a:focus {
  outline: 3px solid #F47920;
  outline-offset: 3px;
}

/* Smooth Animations */
.benefit-card,
.service-card,
.testimonial-card,
.package,
.post-card,
.contact-method,
.milestone {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}