@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary: #F5891F;          /* Logo Orange */
  --primary-dark: #D47111;     /* Darker Orange */
  --primary-light: #FF9E42;    /* Lighter Orange */
  --primary-glow: rgba(245, 137, 31, 0.25);
  --primary-subtle: rgba(245, 137, 31, 0.08);

  /* Dark Neutrals for Hero & Footer */
  --charcoal: #1C1C1C;
  --navbar-bg: #FFFFFF;        /* Light Navbar as requested */
  --footer-bg: #111111;
  --white: #FFFFFF;

  /* Accent */
  --accent: #F5891F;
  --accent-dark: #D47111;
  --accent-glow: rgba(245, 137, 31, 0.2);

  /* Neutrals */
  --gray-50: #F9F9F9;
  --gray-100: #F3F5F9;
  --gray-200: #E4E8EF;
  --gray-700: #000000;         /* High contrast black body text */
  --gray-800: #000000;         /* Pure black headings */
  --gray-600: #111111;         /* Dark black text */
  --gray-500: #222222;         /* Dark text for muted content */

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.05), 0 4px 10px -2px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.08), 0 8px 16px -4px rgba(0,0,0,0.04);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-gray {
  background: var(--gray-50);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header .label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-500);
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-slow) ease, visibility var(--transition-slow);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(245, 137, 31, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   NAVBAR (Redesigned with Light theme, drop shadow, black text)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  background: var(--navbar-bg); /* White background */
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); /* Drop shadow so it doesn't blend into body */
  transition: background var(--transition-base), box-shadow var(--transition-base);
  border-bottom: 1px solid rgba(0,0,0,0.06); /* Subtle bottom border */
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  background: transparent;
  padding: 0;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 600; /* Highly readable bold text */
  color: #000000;  /* Pure black text for high contrast */
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  background: rgba(245, 137, 31, 0.05); /* Orange hover tint */
  color: var(--primary); /* Logo orange hover/active state */
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
  fill: currentColor;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  pointer-events: none;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--primary);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: #000000; /* Black text */
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--primary-subtle);
  color: var(--primary); /* Orange on hover */
  transform: translateX(4px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-left: 1rem;
  transition: all var(--transition-base);
  box-shadow: 0 2px 10px var(--primary-glow);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--primary-glow);
  color: var(--white);
}

/* Mobile Toggle Hamburger (Black lines for white navbar) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #000000; /* Black lines */
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%);
  overflow: hidden;
  padding: calc(var(--navbar-height) + 4rem) 2rem 4rem;
}

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

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 137, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 137, 31, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Floating blurred orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-1 {
  width: 350px;
  height: 350px;
  background: var(--primary);
  top: 10%;
  right: 10%;
}

.hero-orb-2 {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: 20%;
  left: 10%;
  animation-delay: -5s;
  opacity: 0.15;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  background: var(--primary-light);
  top: 60%;
  right: 30%;
  animation-delay: -10s;
  opacity: 0.15;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  text-align: left;
  max-width: 100%;
}

.hero-collage {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 450px;
  margin: 0 auto;
  animation: collageFloat 8s ease-in-out infinite alternate;
}

@keyframes collageFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.hero-collage-accent {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(245, 137, 31, 0.15) 0%, transparent 70%);
  top: 15%;
  left: 15%;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.hero-collage-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
  background: #2a2a2a;
}

.hero-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Card 1: Landscape cp.jpeg */
.hero-collage-card-1 {
  width: 78%;
  height: 260px;
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-3deg) scale(0.96);
  border: 4px solid rgba(255, 255, 255, 0.05);
  opacity: 0.65;
  filter: grayscale(15%);
}

.hero-collage-card-1.active {
  z-index: 3;
  transform: rotate(-1deg) scale(1.02);
  opacity: 1;
  filter: none;
}

/* Card 2: Square hero_edited.png */
.hero-collage-card-2 {
  width: 68%;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 2;
  transform: rotate(3deg) scale(0.96);
  border: 5px solid #1c1c1c; /* matches background to create cut-out boundary */
  opacity: 0.65;
  filter: grayscale(15%);
}

.hero-collage-card-2.active {
  z-index: 3;
  transform: rotate(1deg) scale(1.02);
  opacity: 1;
  filter: none;
}

/* Hover interactions (overrides active/inactive state) */
.hero-collage-card:hover {
  z-index: 10 !important;
  transform: scale(1.06) rotate(0deg) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 137, 31, 0.3) !important;
  border-color: rgba(245, 137, 31, 0.5) !important;
  opacity: 1 !important;
  filter: none !important;
}

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

/* When manual hover happens, dim the other card */
.hero-collage:hover .hero-collage-card:not(:hover) {
  opacity: 0.4 !important;
  filter: grayscale(40%) blur(1px) !important;
  transform: scale(0.9) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 0 2.5rem 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-collage {
    max-width: 400px;
    height: 380px;
  }
  .hero-collage-card-1 {
    height: 220px;
  }
  .hero-collage-card-2 {
    height: 270px;
  }
}

/* Stats Counter Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat .stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================================
   PAGE HEADER (Interior Pages)
   ============================================================ */
.page-header {
  padding: calc(var(--navbar-height) + 3rem) 2rem 3rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #111111 100%);
  color: var(--white);
  text-align: center;
  border-bottom: 3px solid var(--primary);
}

.page-header h1 {
  font-size: var(--text-4xl);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--primary-glow);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  color: var(--white);
}

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

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL EFFECTS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

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

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: bold;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

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

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-column h4 {
  font-size: var(--text-base);
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-item {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   RESPONSIVE LAYOUT
   ============================================================ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--navbar-height));
    background: var(--white); /* White background instead of dark */
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    overflow-y: auto;
    border-left: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: #000000;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    display: none;
    min-width: 0;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .dropdown-link {
    color: #000000;
    padding: 0.5rem 0;
  }

  .dropdown-link:hover {
    background: transparent;
    color: var(--primary);
    transform: none;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-collage {
    max-width: 320px;
    height: 300px;
  }
  .hero-collage-card-1 {
    height: 170px;
  }
  .hero-collage-card-2 {
    height: 220px;
  }
}

/* ============================================================
   PARTNERSHIPS SLIDER WITH ARROWS
   ============================================================ */
.partners-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
}

.partners-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 0 1rem;
}

.partners-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-category {
  width: 360px;
  flex-shrink: 0;
  padding: 0 1rem;
}

.slider-btn {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--gray-200);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  z-index: 10;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 10px var(--primary-glow);
}


