/*
Theme Name: Scrap Buyers Makkah
Theme URI: https://scrapbuyers-makkah.com
Author: Senior Web Developer & Saudi Local Business Specialist
Description: قالب ووردبريس احترافي، متجاوب بالكامل ودعم كامل للغة العربية (RTL) لمحلات وشراء سكراب الحديد والمعادن والمكيفات والمعدات في مكة المكرمة.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: scrapbuyers-makkah
Tags: arabic, rtl, mobile-first, scrap-buyer, makkah, custom-theme, dark-theme
*/

/* ==========================================================================
   ARABIC SCRAP BUYER MAKKAH - DESIGN SYSTEM & STYLESHEET
   Primary Theme: Dark Industrial Luxury / Makkah Saudi Local Business
   Font Families: Tajawal (Body), Cairo (Headings & CTAs)
   RTL First & 100% Mobile Responsive Implementation
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-primary: #0B0F17;
  --bg-secondary: #131B29;
  --bg-card: #1B2537;
  --bg-card-hover: #233047;
  --bg-glass: rgba(19, 27, 41, 0.88);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(245, 158, 11, 0.3);

  /* Primary Accent - Industrial Gold/Amber */
  --accent-amber: #F59E0B;
  --accent-amber-hover: #D97706;
  --accent-amber-glow: rgba(245, 158, 11, 0.25);

  /* WhatsApp Brand Color */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE5D;

  /* Circle Phone Gold Color */
  --circle-phone-gold: #C6954B;

  /* Typography Colors */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --text-heading: #FFFFFF;

  /* Fonts */
  --font-heading: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Shadows & Transitions */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-amber: 0 0 25px rgba(245, 158, 11, 0.35);

  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  direction: rtl;
  lang: ar;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 800;
  word-wrap: break-word;
}

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

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  min-height: 48px;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
}

.btn-amber {
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-amber-hover) 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-amber);
  background: linear-gradient(135deg, #FBBF24 0%, var(--accent-amber) 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green) 0%, var(--whatsapp-hover) 100%);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #34D399 0%, var(--whatsapp-green) 100%);
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

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

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

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-amber-hover) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.78rem;
  color: var(--accent-amber);
  font-weight: 600;
}

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

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

.nav-link, .nav-menu li a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active, .nav-menu li.current-menu-item a {
  color: var(--accent-amber);
}

.nav-link.active::after, .nav-menu li.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-amber);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  direction: ltr;
}

.header-phone:hover {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(88vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 15, 23, 0.94) 0%, rgba(19, 27, 41, 0.88) 60%, rgba(11, 15, 23, 0.96) 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-full);
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
}

.hero-title span {
  background: linear-gradient(135deg, #FBBF24 0%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 400;
  background: rgba(19, 27, 41, 0.5);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.feature-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.feature-pill svg {
  color: var(--accent-amber);
  flex-shrink: 0;
}

/* CONTENT SECTIONS */
.content-section {
  padding: 4.5rem 0;
  position: relative;
}

.content-section.alt-bg {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-amber);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-heading);
  position: relative;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

/* HEADING CARD WITH INTEGRATED RELEVANT IMAGE */
.heading-card-with-img {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  margin-bottom: 2.5rem;
}

.heading-card-with-img.reverse {
  grid-template-columns: 1.15fr 1fr;
}

.heading-card-with-img:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow-lg), var(--shadow-glow-amber);
}

.heading-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 380px;
  overflow: hidden;
}

.heading-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.heading-card-with-img:hover .heading-img-box img {
  transform: scale(1.06);
}

.heading-card-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.heading-card-body h2, .heading-card-body h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--text-heading);
  margin-bottom: 1.1rem;
  line-height: 1.35;
}

.heading-card-body p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

/* CARDS GRID WITH 16:9 TOP THUMBNAILS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card-with-thumb {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.info-card-with-thumb:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow-md);
}

.card-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.info-card-with-thumb:hover .card-thumb-wrapper img {
  transform: scale(1.08);
}

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

.card-thumb-title {
  font-size: 1.25rem;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.card-thumb-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Check Bullet List */
.check-list {
  display: grid;
  gap: 1rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.check-icon {
  width: 26px;
  height: 26px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--whatsapp-green);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.check-text {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
}

/* WE BUY / ماذا نشتري GALLERY SECTION */
.we-buy-section {
  padding: 4.5rem 0;
  background: var(--bg-primary);
}

.we-buy-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  text-align: center;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.we-buy-sub {
  text-align: center;
  color: var(--accent-amber);
  font-size: clamp(0.98rem, 1.5vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-glow-amber);
}

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

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

/* USER REQUIREMENT: Image labels removed for clean image display */
.gallery-overlay {
  display: none !important;
}

/* Interstitial Banner CTA */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.cta-banner-text {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.cta-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
}

.cta-step-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.cta-step-item span {
  display: block;
  color: var(--accent-amber);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* FLOATING CIRCULAR STACKED CTA BUTTONS */
.floating-circular-cta {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99999;
}

.circular-cta-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
}

.circular-cta-btn:hover {
  transform: scale(1.14);
}

.circular-cta-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.circular-cta-phone {
  background-color: var(--circle-phone-gold);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(198, 149, 75, 0.5);
}

.circular-cta-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.circular-cta-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.4;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* Contact Page Form & Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-top: 2rem;
}

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-normal);
}

.contact-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-amber);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.contact-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(11, 15, 23, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  background: rgba(11, 15, 23, 0.85);
}

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

.file-upload-box {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: rgba(11, 15, 23, 0.4);
}

.file-upload-box:hover {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.05);
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.file-preview-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

/* Privacy Policy Layout */
.privacy-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: var(--accent-amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-section p, .privacy-section ul {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.privacy-section ul {
  list-style: disc;
  padding-right: 1.5rem;
  margin-top: 0.75rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
}

/* Footer Styling */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-col-title {
  font-size: 1.2rem;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background: var(--accent-amber);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.footer-links a:hover {
  color: var(--accent-amber);
  padding-right: 0.35rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  top: 90px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--accent-amber);
  color: var(--text-heading);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateX(-150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 1000000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE MEDIA QUERIES */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .heading-card-with-img, .heading-card-with-img.reverse {
    grid-template-columns: 1fr !important;
  }
  .heading-img-box {
    max-height: 240px;
    min-height: 200px;
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .content-section {
    padding: 3rem 0;
  }

  .header-actions .btn,
  .header-actions .header-phone {
    display: none !important;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.7rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid var(--border-color);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-section {
    padding: 2.5rem 0;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .floating-circular-cta {
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }

  .circular-cta-btn {
    width: 56px;
    height: 56px;
  }

  .circular-cta-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .floating-circular-cta {
    bottom: 16px;
    left: 16px;
  }

  .circular-cta-btn {
    width: 50px;
    height: 50px;
  }

  .circular-cta-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 360px) {
  .cta-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
