/* ===================================
   IKIGAI AUTO PARTS - MAIN STYLES
   =================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --primary-navy: #1F3044;
  --secondary-orange: #FB9039;
  --accent-gray: #646C79;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-gray: #2A2A2A;

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #1F3044 0%, #2A3F5A 100%);
  --gradient-orange: linear-gradient(135deg, #FB9039 0%, #FF7A1A 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-width: 1200px;
  --card-padding: 30px;
  --grid-gap: 30px;

  /* Transitions */
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  zoom: 0.8;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-orange);
}

.section-title p {
  color: var(--accent-gray);
  font-size: 18px;
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: #2A3F5A;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-outline-dark:hover {
  background: var(--primary-navy);
  color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.logo span {
  color: var(--secondary-orange);
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 15px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-orange);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  flex-direction: column;
  gap: 0;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content a {
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: var(--light-gray);
  color: var(--secondary-orange);
}

.dropdown-content a::after {
  display: none;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-contact:hover {
  background: #20BA5A;
  transform: scale(1.05);
}

.nav-contact i {
  font-size: 20px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-navy);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  margin-top: 70px;
  position: relative;
  height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  background: var(--gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-slide:nth-child(1)::before {
  background-image: url('../images/ikigai-banner-clean.jpg');
}

.hero-slide:nth-child(2)::before {
  background-image: url('../images/home-banner-new-1.png');
}

.hero-slide:nth-child(3)::before {
  background-image: url('../images/home-banner-new-2.jpg');
}

/* Main Slide Specific Styles */
/* Main Slide Specific Styles - REMOVED for Center Alignment */
/* The main slide will now follow default center alignment */

/* Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 18px;
}

.hero-arrow:hover {
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-tag {
  display: inline-block;
  background: var(--secondary-orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--secondary-orange);
  width: 30px;
  border-radius: 6px;
}

/* ===== FEATURE CARDS ===== */
.features {
  background: var(--light-gray);
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary-orange);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FB9039 0%, #FF7A1A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--white);
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.feature-card p {
  color: var(--accent-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.feature-card a {
  color: var(--secondary-orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.feature-card a:hover {
  gap: 10px;
}

/* ===== STATS SECTION ===== */
.stats {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  color: var(--secondary-orange);
  font-size: 48px;
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--white);
  font-size: 18px;
  opacity: 0.9;
}

/* ===== BRANDS SECTION ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* ===== MARQUEE BRANDS ===== */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-content .brand-card {
  margin: 0 20px;
  width: 160px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.marquee-content img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
  transition: var(--transition);
}

.marquee-content .brand-card:hover img {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-card {
  background: var(--light-gray);
  padding: 15px;
  /* Reduced padding from 30px */
  border-radius: 8px;
  text-align: center;
  /* Removed font properties */
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  /* Slightly more rectangular to fit wider logos better */
  background: white;
  /* Make background white for logos */
}

.brand-card img {
  max-width: 90%;
  /* Increased from 80% to make logos larger */
  max-height: 90%;
  /* Increased from 80% */
  object-fit: contain;
  transition: var(--transition);
}

.brand-card:hover {
  border-color: var(--secondary-orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.brand-card:hover img {
  transform: scale(1.1);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--grid-gap);
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 48px;
  color: var(--secondary-orange);
  margin-bottom: 20px;
}

.service-card h4 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--accent-gray);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.step-card h4 {
  margin-bottom: 10px;
}

.step-card p {
  color: var(--accent-gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--gradient-navy);
  color: var(--white);
}

.testimonials .section-title h2,
.testimonials .section-title p {
  color: var(--white);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.testimonial-stars {
  color: var(--secondary-orange);
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-meta {
  opacity: 0.8;
  font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--gradient-orange);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary-navy);
}

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--secondary-orange);
  padding-left: 5px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 10px;
  border-radius: 8px;
  width: fit-content;
}

/* Hero Split Layout for Video */
.hero-content-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-video {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

.hero-video video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
  .hero-content-split {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .hero-video {
    width: 100%;
    max-width: 400px;
  }
}

.footer-logo img {
  height: 85px;
  width: auto;
  display: block;
}

.footer-logo span {
  color: var(--secondary-orange);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(rgba(31, 48, 68, 0.9), rgba(42, 63, 90, 0.9)), url('../images/page-hero-bg.svg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 20px 80px;
  text-align: center;
  margin-top: 70px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb a:hover {
  color: var(--secondary-orange);
}

/* ===== CONTACT FORM ===== */
.contact-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
}

.contact-info-item {
  margin-bottom: 25px;
}

.contact-info-item h4 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-item p {
  color: var(--accent-gray);
  margin-bottom: 5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOUNDER MESSAGE SECTION ===== */
.founder-message {
  background: var(--white);
  padding: var(--section-padding) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start;
}

/* Founder Image Column */
.founder-image-wrapper {
  position: relative;
}

.founder-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(31, 48, 68, 0.15);
  aspect-ratio: 3/4;
}

.founder-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: var(--transition);
}

.founder-image-container:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.founder-accent-bar {
  position: absolute;
  top: 30px;
  left: -10px;
  width: 4px;
  height: 120px;
  background: var(--secondary-orange);
  border-radius: 2px;
  z-index: 1;
}

.founder-credentials {
  margin-top: 24px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: 12px;
  text-align: center;
}

.founder-credentials h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.founder-credentials p {
  font-size: 14px;
  color: var(--accent-gray);
  margin-bottom: 16px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  color: var(--secondary-orange);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.founder-linkedin:hover {
  background: var(--secondary-orange);
  color: var(--white);
  transform: scale(1.1);
}

/* Message Content Column */
.founder-message-content {
  position: relative;
}

.founder-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(251, 144, 57, 0.1);
  border-left: 4px solid var(--secondary-orange);
  color: var(--secondary-orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.founder-message-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 36px;
}

.message-text-wrapper {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--light-gray);
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -6px;
  font-size: 48px;
  color: rgba(251, 144, 57, 0.15);
  line-height: 1;
}

.message-opening {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.5;
  margin-bottom: 28px;
}

.message-text-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}

.message-text-wrapper p strong {
  color: var(--primary-navy);
  font-weight: 600;
}

.founder-signature-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 24px;
}

.founder-signature-img {
  width: 160px;
  height: auto;
  filter: brightness(0.2);
}

.founder-signature-name strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.founder-signature-name span {
  display: block;
  font-size: 14px;
  color: var(--accent-gray);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-message-content h2 {
    font-size: 32px;
  }

  .message-opening {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: var(--shadow-md);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-contact {
    margin-top: 20px;
  }

  .hero {
    height: 600px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .features-grid,
  .services-grid,
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .founder-image-container {
    max-height: 500px;
  }

  .message-text-wrapper {
    padding-left: 20px;
  }

  .founder-message-content h2 {
    font-size: 28px;
  }

  .message-opening {
    font-size: 18px;
  }

  .message-text-wrapper p {
    font-size: 15px;
  }

  .founder-signature-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 36px;
  }
}

/ *   G l o b a l   R e a c h   M a p   * /     . m a p - c o n t a i n e r    {
               p o s i t i o n :    r e l a t i v e ;
               m a x - w i d t h :    1 0 0 0 p x ;
               m a r g i n :    4 0 p x   a u t o   0 ;
       
}

         . g l o b a l - m a p    {
               w i d t h :    1 0 0 % ;
               h e i g h t :    a u t o ;
               o p a c i t y :    0 . 9 ;
               d i s p l a y :    b l o c k ;
       
}

         . m a p - d o t    {
               p o s i t i o n :    a b s o l u t e ;
               w i d t h :    1 0 p x ;
               h e i g h t :    1 0 p x ;
               b a c k g r o u n d - c o l o r :    v a r ( - - p r i m a r y - n a v y ) ;
               b o r d e r - r a d i u s :    5 0 % ;
               t r a n s f o r m :    t r a n s l a t e ( - 5 0 % ,    - 5 0 % ) ;
               b o x - s h a d o w :    0   0   1 0 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 2 ) ;
       
}

         . m a p - d o t : : a f t e r    {
               c o n t e n t :    ' '  ;
               p o s i t i o n :    a b s o l u t e ;
               t o p :    5 0 % ;
               l e f t :    5 0 % ;
               t r a n s f o r m :    t r a n s l a t e ( - 5 0 % ,    - 5 0 % ) ;
               w i d t h :    1 0 0 % ;
               h e i g h t :    1 0 0 % ;
               b a c k g r o u n d - c o l o r :    v a r ( - - s e c o n d a r y - o r a n g e ) ;
               b o r d e r - r a d i u s :    5 0 % ;
               z - i n d e x :    - 1 ;
               a n i m a t i o n :    p u l s e - r i n g   2 s   c u b i c - b e z i e r ( 0 . 2 1 5 ,    0 . 6 1 ,    0 . 3 5 5 ,    1 )   i n f i n i t e ;
       
}

         @ k e y f r a m e s   p u l s e - r i n g    {
               0 %    {
                         t r a n s f o r m :    t r a n s l a t e ( - 5 0 % ,    - 5 0 % )   s c a l e ( 1 ) ;
                         o p a c i t y :    0 . 8 ;
                 
  }

                   1 0 0 %    {
                         t r a n s f o r m :    t r a n s l a t e ( - 5 0 % ,    - 5 0 % )   s c a l e ( 5 ) ;
                         o p a c i t y :    0 ;
                 
  }

       
}

     