/* Miki Matbaa - Premium Landing Page */

/* NOTE: Fonts loaded via <link> in HTML <head> for better performance */

/* CSS Custom Properties - Premium Color Palette */
:root {
  /* Premium Primary Colors */
  --premium-burgundy: #550b14;
  --premium-burgundy-dark: #3d0810;
  --premium-burgundy-light: #721520;
  --premium-taupe: #7e6961;
  --premium-taupe-light: #a08982;
  --premium-taupe-dark: #5d4e48;

  /* Premium Neutral Colors */
  --white: #FFFFFF;
  --off-white: #f8f8f7;
  --cream-light: #cbc0b2;
  --taupe-medium: #7e6961;
  --taupe-dark: #5d4e48;

  /* Legacy color mappings for compatibility */
  --mickey-red: var(--premium-burgundy);
  --mickey-red-dark: var(--premium-burgundy-dark);
  --mickey-red-light: var(--premium-burgundy-light);
  --mickey-yellow: var(--cream-light);
  --mickey-yellow-bright: var(--cream-light);
  --mickey-black: var(--taupe-dark);
  --mickey-black-soft: var(--taupe-medium);
  --gray-light: #f0ede8;
  --gray-medium: var(--taupe-medium);
  --gray-dark: var(--taupe-dark);

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, var(--premium-burgundy) 0%, var(--premium-taupe) 100%);
  --gradient-dark: linear-gradient(135deg, var(--premium-burgundy-dark) 0%, var(--premium-burgundy) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(85, 11, 20, 0.85) 0%, rgba(126, 105, 97, 0.75) 50%, rgba(85, 11, 20, 0.85) 100%);

  /* 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 32px rgba(0, 0, 0, 0.2);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 3rem;
  --font-size-hero: 4rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mickey-black);
}

h1 {
  font-size: var(--font-size-hero);
  font-weight: 800;
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar .container {
  display: flex;
  justify-content: flex-start;
  /* Change from space-between to allow for manual gap control */
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  max-width: 1400px;
  /* Slightly wider for better spacing */
  width: 100%;
}

.logo-link {
  margin-right: auto;
  /* Push navigation to the right */
}

.logo {
  height: 50px;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 600;
  font-family: var(--font-secondary);
  color: var(--mickey-black);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  /* Prevent menu item wrapping */
}

.nav-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-link-current {
  background: rgba(85, 11, 20, 0.08);
  color: var(--premium-burgundy) !important;
}

/* Navigation CTA Button */
.nav-cta {
  background: var(--premium-burgundy) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 2px solid var(--premium-burgundy) !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  background: white !important;
  color: var(--premium-burgundy) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-dropdown:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mega-menu-item:hover {
  background: linear-gradient(90deg, rgba(85, 11, 20, 0.08) 0%, transparent 100%);
  color: var(--premium-burgundy);
  border-left-color: var(--premium-burgundy);
  padding-left: 28px;
}

/* Submenu Wrapper */
.mega-submenu-wrapper {
  position: relative;
}

.has-submenu {
  cursor: pointer;
}

.submenu-arrow {
  transition: transform 0.2s ease;
}

.mega-submenu-wrapper:hover .submenu-arrow {
  transform: translateX(3px);
}

/* Submenu */
.mega-submenu {
  position: absolute;
  top: -12px;
  left: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 180px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.mega-submenu::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 20px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
  filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.05));
}

.mega-submenu-wrapper:hover .mega-submenu {
  opacity: 1;
  visibility: visible;
}

.mega-submenu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mega-submenu a:hover {
  background: linear-gradient(90deg, rgba(85, 11, 20, 0.08) 0%, transparent 100%);
  color: var(--premium-burgundy);
  border-left-color: var(--premium-burgundy);
  padding-left: 24px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slider-dots .dot.active {
  background: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 560px;
  padding: var(--spacing-md);
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  opacity: 0.95;
  max-width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.2s ease;
}

.hero-support {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-lg);
  opacity: 0.85;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1.3s ease;
}

.btn-group {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.btn {
  padding: 1.15rem 2.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-block;
}

.btn-primary {
  background: var(--white);
  color: var(--premium-burgundy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: var(--premium-burgundy);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Mickey Decorative Element */
.mickey-ears {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100px;
  height: 100px;
  opacity: 0.1;
  pointer-events: none;
}

.mickey-ears::before,
.mickey-ears::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
}

.mickey-ears::before {
  top: -30px;
  left: -20px;
}

.mickey-ears::after {
  top: -30px;
  right: -20px;
}

/* Services Section */
.services {
  padding: 88px 0;
  background: #FAFAFA;
  position: relative;
}

.services .container {
  max-width: 1150px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 11px 20px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.15;
  color: #2B2B2B;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #5A5A5A;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: var(--spacing-lg);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #EDEDED;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

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

.service-card:hover {
  transform: translateY(-10px);
  border-color: #E2E2E2;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 110px;
  height: 110px;
  margin-bottom: 1.5rem;
  padding: 18px;
  background: #F6F6F6;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  color: #2B2B2B;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.service-description {
  color: #5A5A5A;
  font-size: 15.5px;
  line-height: 1.7;
}

/* Solutions Section */
.solutions-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #EDEDED;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.solutions-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2B2B2B;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

/* Products Section */
.products {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.products .section-header {
  margin-bottom: 24px;
}

.products .section-subtitle {
  margin-bottom: 0;
}

.products .solutions-section {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.products .solutions-grid {
  max-width: 700px;
  gap: 40px;
}

.products .solutions-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Products Button Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: white;
  border: 2px solid var(--premium-burgundy);
  color: var(--premium-burgundy);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  line-height: 1.2;
}

.product-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
}

.product-btn:not(.product-btn-dropdown) {
  padding-left: 40px;
  padding-right: 40px;
}

.product-btn:not(.product-btn-dropdown) .product-icon {
  position: absolute;
  left: 18px;
}

.product-btn:hover {
  background: var(--premium-burgundy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.25);
}

/* Product Dropdown */
.product-dropdown {
  position: relative;
}

.product-btn-dropdown {
  font-family: inherit;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
}

.product-btn-dropdown .product-icon {
  position: absolute;
  left: 18px;
}

.product-btn-content {
  display: inline-block;
  position: relative;
}

.dropdown-arrow {
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.product-dropdown:hover .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.product-dropdown-menu {
  position: absolute;
  top: 0;
  left: calc(100% + 12px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  padding: 16px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  border: 1px solid rgba(114, 47, 55, 0.1);
}

.product-dropdown-menu::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
  filter: drop-shadow(-3px 0 3px rgba(0, 0, 0, 0.1));
}

.product-dropdown:hover .product-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.product-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: #2B2B2B;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.product-dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(114, 47, 55, 0.08) 0%, transparent 100%);
  color: var(--premium-burgundy);
  border-left-color: var(--premium-burgundy);
  padding-left: 28px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .products-grid {
    gap: 12px;
  }

  .product-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .product-btn:not(.product-btn-dropdown) {
    padding-left: 34px;
    padding-right: 34px;
  }

  .product-btn:not(.product-btn-dropdown) .product-icon {
    left: 14px;
  }

  .product-btn-dropdown {
    padding-left: 34px;
    padding-right: 34px;
  }

  .product-btn-dropdown .product-icon {
    left: 14px;
  }

  .product-dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 20px 20px 0 0;
    min-width: 100%;
    padding: 20px 0;
  }
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.solutions-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.solutions-list li {
  color: #5A5A5A;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.solutions-list li:last-child {
  margin-bottom: 0;
}

/* Solutions List Links */

/* Solutions List Links */
.solutions-list a {
  color: #5A5A5A;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.solutions-list a:hover {
  color: var(--premium-burgundy);
  transform: translateX(4px);
}


/* Responsive: Mobile single column */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-section {
    margin-top: 40px;
    padding-top: 28px;
  }
}


/* Press Section - Basında Biz */
.press {
  padding: var(--spacing-xl) 0;
  background: #FAFAFA;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.press-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-left: 4px solid var(--mickey-red);
  display: flex;
  flex-direction: column;
}

.press-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--mickey-yellow);
}

.press-source {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
}

.press-logo {
  font-size: var(--font-size-xl);
}

.press-name {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--mickey-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-title {
  font-size: var(--font-size-lg);
  color: var(--mickey-black);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.press-excerpt {
  color: var(--gray-medium);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.press-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-light);
}

.press-date {
  font-size: var(--font-size-xs);
  color: var(--gray-medium);
}

.press-link {
  font-weight: 600;
  color: var(--mickey-red);
  font-size: var(--font-size-sm);
  transition: var(--transition-fast);
}

.press-link:hover {
  color: var(--mickey-yellow);
  transform: translateX(4px);
  display: inline-block;
}

/* Blog Highlight Section */
.blog-highlight {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f7 100%);
}

.blog-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: var(--spacing-lg);
}

.blog-highlight-card {
  background: var(--white);
  border: 1px solid rgba(85, 11, 20, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.blog-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(85, 11, 20, 0.25);
}

.blog-highlight-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-highlight-card:hover .blog-highlight-media img {
  transform: scale(1.05);
}

.blog-highlight-body {
  padding: 20px 20px 22px;
}

.blog-highlight-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--gray-medium);
  font-weight: 500;
}

.blog-highlight-body h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-highlight-body h3 a {
  color: var(--mickey-black);
}

.blog-highlight-body h3 a:hover {
  color: var(--premium-burgundy);
}

.blog-highlight-body p {
  color: #5a5a5a;
  line-height: 1.75;
  margin-bottom: 14px;
}

.blog-highlight-link {
  color: var(--premium-burgundy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.blog-highlight-link:hover {
  color: var(--premium-burgundy-dark);
}

.blog-highlight-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .blog-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-highlight-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-highlight-body {
    padding: 16px 16px 18px;
  }
}

/* About Section */
.about {
  padding: var(--spacing-xl) 0;
  background: #FFFFFF;
}

.about-text-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text-wrapper p {
  font-size: var(--font-size-md);
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-text-wrapper .quote-text {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.highlight-text {
  color: #8B4557;
  font-weight: 600;
  font-style: italic;
  font-size: 1.15em;
}

/* Horizontal Stats Bar */
.about-stats-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--off-white);
  border-radius: var(--radius-lg);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  flex: 1;
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--mickey-red);
  font-family: var(--font-secondary);
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-stats-horizontal {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* Gallery Section */
.gallery {
  padding: var(--spacing-xl) 0;
  background: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  background: var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Contact Section */
.contact {
  padding: var(--spacing-xl) 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-card {
  background: var(--off-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--mickey-red);
  transition: var(--transition-normal);
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  background: rgba(203, 192, 178, 0.3);
  color: var(--taupe-dark);
}

.contact-card h3 {
  font-size: var(--font-size-md);
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.contact-card p {
  margin: 0;
  line-height: 1.8;
}

.contact-card a {
  color: var(--mickey-red);
  font-weight: 600;
}

.contact-card:hover a {
  color: var(--premium-burgundy);
}

.contact-map {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 400px;
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--mickey-yellow);
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-lg);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.footer-section a:hover {
  color: var(--mickey-yellow);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Polka Dot Pattern */
.polka-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--mickey-black) 2px, transparent 2px);
  background-size: 30px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --font-size-hero: 2.5rem;
    --font-size-xxl: 2rem;
    --font-size-xl: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 80px 24px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    gap: 0;
  }

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

  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    border-radius: 0;
  }

  .nav-link:hover {
    background: transparent;
    color: var(--premium-burgundy);
    transform: none;
  }

  .nav-cta {
    margin-top: 20px;
    width: 100% !important;
  }

  /* Hamburger Menu Toggle */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition-normal);
  }

  .hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--premium-burgundy);
    transition: var(--transition-normal);
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--premium-burgundy);
    transition: var(--transition-normal);
  }

  .hamburger::before {
    top: -8px;
  }

  .hamburger::after {
    bottom: -8px;
  }

  .menu-toggle.active .hamburger {
    background: transparent;
  }

  .menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  /* Mobile Dropdown */
  .nav-mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-top: 0;
    width: 100%;
    box-shadow: none;
    background: #fcfcfc;
    border-radius: 0;
  }

  .nav-dropdown.active .nav-mega-menu {
    display: block;
  }

  .mega-menu-content {
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: none;
  }

  .mega-menu-item {
    padding: 10px 15px;
    font-size: 14px;
    border-left: 2px solid transparent;
  }

  .nav-dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .mega-submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: #f8f8f8;
    margin-left: 0;
    border: none;
    border-radius: 0;
  }

  .mega-submenu-wrapper.active .mega-submenu {
    display: block;
  }

  .mega-submenu::before {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero {
    padding-top: 60px;
  }

  .logo {
    height: 40px;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  background: rgba(43, 43, 43, 0.95);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-8px);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  background: #20BA5A;
}

.whatsapp-float svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Email Floating Button */
.email-float {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--premium-burgundy);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(85, 11, 20, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  text-decoration: none;
}

.email-float::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  background: rgba(43, 43, 43, 0.95);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.email-float:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-8px);
}

.email-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 20px rgba(85, 11, 20, 0.3);
  background: #6D0E17;
}

.email-float svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Mobile optimization */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float::before {
    display: none;
  }

  .email-float {
    bottom: 82px;
    right: 24px;
    width: 46px;
    height: 46px;
  }

  .email-float svg {
    width: 24px;
    height: 24px;
  }

  .email-float::before {
    display: none;
  }
}

/* References Section */
.references {
  padding: 100px 0;
  background: #FAFAFA;
  overflow: hidden;
}

.references .section-header {
  margin-bottom: 60px;
}

/* Marquee Container */
.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 15px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.marquee-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Reference Grid (for larger view if needed, or mobile) */
.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Keyframes */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 30px));
    /* Half of the doubled content */
  }
}

/* Responsive Adjustments for References */
@media (max-width: 768px) {
  .marquee-content {
    gap: 30px;
    animation-duration: 30s;
  }

  .marquee-item {
    width: 140px;
    height: 80px;
    padding: 10px;
  }
}

/* Additional Animation Utility */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
