/* =====================================================
   MEDSAFE – Ambulanță Privată | Style Sheet
   ===================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --red: #E06820;
  --red-dark: #C0551A;
  --red-light: #F07830;
  --red-glow: rgba(224, 104, 32, 0.3);
  --navy: #0D1B2A;
  --navy-mid: #16293D;
  --navy-light: #1E3A52;
  --orange: #E06820;
  --orange-dark: #C0551A;
  --orange-light: #F07830;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 30px rgba(224,104,32,0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(224,104,32,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-badge {
  display: inline-block;
  background: rgba(224, 104, 32, 0.1);
  color: var(--orange);
  border: 1px solid rgba(224, 104, 32, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-red { color: var(--orange); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  margin-left: 0.5rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(224,104,32,0.5); background: rgba(255,255,255,0.1) !important; border: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.75) 50%,
    rgba(224, 104, 32, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  max-width: 700px;
  margin-left: max(1.5rem, calc((100vw - 1200px) / 2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.6s ease both;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #2ECC71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-highlight {
  color: var(--orange-light);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.7s ease 0.4s both;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* =====================================================
   URGENT BANNER
   ===================================================== */
.urgent-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.urgent-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 1rem;
  font-weight: 500;
}

.urgent-phone {
  font-size: 1.15rem;
  font-weight: 800;
  color: white;
  background: rgba(255,255,255,0.2);
  padding: 0.2rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}
.urgent-phone:hover { background: rgba(255,255,255,0.35); }

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  padding: 6rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-card.featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--orange), #FFB347);
  transform: scaleX(1);
}

.service-badge-featured {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: rgba(224, 104, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card.featured .service-icon {
  background: rgba(255,255,255,0.1);
  color: #FFB347;
}

.service-card:hover .service-icon {
  background: var(--red);
  color: white;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: inherit;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-card.featured .service-list li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-list li::before { color: #FFB347; }

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.about-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  bottom: 55%;
  left: -1.5rem;
  background: var(--orange);
  color: white;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-red);
  z-index: 10;
}

.about-badge-float .badge-icon { font-size: 1.5rem; }
.about-badge-float strong { display: block; font-weight: 700; font-size: 0.95rem; }
.about-badge-float span { font-size: 0.78rem; opacity: 0.85; }

.about-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-content .section-badge { /* inherits */ }

.about-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* =====================================================
   WHY US
   ===================================================== */
.why-us {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(224,104,32,0.4);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  padding: 6rem 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-large {
  grid-row: 1 / 3;
}

/* Gallery logo watermark */
.gallery-logo-watermark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.gallery-logo-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.gallery-item:hover .gallery-logo-watermark {
  transform: scale(1.08);
}

/* Gallery logo full display for logo-only cell */
.gallery-logo-full {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: white;
  padding: 2rem;
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 100%);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { transform: translateY(0); }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(224,104,32,0.12);
}

.contact-card.emergency {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-color: transparent;
}

.contact-card-icon { font-size: 2rem; flex-shrink: 0; }

.contact-card-content h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}

.contact-card.emergency .contact-card-content h3 { color: rgba(255,255,255,0.7); }

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.2rem;
}

.contact-card.emergency .contact-phone { color: white; }

.contact-phone-2 {
  font-size: 1.3rem;
  margin-top: -0.1rem;
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

.contact-card.emergency p { color: rgba(255,255,255,0.75); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { color: var(--orange-dark); text-decoration: underline; }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.map-header {
  background: var(--navy);
  color: white;
  padding: 1rem 1.5rem;
}

.map-header h3 { font-size: 1rem; font-weight: 700; }
.map-header p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

.contact-map .btn-outline {
  color: var(--orange);
  border-color: var(--orange);
  width: calc(100% - 2rem);
  justify-content: center;
  margin: 0 1rem 1rem;
}
.contact-map .btn-outline:hover { background: var(--orange); color: white; }

/* =====================================================
   FLOATING CTA
   ===================================================== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
  animation: fadeInUp 0.5s ease 0.8s both;
}

.floating-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 15px 40px rgba(224,104,32,0.55);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); }

.footer-main { padding: 4rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

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

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877F2;
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.fb-btn:hover { background: #0d5fd1; transform: translateY(-1px); }

.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.footer-contact-item a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--orange-light); }

.footer-contact-col .btn-primary { margin-top: 1rem; justify-content: center; width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 380px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }

  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-cta { margin: 1rem 0 0; width: 100%; text-align: center; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-large { grid-row: auto; }
  .gallery-item { height: 220px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-images { height: 300px; }
  .about-img-main { width: 85%; height: 65%; }
  .about-img-secondary { width: 65%; height: 50%; }
  .about-badge-float { left: 0; bottom: 50%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .stat-divider { width: 60px; height: 1px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 1rem; border-radius: 50%; }
}
