/* ============================================
   STREAMS OF JOY GLOBAL LOGISTICS - STYLES
   ============================================ */

/* CSS Variables */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(270, 30%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(270, 30%, 15%);
  --primary: hsl(270, 60%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(270, 40%, 95%);
  --secondary-foreground: hsl(270, 60%, 40%);
  --muted: hsl(270, 20%, 96%);
  --muted-foreground: hsl(270, 15%, 45%);
  --accent: hsl(280, 70%, 60%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(270, 20%, 90%);
  --input: hsl(270, 20%, 90%);
  --ring: hsl(270, 60%, 55%);
  --radius: 0.5rem;
  --gradient-primary: linear-gradient(135deg, hsl(270, 60%, 55%) 0%, hsl(280, 70%, 60%) 100%);
  --gradient-dark: linear-gradient(135deg, hsl(270, 40%, 20%) 0%, hsl(270, 30%, 10%) 100%);
  --shadow-soft: 0 4px 20px -4px hsla(270, 60%, 55%, 0.25);
  --shadow-strong: 0 10px 40px -10px hsla(270, 60%, 55%, 0.35);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: white;
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

/* Initial state */
.section-header {
  opacity: 0;
  transform: translateX(-50px); /* start from left */
  transition: all 1s ease-out; /* smooth transition */
}

/* Active state - animate into view */
.section-header.animate {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  display: none;
}

@media (min-width: 768px) {
  .top-bar { display: block; }
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-link svg {
  width: 1rem;
  height: 1rem;
}

.tagline {
  font-weight: 500;
}

.main-nav {
  padding: 1rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-img { height: 5rem; width: auto; } @media (min-width: 768px) { .logo-img { height: 4rem; } } 

.logo-text {
  display: none;
  flex-direction: column;
  border-left: 2px solid rgba(var(--primary), 0.3);
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .logo-text { display: flex; }
}

.company-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;

  background: linear-gradient(
    to bottom,
    #6f1a8a 0%,   /* dark purple (top) */
    #9c2bbf 45%,  /* rich purple */
    #d14be3 100%  /* light pink-purple (bottom) */
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.company-subtitle {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .company-subtitle { font-size: 1rem; }
}

.company-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 0.25rem;
  display: none;
}

@media (min-width: 768px) {
  .company-tagline { display: block; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: rgba(var(--foreground), 0.8);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(var(--primary), 0.1);
}

.dropdown-icon-box {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary), 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.dropdown-icon-box svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-icon-box {
  background: var(--primary);
  transform: scale(1.1);
}

.dropdown-item:hover .dropdown-icon-box svg {
  color: var(--primary-foreground);
}

.dropdown-item span {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.dropdown-item:hover span {
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.mobile-nav.open {
  display: flex;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  color: var(--foreground);
}

.mobile-nav-link:hover {
  background: rgba(var(--primary), 0.1);
}

.mobile-dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
}

.mobile-dropdown-menu.open {
  display: block;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}

.mobile-dropdown-item:hover {
  background: rgba(var(--primary), 0.1);
}

.mobile-dropdown-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.mobile-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    hsla(270, 60%, 20%, 0.5) 0%,   /* reduce opacity from 0.85 → 0.5 */
    hsla(270, 40%, 15%, 0.55) 100% /* reduce opacity from 0.9 → 0.55 */
  );
}

@media (min-width: 768px) {
  .hero { padding-top: 8rem; }
}


.hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
}

.hero-text {
  max-width: 48rem;
}

.hero-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-icons svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.hero-icons span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-left: 0.5rem;
}

.hero-title {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}

.text-accent {
  color: var(--accent);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-number { font-size: 2.25rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 5rem 0;
  background: var(--secondary);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  background: linear-gradient(135deg, rgba(var(--primary), 0.1), rgba(var(--accent), 0.1));
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .about-image-wrapper { padding: 3rem; }
}

.about-logo {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
}

@media (min-width: 768px) {
  .experience-badge { display: block; }
}

.badge-number {
  font-size: 1.875rem;
  font-weight: 700;
}

.badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.about-content .section-label {
  margin-bottom: 0.5rem;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.about-text-secondary {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.highlights-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.highlight-item span {
  color: var(--foreground);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 5rem 0;
  background: var(--background);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-card { padding: 2rem; }
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(var(--primary), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.5s ease;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: rotate(6deg) scale(1.1);
}

.service-card:hover .service-icon svg {
  color: var(--primary-foreground);
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary);
}

.service-description {
  color: var(--muted-foreground);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(var(--primary), 0.05), rgba(var(--accent), 0.05));
}

.reasons-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
}

.reason-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--background);
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.reason-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.reason-title {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.reason-description {
  color: var(--muted-foreground);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 5rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form-wrapper {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .contact-form-wrapper { padding: 2rem; }
}

.form-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: 0.5rem;
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary), 0.15);
}

.form-group textarea {
  resize: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-cards {
  display: grid;
}

.info-card {
  background: var(--secondary);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.info-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.info-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.map-container {
  background: var(--secondary);
  border-radius: 0.75rem;
  overflow: hidden;
  height: 16rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--foreground);
  color: var(--background);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 3.5rem;
  filter: brightness(0) invert(1);
}

.footer-logo-text h3 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.footer-subtitle {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 500;
}

.footer-tagline {
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-services a {
  opacity: 0.7;
  transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-newsletter p {
  opacity: 0.7;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--background);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.875rem;
  text-align: center;
}

.scroll-top {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background: var(--accent);
}

.scroll-top svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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


/* Mobile Brand Header */
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-logo {
  width: 12px;
  height: auto;
}

.mobile-logo-text {
  line-height: 1.2;
}

.mobile-company-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.mobile-company-subtitle {
  font-size: 0.75rem;
  color: #cfd8dc;
  margin: 0;
}

.mobile-company-tagline {
  font-size: 0.7rem;
  color: #9fb3c8;
  margin: 0;
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}


.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.8s ease-in-out,
    transform 6s linear;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

  /* ===============================
   HERO – ALL MOBILE (iOS SAFE)
   =============================== */

/* Fix iOS 100vh issue */
.hero {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Prevent iOS text zoom */
html {
  -webkit-text-size-adjust: 100%;
}

/* Slideshow background fix for iOS */
.hero-bg,
.slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* iOS Safari overflow fix */
.hero,
.hero-bg {
  overflow: hidden;
}

/* ===============================
   MOBILE LAYOUT
   =============================== */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .hero {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero-content {
    min-height: calc(100vh - env(safe-area-inset-top));
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px;
  }

  /* Stats */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}


/* ============================
   HIDE MAP ON MOBILE (ALL iOS)
   ============================ */

@media (max-width: 768px) {

  /* Hide map + markers */
  .dotmap-container {
    display: none !important;
  }

  /* Tooltip not needed on mobile */
  .tooltip {
    display: none !important;
  }

  /* Cards full width */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    cursor: default;
  }
}

