/* ==========================================================================
   Tent Services In Riyadh - Master Stylesheet
   Version: 3.6.0
   Description: Premium RTL Design System for Riyadh Tent Services (100% Mobile Responsive)
   Theme Name: Tent Services In Riyadh
   Theme URI: https://tentservicesinriyadh.online
   Author: Tent Services In Riyadh Team
   Author URI: https://tentservicesinriyadh.online
   Version: 3.6.0
   License: GNU General Public License v2 or later
   Text Domain: tentservicesriyadh
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Cairo:wght@400;600;700;800;900&display=swap');

/* --- CSS Variables & Design System --- */
:root {
  --primary: #0F766E;
  --primary-hover: #0D655E;
  --primary-light: #F0FDF4;
  --secondary: #F59E0B;
  --secondary-hover: #D97706;
  --dark: #0F172A;
  --dark-surface: #1E293B;
  --light: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-alt: #F1F5F9;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

html {
  font-family: 'Tajawal', 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
  text-align: right;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--light);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Permanently Suppress Any Translator Widget Elements --- */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.gtranslate_wrapper,
.translator-float-wrapper,
.translator-btn,
.translator-popup,
#gt-widget,
.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0px !important;
}

/* --- Layout Containers --- */
.container, .contact-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--dark);
  color: #FFFFFF;
}

/* --- Responsive Grid System --- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 0 !important;
  }

  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  color: var(--dark);
  line-height: 1.3;
  font-weight: 800;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.badge-secondary {
  background: rgba(245, 158, 11, 0.15);
  color: #B45309;
}

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

.section-header .badge {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem !important;
  }
  .section-subtitle {
    font-size: 0.95rem !important;
  }
}

/* --- UI Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  touch-action: manipulation;
  min-height: 48px;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: #1E293B;
}

.btn-secondary:hover {
  background: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

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

.btn-white {
  background: #FFFFFF;
  color: var(--dark);
}

.btn-white:hover {
  background: var(--light);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  min-height: 40px;
}

.btn-full {
  width: 100%;
}

@media (max-width: 480px) {
  .btn {
    width: 100% !important;
    white-space: normal !important;
  }
}

/* --- Top Bar --- */
.top-bar {
  background: var(--dark);
  color: #CBD5E1;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info {
  display: flex;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

/* --- Global Header & Navbar --- */
.header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
  max-width: 220px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
  min-width: 44px;
  min-height: 44px;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* --- Mobile Header Rules (Strict Hamburger LEFT, Logo RIGHT) --- */
@media (max-width: 768px) {
  .navbar {
    height: 66px !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 1 !important;
  }

  .logo-wrapper {
    order: 2 !important;
  }

  .logo-img {
    height: 46px !important;
    max-width: 175px !important;
  }

  .nav-actions {
    display: none !important;
  }

  .nav-menu {
    position: absolute !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-height: 80vh !important;
    background: #FFFFFF !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0.5rem 1rem 1rem 1rem !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2) !important;
    border-bottom: 3px solid #0F766E !important;
    display: none !important;
    gap: 0 !important;
    overflow-y: auto !important;
    z-index: 10001 !important;
    border-radius: 0 0 12px 12px !important;
  }

  .nav-menu.open {
    display: flex !important;
  }

  .nav-link {
    width: 100% !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    min-height: 48px !important;
    padding: 0.75rem 1rem !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid #E2E8F0 !important;
    background: transparent !important;
    transition: background 0.2s ease, color 0.2s ease !important;
  }

  .nav-link:hover, .nav-link.active {
    background: #F1F5F9 !important;
    color: #0F766E !important;
  }

  .nav-link::after {
    display: none !important;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: #000;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(15, 118, 110, 0.92) 0%, 
    rgba(15, 23, 42, 0.85) 50%,
    rgba(15, 23, 42, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 3rem 0;
}

.hero-badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--secondary);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.hero-title {
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--secondary);
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--secondary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
  }
  .hero-content {
    padding: 2.5rem 0 !important;
  }
  .hero-desc {
    font-size: 1rem !important;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .hero-features {
    grid-template-columns: 1fr !important;
  }
}

/* --- Cards Component --- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.2);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Gallery & Media Cards --- */
.media-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.media-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E2E8F0;
}

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

.media-card:hover .media-card-img {
  transform: scale(1.06);
}

.media-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.media-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.media-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Full Image Gallery Grid --- */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .gallery-full-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

.gallery-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.gallery-card-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #CBD5E1;
}

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

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

.gallery-paragraph-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-right: 4px solid var(--primary);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

.gallery-description-paragraph {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--dark);
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-paragraph-box {
    padding: 1.25rem !important;
  }
  .gallery-description-paragraph {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
  }
}

/* --- Showcase Horizontal Card --- */
.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.showcase-img-wrap {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .showcase-card {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1.5rem !important;
  }
  .showcase-img-wrap {
    height: 240px !important;
    aspect-ratio: auto !important;
  }
}

/* ==========================================================================
   DEDICATED CONTACT US PAGE DESIGN SYSTEM
   ========================================================================== */
.contact-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr !important;
    align-items: stretch !important;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
  }
}

.contact-info-card {
  background: linear-gradient(135deg, #0F766E 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: #FFFFFF !important;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: #CBD5E1 !important;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info-item-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-item-box h4 {
  color: #FFFFFF !important;
  font-size: 1.05rem;
  margin: 0 0 0.4rem 0;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
  color: var(--primary) !important;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-form-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-info-card, .contact-form-card {
    padding: 1.5rem !important;
  }
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: right;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.85rem 1rem;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px !important;
  direction: rtl;
  margin-top: 0.2rem;
  background: #FFFFFF;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* --- Accordion FAQ --- */
.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: right;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  touch-action: manipulation;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  padding-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .accordion-header {
    padding: 1rem 1.15rem !important;
    font-size: 0.95rem !important;
  }
}

/* --- Footer --- */
.footer {
  background: var(--dark-surface);
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

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

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1.5rem 0 !important;
  }
  .footer-grid {
    gap: 1.75rem !important;
    margin-bottom: 2rem !important;
  }
}

/* --- Sticky WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 25px;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform var(--transition-bounce);
  touch-action: manipulation;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* --- Modals & Lightbox --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
}

/* --- Scroll Fade Animations (Always visible on mobile) --- */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

@media (min-width: 992px) {
  .js-scroll-animate .fade-up:not(.visible) {
    opacity: 0;
    transform: translateY(25px);
  }
}

@media (max-width: 991px) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

.fade-up.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
