/* ===================================
   قالب موقع شركة ترميم وصيانة المباني
   Premium Modern Arabic RTL Template
   =================================== */

/* ===== CSS Variables ===== */
:root {
  /* Primary Colors - Premium Blue */
  --primary-color: #0f4c81;
  --primary-dark: #0a3459;
  --primary-light: #1a73b8;
  --primary-gradient: linear-gradient(135deg, #0f4c81 0%, #1a73b8 50%, #2196f3 100%);

  /* Secondary Colors - Premium Gold */
  --secondary-color: #c9a227;
  --secondary-dark: #a68520;
  --secondary-light: #e4b82f;
  --secondary-gradient: linear-gradient(135deg, #c9a227 0%, #e4b82f 100%);

  /* Accent Colors */
  --accent-green: #00c853;
  --accent-orange: #ff6b35;
  --accent-red: #ff3d57;

  /* Neutral Colors */
  --dark-color: #0a1628;
  --dark-blue: #1a2744;
  --gray-dark: #374151;
  --gray-medium: #6b7280;
  --gray-light: #d1d5db;
  --light-bg: #f8fafc;
  --white: #ffffff;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-primary: 'Cairo', 'Tajawal', sans-serif;
  --font-heading: 'Almarai', 'Cairo', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Shadows - Premium */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(15, 76, 129, 0.3);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.3);
  --shadow-neon: 0 0 20px rgba(33, 150, 243, 0.6);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Premium Keyframe Animations ===== */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float-up-down {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes text-glow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
  }

  50% {
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.8), 0 0 60px rgba(201, 162, 39, 0.4);
  }
}

@keyframes border-dance {

  0%,
  100% {
    border-color: var(--primary-color);
  }

  50% {
    border-color: var(--secondary-color);
  }
}

@keyframes scale-in {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white);
  color: var(--dark-color);
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: var(--white);
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== Premium Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(15, 76, 129, 0.4);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: var(--dark-color);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 0 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: linear-gradient(135deg, #ff6b35 0%, #ff3d57 100%);
  color: var(--white);
  box-shadow: var(--shadow-md), 0 0 30px rgba(255, 107, 53, 0.3);
}

.btn-call:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(255, 107, 53, 0.5);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* ===== Premium Top Bar ===== */
.top-bar {
  background: linear-gradient(90deg, var(--dark-color) 0%, var(--dark-blue) 100%);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.top-bar-info i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  color: var(--white);
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.top-bar-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px) rotate(5deg);
}

/* ===== Premium Header ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text span {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu>a,
.nav-menu .dropdown>a {
  padding: 12px 20px;
  color: var(--gray-dark);
  font-weight: 600;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.nav-menu>a::before,
.nav-menu .dropdown>a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-menu>a:hover,
.nav-menu>a.active,
.nav-menu .dropdown>a:hover {
  color: var(--primary-color);
  background: rgba(15, 76, 129, 0.05);
}

.nav-menu>a:hover::before,
.nav-menu>a.active::before {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  min-width: 240px;
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: var(--transition-normal);
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--gray-dark);
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(15, 76, 129, 0.1) 0%, transparent 100%);
  color: var(--primary-color);
  padding-right: 25px;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  gap: 12px;
}

.header-buttons .btn {
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  z-index: 1001;
  background: transparent;
  border: none;
}

.menu-toggle:hover {
  background: rgba(15, 76, 129, 0.1);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Premium Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 76, 129, 0.9) 50%, rgba(26, 115, 184, 0.85) 100%),
    url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
}

/* Animated Background Particles */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 36px;
  line-height: 2;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* ===== Premium Section Styles ===== */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-gray {
  background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
}

.section-dark {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-blue) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 5px;
  background: var(--secondary-gradient);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--gray-medium);
  font-size: 1.15rem;
}

/* ===== Premium Service Cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 35px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(15, 76, 129, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(15, 76, 129, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  font-size: 2.2rem;
  color: var(--white);
  transition: var(--transition-bounce);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: var(--gray-medium);
  position: relative;
  z-index: 1;
}

.service-card .btn {
  padding: 12px 30px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ===== Premium Why Us Section ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.why-us-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.why-us-item:hover {
  transform: translateX(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 76, 129, 0.15);
}

.why-us-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(26, 115, 184, 0.1) 100%);
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.why-us-item:hover .why-us-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: rotate(5deg) scale(1.1);
}

.why-us-content h4 {
  margin-bottom: 10px;
  color: var(--dark-color);
  font-size: 1.2rem;
}

.why-us-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--gray-medium);
}

/* ===== Premium Steps Section ===== */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 30px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 65px;
  right: 80px;
  left: 80px;
  height: 4px;
  background: var(--primary-gradient);
  z-index: 0;
  border-radius: 2px;
}

.step-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  transition: all var(--transition-bounce);
  box-shadow: var(--shadow-lg);
}

.step-item:hover .step-number {
  background: var(--primary-gradient);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: var(--shadow-glow);
}

.step-item h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.step-item p {
  font-size: 0.95rem;
  color: var(--gray-medium);
}

/* ===== Premium Cities Section ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.city-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 0;
}

.city-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.city-card:hover::before {
  opacity: 0.03;
}

.city-card i {
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.city-card h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.city-card span {
  font-size: 0.9rem;
  color: var(--gray-medium);
  position: relative;
  z-index: 1;
}

/* ===== Premium Portfolio Section ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  height: 280px;
  background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.15);
}

.portfolio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

.portfolio-card:hover .portfolio-image::before {
  opacity: 1;
}

.portfolio-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-gradient);
  color: var(--dark-color);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.portfolio-content {
  padding: 30px;
}

.portfolio-content h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.portfolio-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray-medium);
}

.portfolio-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-meta i {
  color: var(--primary-color);
}

/* ===== Premium Testimonials Section ===== */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 6rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-left: 3px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  color: var(--gray-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
}

.author-avatar-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.author-info h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.author-info span {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* ===== Premium FAQ Section ===== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: rgba(15, 76, 129, 0.2);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-color);
  transition: var(--transition-normal);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
  background: rgba(15, 76, 129, 0.1);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--primary-gradient);
  color: var(--white);
}

.faq-answer {
  display: none;
  padding: 0 30px 25px;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--gray-dark);
  line-height: 1.9;
  margin: 0;
}

/* ===== Premium CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #2196f3 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(201, 162, 39, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 180px;
}

/* ===== Premium Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--dark-color) 0%, #050a12 100%);
  color: var(--white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  padding-left: 40px;
}

.footer-about .logo-text {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--secondary-gradient);
  color: var(--dark-color);
  transform: translateY(-5px) rotate(5deg);
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--secondary-color);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-right: 10px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-top: 5px;
}

.footer-hours {
  margin-top: 20px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* ===== Premium Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  transition: all var(--transition-normal);
  position: relative;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 211, 102, 0.4);
}

.floating-btn.call {
  background: linear-gradient(135deg, #ff6b35 0%, #ff3d57 100%);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 107, 53, 0.4);
  animation-name: pulse-ring-call;
}

@keyframes pulse-ring-call {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.floating-btn:hover {
  transform: scale(1.15) rotate(-5deg);
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 162, 39, 0.15) 0%, transparent 50%);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Utilities ===== */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .top-bar-info {
    gap: 15px;
    font-size: 0.85rem;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 30px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu>a,
  .nav-menu .dropdown>a {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--radius-md);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light-bg);
    margin-top: 5px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .header-buttons {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 25px;
  }

  .stat-item {
    flex: 1 1 45%;
  }

  .steps-container::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-about {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-buttons {
    bottom: 20px;
    left: 20px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .portfolio-grid,
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .services-grid,
  .cities-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Form Styles ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact Styles ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-md);
}

.contact-info-card i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
}

.contact-info-card h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-info-card p {
  margin: 0;
  color: var(--gray-medium);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 30px;
  text-align: center;
}

.map-container {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Error Page ===== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.error-content {
  text-align: center;
  max-width: 500px;
}

.error-content h1 {
  font-size: 8rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.error-content h2 {
  margin-bottom: 15px;
}

.error-content p {
  margin-bottom: 30px;
}

.error-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

/* ===== Privacy Page ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.privacy-content ul {
  margin: 15px 0;
  padding-right: 25px;
}

.privacy-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-right: 20px;
}

.privacy-content ul li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* ===== Service Intro ===== */
.service-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-intro-image {
  height: 400px;
  background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  overflow: hidden;
}

.service-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(15, 76, 129, 0.05);
  border-radius: var(--radius-md);
}

.feature-item i {
  color: var(--accent-green);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .service-intro {
    grid-template-columns: 1fr;
  }

  .service-features {
    grid-template-columns: 1fr;
  }
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================= */

/* ===== Large Tablets & Small Desktops (1024px) ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 25px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }
}

/* ===== Tablets (768px) ===== */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Navigation Mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-color) 0%, var(--primary-dark) 100%);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .menu-toggle {
    display: flex !important;
  }

  .header-buttons {
    display: none;
  }

  /* Top Bar Mobile */
  .top-bar {
    padding: 8px 0;
    font-size: 0.85rem;
  }

  .top-bar .container {
    justify-content: center;
  }

  .top-bar-info {
    gap: 15px;
  }

  .top-bar-info span:first-child {
    display: none;
  }

  .top-bar-social {
    display: none;
  }

  /* Header Mobile */
  .header {
    padding: 12px 0;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  /* Hero Mobile */
  .hero-content {
    padding: 80px 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .stat-item {
    min-width: 120px;
  }

  /* Page Header Mobile */
  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  /* Sections Mobile */
  .section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Grids Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* Service Cards Mobile */
  .service-card {
    padding: 25px 20px;
  }

  /* Steps Mobile */
  .steps-container {
    flex-direction: column;
    gap: 25px;
  }

  .step-item {
    flex: 1;
    text-align: center;
  }

  .step-item::after {
    display: none;
  }

  /* FAQ Mobile */
  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }

  /* CTA Mobile */
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Testimonials Mobile */
  .testimonial-card {
    padding: 30px 20px;
  }

  /* Footer Mobile */
  .footer {
    padding: 50px 0 30px;
  }

  .footer-about,
  .footer-links-section,
  .footer-contact-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  /* Floating Buttons Mobile */
  .floating-buttons {
    bottom: 20px;
    right: 15px;
    gap: 12px;
  }

  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  /* Buttons Mobile */
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  /* Dropdown Mobile */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Cities Grid Mobile */
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Region Card Mobile */
  .region-cities {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact Grid Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  /* Form Mobile */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Service Intro Mobile */
  .service-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-intro-image {
    height: 280px;
    order: -1;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  /* Portfolio Image Mobile */
  .portfolio-image {
    height: 220px;
  }

  /* About Content Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Breadcrumb Mobile */
  .breadcrumb {
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Map Mobile */
  .map-container {
    height: 280px;
  }

  /* Error Page Mobile */
  .error-content h1 {
    font-size: 5rem;
  }
}

/* ===== Small Mobile (480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Typography Small */
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Hero Small */
  .hero-content {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item {
    width: 100%;
    text-align: center;
  }

  /* Page Header Small */
  .page-header {
    padding: 50px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  /* Section Header Small */
  .section-header h2 {
    font-size: 1.4rem;
  }

  /* Cards Small */
  .service-card {
    padding: 20px 15px;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  /* Buttons Small */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Logo Small */
  .logo-text {
    font-size: 1.1rem;
  }

  /* Cities Grid Small */
  .cities-grid {
    grid-template-columns: 1fr;
  }

  .region-cities {
    grid-template-columns: 1fr;
  }

  /* Portfolio Image Small */
  .portfolio-image {
    height: 200px;
  }

  /* Service Intro Image Small */
  .service-intro-image {
    height: 220px;
  }

  /* Floating Buttons Small */
  .floating-buttons {
    bottom: 15px;
    right: 10px;
    gap: 10px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Footer Small */
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-contact li {
    justify-content: center;
  }

  /* CTA Small */
  .cta-content h2 {
    font-size: 1.4rem;
  }

  /* Steps Small */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Why Us Items Small */
  .why-us-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .why-us-icon {
    margin-bottom: 15px;
  }

  /* Error Small */
  .error-content h1 {
    font-size: 4rem;
  }

  .error-links {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Very Small Screens (360px) ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
  }
}

/* ===== Landscape Mode ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    padding: 40px 20px;
  }

  .page-header {
    padding: 40px 0;
  }

  .nav-menu {
    padding-top: 60px;
  }
}

/* ===== Print Styles ===== */
@media print {

  .header,
  .top-bar,
  .floating-buttons,
  .cta-section,
  .menu-toggle {
    display: none !important;
  }

  .section {
    padding: 30px 0;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}