/* =================================================================
   GLINT VISION - CREATIVE ARTISTIC DESIGN SYSTEM
   Modern Digital Marketing Agency with Vibrant Creative Aesthetic
   ================================================================= */

/* 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: #2d2d2d;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
}

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

h2 {
  font-size: 36px;
  color: #2C5F8D;
  margin-bottom: 24px;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 100%);
  margin-top: 16px;
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2C5F8D;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  color: #2C5F8D;
  margin-bottom: 12px;
}

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

ul, ol {
  margin-bottom: 20px;
  margin-left: 24px;
}

li {
  margin-bottom: 12px;
  color: #4a4a4a;
  line-height: 1.7;
}

blockquote {
  border-left: 5px solid #F4A261;
  padding: 20px 24px;
  margin: 32px 0;
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  font-style: italic;
  color: #2d2d2d;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.08);
}

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

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

/* VIBRANT BUTTON STYLES */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44, 95, 141, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #F4A261 0%, #e88d44 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(244, 162, 97, 0.4);
}

/* HEADER STYLES */
header {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #F4A261;
}

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

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

.logo:hover img {
  transform: scale(1.05) rotate(2deg);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2C5F8D;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 100%);
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 100%);
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 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 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mobile-nav a:hover {
  border-left-color: #F4A261;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* HERO SECTION - VIBRANT & CREATIVE */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 50%, #2C5F8D 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 241, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.hero-subheadline {
  font-size: 20px;
  color: #E9F1F7;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-indicators span {
  font-weight: 600;
  color: #F4A261;
  font-size: 14px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

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

/* VALUE PROPOSITION - CREATIVE CARDS */
.value-proposition {
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

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

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 95, 141, 0.2);
  border-color: #F4A261;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

/* SERVICES OVERVIEW - VIBRANT GRID */
.services-overview {
  background: #ffffff;
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #4a4a4a;
  font-size: 18px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #E9F1F7 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #E9F1F7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2C5F8D 0%, #F4A261 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.15);
  border-color: #F4A261;
}

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

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

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

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #F4A261;
  margin-top: 12px;
}

.services-overview > .container > .btn {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

/* RESULTS SECTION - COLORFUL STATS */
.results {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 100%);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.results h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.results h2::after {
  background: linear-gradient(90deg, #F4A261 0%, #ffffff 100%);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: #F4A261;
}

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

.stat-card p {
  color: #E9F1F7;
  font-size: 15px;
  line-height: 1.5;
}

/* TESTIMONIALS - ARTISTIC CARDS */
.testimonials {
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 60px 20px;
  border-radius: 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.1);
  border-left: 5px solid #F4A261;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 95, 141, 0.15);
}

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

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

/* CTA BANNER - VIBRANT */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #F4A261 0%, #e88d44 100%);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before, .cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.cta-banner h2, .cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner h2::after, .cta-section h2::after {
  background: #ffffff;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.cta-banner p, .cta-section p {
  color: #ffffff;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta-buttons .btn-secondary {
  background: #ffffff;
  color: #F4A261;
  border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.guarantee {
  font-size: 14px;
  color: #ffffff;
  margin-top: 24px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* FOOTER - CREATIVE LAYOUT */
footer {
  background: linear-gradient(135deg, #1a4666 0%, #0d2838 100%);
  color: #E9F1F7;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #F4A261 0%, #2C5F8D 50%, #F4A261 100%);
}

.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-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

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

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

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(233, 241, 247, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* SERVICE DETAIL PAGES */
.service-detail {
  background: #ffffff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  border-left: 5px solid #F4A261;
}

.service-detail h2 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.service-detail .price {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #F4A261;
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 12px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.service-detail h3 {
  color: #2C5F8D;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* CASE STUDY STYLES */
.case-study {
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.1);
}

.case-study h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

.case-study blockquote {
  background: #ffffff;
  border-left-color: #F4A261;
  margin-top: 32px;
  font-size: 18px;
  color: #2d2d2d;
}

/* BLOG STYLES */
.featured-post {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 100%);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.featured-post h2 {
  color: #F4A261;
  margin-bottom: 32px;
}

.featured-post h2::after {
  background: #F4A261;
}

.featured-post article h3 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post article p {
  color: #E9F1F7;
  font-size: 18px;
  margin-bottom: 16px;
}

.featured-post article span {
  color: #F4A261;
  font-size: 14px;
  font-weight: 600;
}

.blog-grid {
  padding: 40px 20px;
}

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

.post-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #E9F1F7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.15);
  border-color: #F4A261;
}

.post-card h3 {
  color: #2C5F8D;
  font-size: 22px;
}

.post-card p {
  color: #4a4a4a;
  flex-grow: 1;
}

.post-card span {
  color: #F4A261;
  font-weight: 600;
  font-size: 13px;
}

/* NEWSLETTER SECTION */
.newsletter {
  background: linear-gradient(135deg, #F4A261 0%, #e88d44 100%);
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter h2::after {
  background: #ffffff;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.newsletter p {
  color: #ffffff;
  font-size: 18px;
}

/* CONTACT PAGE STYLES */
.contact-options {
  padding: 40px 20px;
}

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

.option-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #E9F1F7;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.15);
  border-color: #F4A261;
}

.option-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

.contact-info, .faq, .next-steps {
  padding: 40px 20px;
}

.info-block {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.06);
  margin-bottom: 20px;
  border-left: 4px solid #F4A261;
}

.faq-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 18px;
}

.next-steps ol {
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.next-steps li {
  color: #2d2d2d;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 10px;
}

/* LEGAL PAGES */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  color: #2C5F8D;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #2C5F8D;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #2C5F8D;
  font-size: 22px;
  margin-top: 32px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 40px;
}

.thank-you-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.confirmation, .what-next, .resources {
  padding: 40px 20px;
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #E9F1F7;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.15);
  border-color: #F4A261;
}

.resource-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.testimonial-snippet {
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
}

.testimonial-snippet blockquote {
  font-size: 20px;
  color: #2d2d2d;
  max-width: 800px;
  margin: 0 auto 24px;
  border: none;
  background: none;
  box-shadow: none;
}

.contact-reminder {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}

/* INTRO SECTIONS */
.intro, .services-intro {
  padding: 40px 20px;
  text-align: center;
}

.intro p, .services-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #4a4a4a;
}

.intro .stats-grid {
  margin-top: 40px;
}

.intro .stat {
  text-align: center;
}

.intro .stat span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #F4A261;
  margin-bottom: 12px;
}

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

/* MISSION, STORY, TEAM SECTIONS */
.mission, .story, .team {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.mission h2, .story h2, .team h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

.mission h3 {
  color: #2C5F8D;
  margin-top: 32px;
  margin-bottom: 20px;
}

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

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: linear-gradient(135deg, #E9F1F7 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid #E9F1F7;
}

.team-member:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.15);
  border-color: #F4A261;
}

.team-member h3 {
  color: #2C5F8D;
  margin-bottom: 8px;
}

.team-member p {
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member span {
  color: #F4A261;
  font-size: 14px;
  font-style: italic;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4666 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #F4A261;
}

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

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

.cookie-content p {
  color: #E9F1F7;
  margin: 0;
  flex: 1 1 300px;
  font-size: 15px;
}

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

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

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

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

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

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

.cookie-category {
  padding: 20px;
  background: #E9F1F7;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin: 8px 0 0 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: #2C5F8D;
}

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

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .value-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .posts-grid,
  .options-grid,
  .resource-grid,
  .team-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .post-card,
  .option-card,
  .resource-card,
  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  section {
    padding: 32px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .post-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mb-small {
  margin-bottom: 16px;
}

.mb-medium {
  margin-bottom: 32px;
}

.mb-large {
  margin-bottom: 48px;
}

/* ACCESSIBILITY */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #F4A261;
  outline-offset: 2px;
}

/* ANIMATIONS */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: slideInUp 0.6s ease-out;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero {
    background: #2C5F8D !important;
    color: #000000 !important;
  }
}