/* ============================================================
   LFC House CMS - Frontend Stylesheet
   Author: LFC House Team
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --primary: #c9a04e;
  --primary-light: #dbb96a;
  --primary-dark: #a8822e;
  --primary-rgb: 201, 160, 78;

  --dark: #0a0a0a;
  --darker: #050505;
  --section: #111111;
  --card: #1a1a1a;
  --card-hover: #222222;

  --text: #f5f5f5;
  --text-muted: #888888;
  --text-light: #aaaaaa;

  --border: #2a2a2a;
  --border-light: #333333;

  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Cairo', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(var(--primary-rgb), 0.15);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --header-height: 80px;
  --topbar-height: 38px;
  --container-width: 1200px;

  --whatsapp: #25d366;
  --whatsapp-dark: #128C7E;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--primary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  background-color: var(--dark);
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   3. Top Header Bar
   ============================================================ */
.top-bar {
  background-color: var(--primary);
  color: var(--dark);
  font-size: 0.8125rem;
  padding: 8px 0;
  line-height: 1.4;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.top-bar-info i {
  font-size: 0.875rem;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-social a {
  color: var(--dark);
  transition: opacity var(--transition);
  font-size: 0.9375rem;
}

.top-bar-social a:hover {
  opacity: 0.7;
  color: var(--dark);
}

/* ============================================================
   4. Navigation
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: all var(--transition);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  flex-shrink: 0;
}

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

.logo span {
  color: var(--primary);
}

/* Main Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav > li > a:hover,
.nav > li > a.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
}

.nav > li > a i {
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.nav > li:hover > a i {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  min-width: 700px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.nav > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-menu-column h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.mega-menu-column ul li {
  margin-bottom: 8px;
}

.mega-menu-column ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: block;
  transition: all var(--transition);
}

.mega-menu-column ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  transform: translateY(10px);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.nav > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-actions a {
  color: var(--text);
  font-size: 1.125rem;
  transition: color var(--transition);
}

.header-actions a:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger span + span {
  margin-top: 6px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--darker);
  padding: 100px 30px 30px;
  z-index: 999;
  transition: right var(--transition);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.mobile-nav.open {
  right: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav > li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.mobile-nav > li > a:hover {
  color: var(--primary);
}

.mobile-nav .submenu {
  display: none;
  padding: 0 0 10px 16px;
}

.mobile-nav .submenu.open {
  display: block;
}

.mobile-nav .submenu li a {
  display: block;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mobile-nav .submenu li a:hover {
  color: var(--primary);
}

/* ============================================================
   5. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--darker);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.85) 0%,
    rgba(5, 5, 5, 0.5) 50%,
    rgba(5, 5, 5, 0.75) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(var(--primary-rgb), 0.12);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero-dots button.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

.hero-dots button:hover {
  border-color: var(--primary);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

/* ============================================================
   6. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn i {
  font-size: 1.1em;
}

/* ============================================================
   7. Cards
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
  background: var(--card-hover);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--primary);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-card .btn {
  font-size: 0.8125rem;
  padding: 10px 24px;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

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

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 14px;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
}

.blog-card-body {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--text);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.blog-card .btn-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .btn-link:hover {
  gap: 10px;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

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

.team-card-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transition: bottom var(--transition);
}

.team-card:hover .team-card-social {
  bottom: 0;
}

.team-card-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.team-card-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.team-card-body {
  padding: 24px 20px;
}

.team-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-body span {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 500;
}

.team-card-body p {
  font-size: 0.85rem;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================================================
   8. Counter Section
   ============================================================ */
.counter-section {
  position: relative;
  background: var(--section);
  padding: 80px 0;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/counter-bg.jpg') center / cover no-repeat;
  opacity: 0.05;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 30px 20px;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.counter-number {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.counter-number span {
  color: var(--primary);
}

.counter-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   9. Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 35px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  line-height: 1;
  color: rgba(var(--primary-rgb), 0.15);
  position: absolute;
  top: 20px;
  right: 25px;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 0.9375rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h5 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   10. Partner Logos
   ============================================================ */
.partners-section {
  padding: 60px 0;
  background: var(--section);
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-item {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--transition);
  padding: 10px;
}

.partner-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.partner-item img {
  max-height: 60px;
  width: auto;
}

/* ============================================================
   11. CTA Section
   ============================================================ */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--dark);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--dark);
  color: var(--text);
  border-color: var(--dark);
}

.cta-section .btn:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.cta-section .btn-secondary {
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--dark);
}

.cta-section .btn-secondary:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--text);
}

/* ============================================================
   12. Contact Form
   ============================================================ */
.contact-section {
  background: var(--section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-detail-text h5 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  background: var(--card-hover);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-error {
  font-size: 0.8125rem;
  color: #e74c3c;
  margin-top: 6px;
  display: none;
}

.form-input.error,
.form-textarea.error {
  border-color: #e74c3c;
}

.form-input.error ~ .form-error,
.form-textarea.error ~ .form-error {
  display: block;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: var(--radius-sm);
  color: #2ecc71;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.form-success.show {
  display: block;
}

/* ============================================================
   13. Footer
   ============================================================ */
.footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-about p {
  font-size: 0.875rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.footer-links li a::before {
  content: '\203A';
  color: var(--primary);
  font-size: 1.1rem;
}

.footer-links li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  margin: 0;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================================
   14. WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

/* Pulse Animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 0.2; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   15. Back to Top
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.4);
  color: var(--dark);
}

/* ============================================================
   16. Pagination
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.pagination a:hover {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   17. Blog Sidebar
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 30px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
}

/* Search Widget */
.search-widget form {
  display: flex;
  gap: 0;
}

.search-widget input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--section);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
}

.search-widget input:focus {
  border-color: var(--primary);
}

.search-widget button {
  padding: 12px 20px;
  background: var(--primary);
  color: var(--dark);
  border: 1px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}

.search-widget button:hover {
  background: var(--primary-light);
}

/* Categories Widget */
.categories-widget ul li {
  border-bottom: 1px solid var(--border);
}

.categories-widget ul li:last-child {
  border-bottom: none;
}

.categories-widget ul li a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.categories-widget ul li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.categories-widget ul li a span {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* Tags Widget */
.tags-widget .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-widget .tag {
  padding: 6px 16px;
  background: var(--section);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.tags-widget .tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* ============================================================
   18. Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 20px 0;
  background: var(--section);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8125rem;
}

.breadcrumbs ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.breadcrumbs ul li + li::before {
  content: '/';
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumbs ul li:last-child {
  color: var(--primary);
}

.breadcrumbs ul li a {
  color: var(--text-muted);
}

.breadcrumbs ul li a:hover {
  color: var(--primary);
}

/* ============================================================
   19. Page Header / Banner
   ============================================================ */
.page-header {
  position: relative;
  padding: 120px 0 80px;
  background: var(--darker);
  overflow: hidden;
  text-align: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   20. Loading Spinner
   ============================================================ */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Fullscreen Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader .spinner {
  width: 64px;
  height: 64px;
  border-width: 4px;
}

/* ============================================================
   21. Animations
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
}

.animate.fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate.slideInLeft {
  animation: slideInLeft 0.6s ease forwards;
}

.animate.slideInRight {
  animation: slideInRight 0.6s ease forwards;
}

.animate.zoomIn {
  animation: zoomIn 0.6s ease forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ============================================================
   22. Utility Classes
   ============================================================ */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.flex-wrap { flex-wrap: wrap; }

/* ============================================================
   23. RTL Support
   ============================================================ */
[dir="rtl"] .top-bar-info {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .hero p {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .service-card::before {
  transform-origin: right;
}

[dir="rtl"] .blog-card-category {
  left: auto;
  right: 15px;
}

[dir="rtl"] .testimonial-card::before {
  right: auto;
  left: 25px;
}

[dir="rtl"] .testimonial-author {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-detail-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-col h4::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .footer-links li a::before {
  content: '\2039';
}

[dir="rtl"] .footer-links li a:hover {
  padding-left: 0;
  padding-right: 5px;
}

[dir="rtl"] .search-widget input {
  border-right: 1px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

[dir="rtl"] .search-widget button {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

[dir="rtl"] .categories-widget ul li a:hover {
  padding-left: 0;
  padding-right: 6px;
}

[dir="rtl"] .form-select {
  background-position: left 16px center;
  padding-right: 18px;
  padding-left: 40px;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 30px;
}

[dir="rtl"] .whatsapp-float .tooltip {
  right: auto;
  left: 70px;
}

[dir="rtl"] .whatsapp-float .tooltip::after {
  right: auto;
  left: -6px;
  border-left: none;
  border-right: 6px solid var(--dark);
}

[dir="rtl"] .whatsapp-float:hover .tooltip {
  right: auto;
  left: 80px;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 30px;
}

[dir="rtl"] .pagination {
  direction: ltr;
}

[dir="rtl"] .blog-layout {
  direction: ltr;
}

[dir="rtl"] .blog-layout > * {
  direction: rtl;
}

[dir="rtl"] .sidebar-widget h4 {
  text-align: right;
}

[dir="rtl"] .contact-grid {
  direction: ltr;
}

[dir="rtl"] .contact-grid > * {
  direction: rtl;
}

[dir="rtl"] .mobile-nav {
  right: auto;
  left: -100%;
}

[dir="rtl"] .mobile-nav.open {
  right: auto;
  left: 0;
}

[dir="rtl"] .mobile-nav .submenu {
  padding: 0 16px 10px 0;
}

[dir="rtl"] .section-title h2::after {
  margin: 15px auto 0;
}

/* ============================================================
   24. Responsive
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

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

  .blog-layout {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }

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

/* 992px */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

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

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

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

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

  .mega-menu {
    min-width: auto;
    width: 100%;
    left: 0;
    transform: translateX(0) translateY(10px);
  }

  .nav > li:hover .mega-menu {
    transform: translateX(0) translateY(0);
  }
}

/* 768px */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 6px;
  }

  .top-bar-info {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

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

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

  .footer-main {
    padding: 50px 0 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .counter-item {
    padding: 20px 10px;
  }

  .partners-grid {
    gap: 24px;
  }

  .partner-item img {
    max-height: 40px;
  }

  .page-header {
    padding: 100px 0 60px;
  }

  .blog-card-image {
    aspect-ratio: 16 / 9;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  [dir="rtl"] .back-to-top {
    right: auto;
    left: 20px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.9375rem;
  }

  .hero .btn {
    font-size: 0.8125rem;
    padding: 12px 24px;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .counter-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .team-card-body {
    padding: 18px 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .sidebar-widget {
    padding: 20px;
  }

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

  .footer-bottom-links {
    justify-content: center;
  }

  .page-header {
    padding: 80px 0 40px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .breadcrumbs {
    padding: 14px 0;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    bottom: 16px;
    right: 16px;
  }

  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 16px;
  }

  .back-to-top {
    bottom: 70px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }

  [dir="rtl"] .back-to-top {
    right: auto;
    left: 16px;
  }
}
