/* Root Variables */
:root {
  --primary-blue: #1a1a1a;
  --dark-blue: #000000;
  --bg-color: #f9f9f9;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================
   PRELOADER (FIXED VERSION)
========================= */

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.8s ease;
}

/* Wrapper */
.preloader-logo-wrap {
  position: relative;
  width: 180px;
}

/* Base logo (black) */
.logo-base {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0);
}

/* White fill logo */
.logo-fill {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  filter: brightness(0) invert(1);
  object-fit: cover;
  animation: fillUp 1.6s ease forwards;
  overflow: hidden;
}

/* Bottom → Top fill animation */
@keyframes fillUp {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}

/* Exit animation (bottom → top) */
#preloader.hide {
  transform: translateY(-100%);
}

/* Navbar Styles */
.navbar {
  padding: 1.5rem 0;
  background-color: transparent;
  transition: var(--transition);
  z-index: 1000;
}

.navbar.scrolled {
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  height: 95px;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 2px;
  transition: var(--transition);
}

/* Navbar logo image */
.navbar-brand img {
  height: 50px;
  width: auto;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* white on transparent navbar */
}

/* Navbar scrolled → original logo color */
.navbar.scrolled .navbar-brand img {
  filter: none;
}

/* Logo positioning - desktop */
@media (min-width: 768px) {
  .navbar-brand {
    margin-left: 0;
  }
}

/* Logo positioning - mobile (centered) */
@media (max-width: 767px) {
  .navbar .container-fluid {
    justify-content: center;
    position: relative;
  }

  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-toggle {
    position: absolute;
    right: 1rem;
  }
}

/* Menu Toggle Button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle:active {
  transform: scale(0.95);
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle .bar {
  background-color: var(--primary-blue);
}

.menu-toggle:hover .bar {
  background-color: var(--primary-blue);
}

.navbar.scrolled .menu-toggle:hover .bar {
  opacity: 0.7;
}

/* Full Page Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 2000;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.menu-overlay.active {
  transform: translateY(0);
}

/* Menu overlay logo — ONLY size change */
.menu-overlay .navbar-brand img {
  height: 50px;
  width: auto;
  filter: none; /* no color tricks here */
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.overlay-header .navbar-brand {
  color: var(--primary-blue) !important;
}

/* Menu Close Button */
.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 35px;
  height: 35px;
  transition: var(--transition);
}

.menu-close:focus {
  outline: none;
}

.menu-close:active {
  transform: scale(0.95);
}

.menu-close .close-bar {
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: var(--primary-blue);
  top: 50%;
  left: 50%;
  transition: var(--transition);
}

.menu-close .close-bar:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close .close-bar:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover .close-bar {
  background-color: var(--dark-blue);
}

/* Overlay Menu Items */
.overlay-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 2rem 0;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu-items li {
  margin: 1.5rem 0;
}

.menu-link {
  font-size: 2.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 300;
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.menu-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
  width: 100%;
}

.menu-link.active {
  color: var(--primary-blue);
}

.menu-link:hover {
  color: var(--primary-blue);
}

/* Responsive menu items */
@media (max-width: 767px) {
  .menu-link {
    font-size: 1.8rem;
  }

  .menu-items li {
    margin: 1rem 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 110%;
  min-height: 110%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 0;
  object-fit: cover;
  will-change: transform;
}

/* Ensure smooth video playback on mobile */
@media (max-width: 767px) {
  .hero-video {
    min-width: 110%;
    min-height: 110%;
    object-position: center;
    /* Force hardware acceleration on mobile */
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* Hero background image (mobile default) */
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero/hero-poster.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Hide video by default */
.hero-video {
  display: none;
}

/* Desktop only: show video, hide image */
@media (min-width: 768px) {
  .hero-image {
    display: none;
  }

  .hero-video {
    display: block;
  }
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
  z-index: 1;
}

.hero-title {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
}

/* Centered Hero Section for other pages */
.hero-section-centered {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&h=900&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .hero-section-centered {
    background-attachment: scroll;
    height: 50vh;
  }
}

#about-hero {
  background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1600&h=900&fit=crop");
}

#services-hero {
  background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1600&h=900&fit=crop");
}

#portfolio-hero {
  background-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1600&h=900&fit=crop");
}

#contact-hero {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=900&fit=crop");
}

.hero-title-centered {
  color: var(--white);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .hero-title-centered {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Section Styles */
.section-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-title-small {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-title-small {
    font-size: 1.5rem;
  }
}

/* Button Styles */
.btn-custom {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 0;
}

.btn-custom:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 26, 26, 0.3);
}

.btn-custom-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 0;
}

.btn-custom-white:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Image Cards */
.image-card {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

/* Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  color: var(--white);
  padding: 2rem;
  transform: translateY(0);
  transition: var(--transition);
}

.service-title {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.service-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--white);
  padding-bottom: 3px;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .service-description,
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link:hover {
  color: var(--white);
  border-color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
  background-image: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&h=600&fit=crop&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 6rem 0;
  /* background-repeat: no-repeat; */
}

@media (max-width: 767px) {
  .cta-section {
    background-attachment: scroll;
  }
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.cta-title {
  position: relative;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  z-index: 2;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section .btn-custom-white {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-section {
    background-attachment: scroll;
  }
}

/* ================================
   ABOUT PAGE SPECIFIC STYLES
================================ */

/* Value Cards */
.value-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-number {
  font-size: 3rem;
  font-weight: 200;
  color: var(--primary-blue);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  transform: scale(1.1);
  background-color: var(--dark-blue);
}

.process-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Members */
.team-member {
  text-align: center;
  transition: var(--transition);
}

.team-image {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================================
   SERVICES PAGE SPECIFIC STYLES
================================ */

/* Service Number */
.service-number {
  font-size: 4rem;
  font-weight: 200;
  color: var(--primary-blue);
  opacity: 0.2;
  margin-bottom: 1rem;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
}

/* Additional Service Cards */
.additional-service-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: var(--transition);
  height: 100%;
}

.additional-service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.additional-service-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.additional-service-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing Cards */
.pricing-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 500;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ================================
   PORTFOLIO PAGE SPECIFIC STYLES
================================ */

/* Portfolio Filter */
.portfolio-filter {
  position: sticky;
  top: 95px;
  z-index: 100;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-item {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-item:hover,
.filter-item.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* Portfolio Cards */
.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 350px;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

.portfolio-info {
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-category {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.portfolio-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Stats Section */
.stat-item {
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 200;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonial-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-project {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ================================
   CONTACT PAGE SPECIFIC STYLES
================================ */

/* Contact Info Cards */
.contact-info-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  background-color: var(--primary-blue);
  color: var(--white);
}

.contact-info-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-info-text a {
  color: var(--text-dark);
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--primary-blue);
}

.contact-info-subtext {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-input {
  border: 1px solid #e0e0e0;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border-radius: 0;
  transition: var(--transition);
}

.contact-input:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.1);
  outline: none;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-check-input:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.form-success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}

.form-success-message p {
  margin: 0;
  font-size: 1.1rem;
}

/* FAQ Accordion */
.accordion-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-button {
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  border: none;
  text-align: left;
  width: 100%;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  margin-left: auto;
}

.accordion-body {
  padding: 1.5rem;
  background: var(--white);
  color: var(--text-light);
  line-height: 1.7;
}

/* Map Section */
.map-section {
  margin: 0;
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
}

/* Footer logo — always white */
.footer img,
.footer-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-text a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-blue);
}
