/* ============================================
   ARAB CITY GROUP - STYLES
   Design System: Dark Luxury Real Estate Theme
   Exact match with arabcitygroup.lovable.app
   ============================================ */

/* CSS Variables - Design Tokens (Exact colors from original) */
:root {
  /* Colors - Exact from original */
  --color-dark: #0d1210;
  --color-dark-secondary: #073f3e;
  --color-dark-tertiary: #1a221e;
  --color-dark-card: #073f3e;

  --color-gold: #c9a962;
  --color-gold-light: #d4b87a;
  --color-gold-dark: #b8923f;

  --color-white: #ffffff;
  --bg-grey: #f0e9da;
  --bg-main: #ffffff;
  --main-color: #073f3e;
  --color-text: #e8e8e8;
  --color-text-muted: #ffffff;
  --color-text-dark: #073f3e;
  --color-text-dim: #6b7280;

  --color-green: #22c55e;
  --color-blue: #3b82f6;
  --color-orange: #f97316;

  /* Gradients */
  --gradient-gold: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 100%
  );
  --gradient-dark: linear-gradient(
    180deg,
    var(--color-dark) 0%,
    var(--color-dark-secondary) 100%
  );
  --gradient-overlay: linear-gradient(
    180deg,
    rgba(13, 18, 16, 0.7) 0%,
    rgba(13, 18, 16, 0.9) 100%
  );

  /* Typography */
  --font-family: "Cairo", sans-serif;

  /* Spacing */
  --container-width: 1380px;
  --section-padding: 80px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  /* background-color: var(--color-dark); */
  color: var(--color-text);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold svg {
  width: 16px;
  height: 16px;
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: var(--color-gold-light);
}

.btn-gold-sm {
  background: var(--gradient-gold);
  color: var(--color-dark);
  padding: 10px 20px;
  font-size: 14px;
  width: 100%;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #073f3e;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 72px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid #205352;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 18px;
  color: var(--color-text);
  transition: color var(--transition-fast);
}
.bold{
  font-weight: bold;
}

.nav-link:hover {
  color: var(--color-gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-gold);
}

.phone-number svg {
  width: 16px;
  height: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-dark-secondary);
  padding: 20px;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta {
  margin-top: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--color-dark);
  z-index: 0;
}

.hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  border: none;
}

.hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 18, 16, 0.6) 0%,
    rgba(13, 18, 16, 0.85) 100%
  );
  z-index: 2;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.watermark-text {
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.watermark-year {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 10px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(7 63 62);
  border: 1px solid rgb(7 63 62);
  padding: 20px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 30px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.title-line {
  display: block;
}

.title-gold {
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    height: 60px;
  }
  50% {
    opacity: 0.5;
    height: 40px;
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #fbd28b;
  background: #073f3e;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.section-title span {
  color: var(--main-color);
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--bg-main);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--color-text-dark);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--color-dark-card);
  border-radius: var(--radius-md);
  border-right: 3px solid var(--color-gold);
}

.about-stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
}

.about-stat-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text-muted);
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-img {
  border-radius: var(--radius-md);
}

.about-slogan {
  position: absolute;
  bottom: -20px;
  right: 40px;
  background: var(--color-dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: 8px;
}

.slogan-gold {
  color: var(--color-gold);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  background: var(--bg-grey);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-dark-secondary);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 20px;
  color: var(--color-gold);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.feature-text {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ============================================
   PROJECT TYPES
   ============================================ */
.project-types {
  background: var(--bg-main);
}

.project-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-type-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.project-type-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.project-type-card:hover .project-type-image {
  transform: scale(1.1);
}

.project-type-content {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 32px;
  z-index: 10;
}

.project-count {
  display: inline-block;
  background: rgba(201, 169, 98,1);
  color: var(--color-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
}

.project-type-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-type-content p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.project-link {
  color: var(--color-gold);
  font-size: 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.project-link:hover {
  gap: 12px;
}

.project-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   FEATURED PROJECTS
   ============================================ */
.featured-projects {
  background: var(--bg-grey);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--color-dark-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.project-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-4px);
}

.project-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.project-badge.ready,.project-badge.new {
  background: var(--color-green);
  color: white;
}

.project-badge.under-construction, .project-badge.construction {
  background: var(--color-blue);
  color: white;
}
.project-badge.sold-out {
  background: var(--color-orange);
  color: white;
}



.project-badge.available {
  background: var(--color-orange);
  color: white;
}

.project-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.project-type-badge.luxury {
  background: var(--color-gold);
  color: var(--color-dark);
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-location,
.project-area {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-location svg,
.project-area svg {
  width: 14px;
  height: 14px;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.project-features span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(201, 169, 98, 0.1);
  color: #ffffff;
  border-radius: 20px;
}

.projects-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator {
  background: var(--bg-main);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.calculator-inputs {
  background: var(--color-dark-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calculator-inputs h3 {
  font-size: 24px;
  margin-bottom: 32px;
  color: var(--color-gold);
}

.input-group {
  margin-bottom: 28px;
}

.input-group label {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 8px;
  margin-left: 15px;
  color: var(--color-text-muted);
}

.input-value {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  background: var(--color-dark-tertiary);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 16px;
  color: #c9a962;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-card {
  background: var(--color-dark-card);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-card.highlight {
  background: rgba(201, 169, 98, 0.1);
  border-color: rgba(201, 169, 98, 0.3);
}

.result-label {
  display: block;
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.result-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
}

.result-profit {
  display: block;
  font-size: 18px;
  color: var(--color-green);
  margin-top: 8px;
}

.calculator-note {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin: 24px 0;
  padding: 16px;
  background: var(--color-dark-card);
  border-radius: var(--radius-md);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--bg-grey);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-dark-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number-large {
  font-size: 56px;
  font-weight: 800;
  color: var(--color-gold);
  display: inline;
}

.stat-plus {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-text {
  display: block;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-main);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-dark-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 60px;
  color: rgba(201, 169, 98, 0.2);
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
}

.author-role {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-grey);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-wrapper {
  background: var(--color-dark-secondary);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--color-gold);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--color-dark-secondary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-icon {
  color: var(--color-gold);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 18px;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark-secondary);
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-img {
  height: 124px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--color-text-muted);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.footer-links a {
  display: block;
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 18px;
  color: var(--color-text);
  text-align: center;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .features-grid,
  .projects-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-types-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .calculator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .features-grid,
  .projects-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-slogan {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .whatsapp-btn {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   BLOG PAGES STYLES
   ============================================ */

/* Page Header */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  /* background: var(--bg-grey); */
  background: url(/images/bg.jpg) center/cover no-repeat;
  text-align: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.8;
}

.page-header .container {
  position: relative;
  z-index: 10;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--main-gold);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.breadcrumb-separator {
  display: flex;
  align-items: center;
}

.page-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
}

/* Blog Categories */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.category-btn {
  padding: 10px 24px;
  background: var(--color-dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 50px;
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.blog-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 98, 0.2);
}

.blog-card-image {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.blog-card-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-title a:hover {
  color: var(--color-gold);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
}

.blog-read-more:hover {
  gap: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.pagination-ellipsis {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--color-text);
  font-size: 14px;
  user-select: none;
}

/* Blog Single Page */
.blog-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
}

.blog-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.blog-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 18, 16, 0.85) 0%,
    rgba(13, 18, 16, 0.95) 100%
  );
}

.blog-header .container {
  position: relative;
  z-index: 10;
}

.blog-single-category {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
}

.blog-single-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-single-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Blog Content Layout */
.blog-content-section {
  padding: 60px 0 80px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  margin-bottom: 80px;
}

.blog-article {
  max-width: 100%;
}

.blog-featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
}

.blog-body {
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text);
}

.blog-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--color-white);
}

.blog-body p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.blog-body .blog-intro {
  font-size: 19px;
  color: var(--color-text);
}

.blog-body ul,
.blog-body ol {
  margin: 20px 0;
  padding-right: 24px;
}

.blog-body li {
  margin-bottom: 12px;
  color: var(--color-text-muted);
}

.blog-highlight {
  background: var(--color-dark-card);
  border-right: 4px solid var(--color-gold);
  padding: 24px;
  border-radius: var(--radius-md);
  margin: 32px 0;
}

.blog-highlight h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.blog-inline-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}

.blog-cta-box {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.15) 0%,
    rgba(201, 169, 98, 0.05) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 40px 0;
  color: var(--color-text-dark);
}

.blog-cta-box.style2 {
  background: linear-gradient(
    135deg,
    rgba(7, 63, 62, 0.9) 0%,
    rgba(7, 63, 62, 0.35) 100%
  ) !important;
  border: 1px solid rgba(7, 63, 62, 0.3) !important;
  color: #ffffff;
}

.blog-cta-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.blog-cta-box p {
  margin-bottom: 20px;
}

/* Share Section */
.blog-share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.share-label {
  font-weight: 600;
  color: var(--color-text-dark);
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark-card);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.share-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* Author Box */
.author-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--color-dark-card);
  /* border-radius: var(--radius-lg); */
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.author-info h4,.author-info div {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.author-info p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--color-dark-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--color-text-dark);
}

.widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-text-muted);
  color: var(--color-text-muted);
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--color-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-family);
}

.search-btn-icon {
  width: 48px;
  background: var(--color-gold);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-dark);
  cursor: pointer;
}

.category-list {
  list-style: none;
}

.category-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-muted);
}

.category-list a:hover {
  color: var(--color-gold);
}

.category-list span {
  color: var(--color-gold);
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post {
  display: flex;
  gap: 12px;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.recent-post-info h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.recent-post-info span {
  font-size: 12px;
  color: var(--color-text-dim);
}

.recent-post:hover h5 {
  color: var(--color-gold);
}

.cta-widget {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.2) 0%,
    rgba(201, 169, 98, 0.1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.3);
  text-align: center;
}

.cta-widget h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.cta-widget p {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-bottom: 20px;
}

/* Related Posts */
.related-posts {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text-dark);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform var(--transition-fast);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.nav-link.active {
  color: var(--color-gold);
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-categories {
    gap: 8px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .blog-share {
    flex-direction: column;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
}

.mt-5 {
  margin-top: 20px;
}
