/* ==========================================================================
   NURHANEM TURİZM - Premium Hac & Umre Web Sitesi
   Design: Premium, kurumsal, lacivert-altın tema
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  --color-navy: #0D1B2A;
  --color-gold: #C9A227;
  --color-gold-light: #D4AF37;
  --color-gold-dark: #A68521;
  --color-cream: #F8F5F0;
  --color-white: #FFFFFF;
  --color-dark-text: #2B2B2B;
  --color-muted: #6B7280;
  --color-overlay: rgba(13, 27, 42, 0.75);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-soft: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-card: 0 8px 32px rgba(13, 27, 42, 0.12);
  --shadow-hover: 0 16px 48px rgba(13, 27, 42, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

body.preload-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-smooth), opacity var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
}

.display-4, .display-5 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--color-gold) !important;
}

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-inner {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 3px;
  animation: preloaderShimmer 1.2s ease-in-out infinite;
}

@keyframes preloaderShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(250%); }
}

/* --------------------------------------------------------------------------
   Sticky Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(13, 27, 42, 0.06);
  z-index: 1000;
  transition: box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 1rem;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
}

.site-logo span {
  color: var(--color-gold);
}

/* Navigation */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark-text);
  border-radius: var(--radius-sm);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  border-radius: 1px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  padding-right: 1.5rem;
}

.nav-dropdown > a::before {
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(-50%);
  transition: transform var(--transition-smooth);
}

.nav-dropdown:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility var(--transition-smooth);
  list-style: none;
  margin: 0.25rem 0 0 0;
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  display: block;
  border-radius: 0;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--color-cream);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-gold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.btn-call:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary-nurhanem {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-gold);
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.btn-primary-nurhanem:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-outline-nurhanem {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: var(--radius-sm);
  transition: background var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.btn-outline-nurhanem:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-navy) url('../images/hero-kabe.jpg') center/cover no-repeat;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* --------------------------------------------------------------------------
   Section Commons
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.bg-navy .section-label,
.bg-navy .section-title {
  color: var(--color-white);
}

.bg-navy .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   Package Cards (Home & Umre)
   -------------------------------------------------------------------------- */
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-bounce), box-shadow var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.package-card-header {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid rgba(13, 27, 42, 0.06);
  position: relative;
}

.package-card-header .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50px;
}

.package-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.package-card-meta {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.package-card-body {
  padding: 1.5rem;
  flex: 1;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.package-feature svg,
.package-feature i {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 1rem;
}

.package-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-muted);
}

.package-card-footer {
  padding: 0 1.5rem 1.5rem;
}

/* --------------------------------------------------------------------------
   Why Us / Features Grid
   -------------------------------------------------------------------------- */
.feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  height: 100%;
  border: 1px solid rgba(13, 27, 42, 0.05);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  color: var(--color-gold);
  border-radius: 50%;
  font-size: 1.75rem;
}

.feature-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Counter / Stats
   -------------------------------------------------------------------------- */
.counter-section {
  padding: 4rem 0;
}

.counter-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.counter-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border-left: 4px solid var(--color-gold);
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--color-dark-text);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   Hajj Process / Steps
   -------------------------------------------------------------------------- */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .site-logo {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin: 0;
  max-width: 260px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color var(--transition-smooth), padding-left var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--color-white);
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   WhatsApp Floating Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float:hover svg {
  fill: var(--color-white);
}

/* --------------------------------------------------------------------------
   Page Head (Breadcrumb / Title)
   -------------------------------------------------------------------------- */
.page-head {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
}

.page-head-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.breadcrumb-nurhanem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumb-nurhanem a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nurhanem a:hover {
  color: var(--color-gold);
}

.breadcrumb-nurhanem .separator {
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Gallery Grid & Lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.8), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-height: 90vh;
  width: auto;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.9;
}

.lightbox-close:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Blog Cards
   -------------------------------------------------------------------------- */
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-cream);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-card-title a:hover {
  color: var(--color-gold);
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-form .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13, 27, 42, 0.12);
  padding: 0.85rem 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-info-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-info-card a,
.contact-info-card p {
  color: var(--color-dark-text);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  background: var(--color-cream);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.vision-mission-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border-top: 4px solid var(--color-gold);
}

.founder-message {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* --------------------------------------------------------------------------
   Scroll Animations (reveal on scroll)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.main-content {
  padding-top: var(--header-height);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
}

.list-cross li::before {
  background: transparent;
  border: 2px solid var(--color-muted);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
    padding: 1rem;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth), transform var(--transition-smooth);
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    margin: 0.25rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
  }

  .header-cta {
    margin-top: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 767.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .header-inner {
    padding-inline: 0.75rem;
  }

  .site-logo {
    font-size: 1.15rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Animations keyframes
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
