/* 
  Minar İlk Yardım Eğitim Merkezi
  Aesthetics: Modern, premium, clean, medical-inspired (deep blues, whites, calm grays).
*/

:root {
  /* Colors */
  --primary: #E31837;
  /* Minar Red Core */
  --primary-light: #F8425F;
  --secondary: #0A3A69;
  /* Minar Dark Blue Accent */
  --secondary-hover: #082d52;
  --accent: #FF4757;
  /* Bright Red for hover elements */

  --dark: #111827;
  --dark-light: #374151;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --light: #FFFFFF;

  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Layout */
  --container-width: 1440px;
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 24px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark-light);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 60px;
}

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

.mt-5 {
  margin-top: 3rem;
}

.bg-light {
  background-color: var(--light-gray);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  gap: 10px;
  border: 2px solid transparent;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(10, 58, 105, 0.2);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--light);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--light);
  border-color: var(--light);
}

.btn-outline-light:hover {
  background-color: var(--light);
  color: var(--primary);
}

.btn-light {
  background-color: var(--light);
  color: var(--primary);
}

.btn-light:hover {
  background-color: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-block {
  width: 100%;
}

/* Typography Utilities */
.highlight {
  color: var(--secondary);
}

.section {
  padding: 100px 0;
}

.section-subtitle {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
  position: relative;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray);
  font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 24px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a:hover {
  color: var(--light);
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 16px;
  font-size: 1rem;
}

.social-links a:hover {
  color: var(--light);
  transform: translateY(-2px);
  display: inline-block;
}

/* Header & Navigation */
.header {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 5px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition);
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  line-height: 1;
}

.logo-text .sub-brand {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-list a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-list a.active,
.nav-list a:hover {
  color: var(--primary);
}

.nav-list a.active::after,
.nav-list a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  border-radius: var(--border-radius-sm);
  padding: 12px 0;
  border-top: 3px solid var(--primary);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown {
  position: relative;
}

.dropdown-menu li a {
  padding: 10px 24px;
  display: block;
  color: var(--dark-light);
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background-color: var(--light-gray);
  color: var(--primary);
  padding-left: 30px;
  /* Slight indent hover effect */
}

/* Mega menu for Eğitimler */
.mega-menu {
  min-width: 300px;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Modern Corporate Hero Section Redesign */
.hero-section {
  position: relative;
  padding: 160px 0 100px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--dark);
  overflow: hidden;
}

.hero-bg,
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  background: rgba(0, 0, 0, 0.55);
  /* Subtle dark overlay for readability */
  z-index: 1;
}

/* We need hero-container to be relative and flex to place elements */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero-content {
  margin-bottom: 0px;
}

.hero-title {
  font-size: 4.5rem;
  color: #ffffff !important;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-actions .btn-solid {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid transparent;
  background: #E31837;
  /* Minar warm red */
  color: white !important;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions .btn-solid:hover {
  background: #111827;
  /* Dark hover */
  border-color: #111827;
}

.hero-actions .btn-outline-white {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions .btn-outline-white:hover {
  background: white;
  color: #111827 !important;
  border-color: white;
}

/* The Overlapping Training Carousel Box */
.hero-latest-box {
  align-self: flex-end;
  background: #111827;
  padding: 35px 40px;
  width: 100%;
  max-width: 850px;
  margin-top: 50px;
  margin-bottom: 0;
  /* No overlap, natural flow */
  position: relative;
  z-index: 10;
}

.latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.latest-title {
  color: #9CA3AF;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: #E31837;
  border-color: #E31837;
}

.latest-carousel-wrapper {
  overflow: hidden;
}

.latest-carousel {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.latest-card {
  display: flex;
  gap: 15px;
  text-decoration: none !important;
  background: transparent;
  transition: transform 0.3s;
  min-width: calc(50% - 12.5px);
  flex-shrink: 0;
}

.latest-card:hover {
  transform: translateX(5px);
}

.latest-card img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.latest-info {
  flex: 1;
}

.latest-info .tag {
  color: #9CA3AF;
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.latest-info h5 {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
  transition: color 0.2s;
}

.latest-card:hover h5 {
  color: #E31837;
}

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

  .hero-latest-box {
    align-self: flex-start;
    margin-top: 40px;
    margin-bottom: 0;
    padding: 30px;
    width: 100%;
    max-width: 100%;
  }
}

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

  .hero-desc {
    font-size: 1.1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 30px;
  }

  .hero-actions .btn-solid,
  .hero-actions .btn-outline-white {
    width: 100%;
    text-align: center;
    padding: 14px 20px !important;
    font-size: 1rem;
  }

  .latest-card {
    min-width: 100%;
  }

  .hero-latest-box {
    padding: 20px 15px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-section {
    padding: 110px 0 50px 0;
  }

  .container {
    padding: 0 20px;
  }
}

/* (Old hero-wrapper mobile overrides removed) */

/* Trainings */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.training-card {
  background: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 58, 105, 0.1);
  border-color: rgba(10, 58, 105, 0.1);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.training-card:hover .card-img img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(227, 24, 55, 0.3);
}

.card-content {
  padding: 30px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  position: absolute;
  top: -25px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(10, 58, 105, 0.2);
  border: 4px solid var(--light);
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-top: 5px;
}

.card-content p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 0.95rem;
  flex: 1;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

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

/* Reference Cards Section */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.ref-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
  border: 1px solid var(--gray);
}

.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.ref-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 58, 105, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ref-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}

/* Call To Action Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1A365D 100%);
  position: relative;
  overflow: hidden;
  color: var(--light);
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4 {
  color: inherit;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 60%;
}

.cta-content h2 {
  color: var(--light);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  bottom: 0;
  left: 30px;
  background: var(--primary);
  color: var(--light);
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

.news-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.news-content {
  padding: 30px;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-meta i {
  color: var(--primary);
}

.news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-content h3 a {
  color: var(--dark);
}

.news-content h3 a:hover {
  color: var(--primary);
}

.news-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-heading);
}

.read-more:hover {
  gap: 12px;
  /* slight animation right */
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-logo h3 {
  color: var(--light);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.about-widget p {
  margin-bottom: 24px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  margin-right: 10px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.widget-title {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--light);
  padding-left: 5px;
}

.footer-links a:hover i {
  color: var(--primary);
}

.contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-list i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-list strong {
  display: block;
  color: var(--light);
  margin-bottom: 4px;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-list a:hover {
  color: var(--light);
}

.footer-bottom {
  background-color: #0b111e;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 20px;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--light);
}

/* Animations Tools */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--light);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

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

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

  .navbar {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--light);
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    transition: var(--transition);
    overflow-y: auto;
  }

  .navbar.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: var(--light-gray);
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }

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

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-content {
    max-width: 100%;
  }

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

  .footer-bottom .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 10px;
  }

  .nav-contact-buttons {
    margin-left: 0 !important;
    margin-top: 20px;
    width: 100%;
    flex-direction: column;
    gap: 15px !important;
  }

  .nav-contact-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}