﻿/* CSS Custom Properties for Brand Colors */
:root {
  /* Primary Colors */
  --primary-blue: #282A73;
  --primary-bronze: #B8860B;
  
  /* Secondary Colors */
  --secondary-light-blue: #C5D9E7;
  --secondary-beige: #F3E7D7;
  
  /* RGB Values for transparency effects */
  --primary-blue-rgb: 40, 42, 115;
  --primary-bronze-rgb: 184, 134, 11;
  --secondary-light-blue-rgb: 197, 217, 231;
  --secondary-beige-rgb: 243, 231, 215;
  
  /* Derived colors for better UI */
  --primary-blue-light: #3A3C85;
  --primary-blue-dark: #1E2061;
  --accent-color: #FF6B6B;
  
  /* Success and Info Colors for Real Estate Business */
  --success-green: #28a745;
  --info-blue: #17a2b8;
  --warning-orange: #ffc107;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  /* RTL Support */
  direction: rtl;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-blue);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  font-family: 'Almarai', 'Tajawal', 'Cairo', 'El Messiri', 'Inter', 'Segoe UI', Arial, sans-serif;
  line-height: 1.8;
  direction: rtl;
  text-align: right;
}

/* Arabic Font Imports - Updated to use official brand typography */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');

/* Alternative high-quality Arabic fonts that approximate 29LT ZAWI */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');

/* RTL Specific Overrides */
.container, .container-fluid {
  direction: rtl;
}

/* Brand Logo and Buildings CSS */
.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-buildings {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 32px;
  transition: all 0.3s ease;
}

.building {
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-bronze) 100%);
  border-radius: 2px 2px 0 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.building-1 {
  width: 8px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary-blue-light) 0%, var(--primary-blue) 100%);
}

.building-2 {
  width: 10px;
  height: 32px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-bronze) 100%);
}

.building-3 {
  width: 7px;
  height: 25px;
  background: linear-gradient(180deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
}

/* Hover effects for buildings */
.navbar-brand-custom:hover .building-1 {
  height: 22px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-bronze) 100%);
}

.navbar-brand-custom:hover .building-2 {
  height: 28px;
  background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-bronze) 100%);
}

.navbar-brand-custom:hover .building-3 {
  height: 30px;
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-bronze) 100%);
}

/* Enhanced Brand Logo with Image and Text */
.brand-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.brand-logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-logo-image.loaded,
.brand-logo-image:not([src*="logo.png"]) {
  opacity: 1;
}

.brand-text-content {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Almarai', 'Tajawal', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  transition: color 0.3s ease;
}

.brand-slogan {
  font-family: 'Almarai', 'Cairo', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--primary-bronze);
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

/* Navbar brand hover effects */
.navbar-brand-custom:hover .brand-logo-image {
  transform: scale(1.05);
}

.navbar-brand-custom:hover .brand-name {
  color: var(--primary-blue-dark);
}

.navbar-brand-custom:hover .brand-slogan {
  opacity: 1;
  color: var(--primary-bronze);
}

/* Logo sizing for different contexts */
.navbar-brand .brand-logo-image {
  height: 40px;
}

.footer-brand .brand-logo-image {
  height: 35px;
  filter: brightness(1.2);
}

.contact-form .brand-logo-image {
  height: 50px;
}

.hero-brand-logo .brand-logo-image {
  height: 80px;
}

/* Hide CSS buildings logo when image logo is present and loaded */
.brand-text .brand-logo-image.loaded ~ .brand-buildings {
  display: none;
}

/* Show CSS buildings logo only when image fails or is not present */
.brand-logo-container:has(.brand-logo-image.loaded) .brand-buildings {
  display: none;
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
  .brand-text .brand-logo-image[style*="display: none"] + .brand-buildings,
  .no-logo .brand-buildings {
    display: flex;
  }
}

/* WhatsApp Button Styling */
.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E) !important;
  border: none !important;
  color: white !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: linear-gradient(45deg, #128C7E, #25D366) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white !important;
}

.whatsapp-btn i {
  margin-left: 8px;
}

/* Landing Page Styles with New Brand Colors and RTL Support */
.hero-section {
    background-image: url('/img/background.png');
    background-size: contain, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
    min-height: 85vh;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-blue-rgb), 0.8), rgba(var(--primary-bronze-rgb), 0.7));
    pointer-events: none;
}

.hero-content {
  z-index: 2;
  position: relative;
  max-width: 900px;
  padding: 2rem;
  direction: rtl;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: slideInUp 1s ease-out;
  font-family: 'Almarai', 'Tajawal', sans-serif;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 1s ease-out 0.2s both;
  font-family: 'Almarai', 'Cairo', sans-serif;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out 0.4s both;
  font-family: 'Almarai', 'Tajawal', sans-serif;
  line-height: 1.6;
}

.cta-buttons {
  animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary-custom {
  background: linear-gradient(45deg, var(--accent-color), #ee5a52);
  border: none;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin: 0 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  font-family: 'Tajawal', sans-serif;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  color: white;
}

.btn-secondary-custom {
  background: transparent;
  border: 2px solid white;
  padding: 16px 43px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin: 0 15px;
  transition: all 0.3s ease;
  font-family: 'Tajawal', sans-serif;
}

.btn-secondary-custom:hover {
  background: white;
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Real Estate Services Section */
.services-section {
  padding: 100px 0;
  background: var(--secondary-beige);
}

.service-highlight {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(var(--primary-blue-rgb), 0.1);
  border-right: 5px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.service-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(var(--primary-blue-rgb), 0.15);
}

.service-highlight h3 {
  color: var(--primary-blue);
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-highlight ul {
  list-style: none;
  padding-right: 0;
}

.service-highlight ul li {
  padding: 8px 0;
  padding-right: 25px;
  position: relative;
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
}

.service-highlight ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--secondary-light-blue);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-blue-dark);
  font-family: 'Almarai', 'Tajawal', sans-serif;
  line-height: 1.2;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(var(--primary-blue-rgb), 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: none;
  height: 100%;
  position: relative;
  margin: 20px 10px 30px 10px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-bronze));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(var(--primary-blue-rgb), 0.15);
  margin: 15px 5px 35px 5px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-bronze));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(var(--primary-blue-rgb), 0.2);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(var(--primary-blue-rgb), 0.3);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-blue-dark);
  font-family: 'Almarai', 'Tajawal', sans-serif;
  line-height: 1.4;
  padding: 0 10px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-description {
  color: #666;
  line-height: 1.8;
  font-family: 'Almarai', 'Cairo', sans-serif;
  font-size: 1rem;
  padding: 0 15px;
  min-height: 50px;
}

/* Benefits Section Specific Padding */
.about-section#benefits {
  padding: 120px 0;
}

.about-section#benefits .container {
  padding: 0 30px;
}

.about-section#benefits .row.mt-4 {
  margin-top: 2rem !important;
  row-gap: 25px;
}

.about-section#benefits .col-lg-6 {
  padding: 0 20px;
  margin-bottom: 30px;
}

/* Enhanced Contact Items with Better Layout */
.contact-item {
  margin-bottom: 25px;
  text-align: center;
  padding: 0;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  font-family: 'Almarai', 'Tajawal', sans-serif;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  width: 100%;
  max-width: 250px;
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

.contact-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.contact-item a:hover::before {
  left: 100%;
}

.contact-item .whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
  border: 2px solid #25D366;
}

.contact-item .whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
  background: linear-gradient(45deg, #128C7E, #25D366);
}

.contact-item .whatsapp-btn i {
  font-size: 1.4rem;
}

.contact-item .btn-primary-custom {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-blue-dark));
  border: 2px solid var(--primary-blue);
  color: white;
}

.contact-item .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--primary-blue-rgb), 0.4);
  background: linear-gradient(45deg, var(--primary-blue-dark), var(--primary-blue));
  color: white;
}

.contact-item .btn-primary-custom i {
  font-size: 1.3rem;
}

.contact-item .btn-secondary-custom.phone-btn {
  background: linear-gradient(45deg, var(--primary-bronze), #DAA520);
  border: 2px solid var(--primary-bronze);
  color: white;
}

.contact-item .btn-secondary-custom.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(var(--primary-bronze-rgb), 0.4);
  background: linear-gradient(45deg, #DAA520, var(--primary-bronze));
  color: white;
}

.contact-item .btn-secondary-custom.phone-btn i {
  font-size: 1.3rem;
}

/* Modern Footer Styles with New Brand Colors */
.footer-modern {
  background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
  color: #ecf0f1;
  position: relative;
  margin-top: 0;
  direction: rtl;
}

.footer-wave {
  position: relative;
  top: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  fill: var(--secondary-light-blue);
}

.footer-content {
  padding: 60px 0 40px;
  position: relative;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
}

.footer-logo i {
  background: linear-gradient(45deg, var(--secondary-beige), var(--secondary-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  margin-left: 10px;
}

.footer-description {
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  font-family: 'Tajawal', sans-serif;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, var(--secondary-beige), var(--secondary-light-blue));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Cairo', sans-serif;
}

.footer-links a:hover {
  color: var(--secondary-light-blue);
  transform: translateX(-5px);
}

.footer-links a::before {
  content: '◀';
  position: absolute;
  right: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  color: var(--secondary-light-blue);
}

.footer-links a:hover::before {
  opacity: 1;
  right: -12px;
}

/* Social Links with Brand Colors */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 0;
}

.social-link i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.social-link.facebook {
  background: rgba(var(--secondary-light-blue-rgb), 0.2);
  border: 2px solid rgba(var(--secondary-light-blue-rgb), 0.3);
}

.social-link.facebook::before {
  background: var(--secondary-light-blue);
}

.social-link.twitter {
  background: rgba(var(--secondary-light-blue-rgb), 0.2);
  border: 2px solid rgba(var(--secondary-light-blue-rgb), 0.3);
}

.social-link.twitter::before {
  background: var(--secondary-light-blue);
}

.social-link.linkedin {
  background: rgba(var(--primary-blue-rgb), 0.2);
  border: 2px solid rgba(var(--primary-blue-rgb), 0.3);
}

.social-link.linkedin::before {
  background: var(--primary-blue);
}

.social-link.instagram {
  background: rgba(var(--secondary-beige-rgb), 0.2);
  border: 2px solid rgba(var(--secondary-beige-rgb), 0.3);
}

.social-link.instagram::before {
  background: linear-gradient(45deg, var(--secondary-beige) 0%, var(--primary-bronze) 100%);
}

.social-link.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 2px solid rgba(37, 211, 102, 0.3);
}

.social-link.whatsapp::before {
  background: #25D366;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Contact Info */
.contact-info {
  margin-top: 20px;
}

.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #bdc3c7;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
  text-align: right;
  padding: 0;
}

.contact-info .contact-item i {
  color: var(--secondary-light-blue);
  margin-left: 12px;
  margin-top: 3px;
  font-size: 1rem;
  width: 16px;
}

.contact-info .contact-item span {
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: #bdc3c7;
  font-size: 1rem;
  font-family: 'Cairo', sans-serif;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.footer-bottom-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.footer-bottom-links a:hover {
  color: var(--secondary-light-blue);
}

.separator {
  color: #7f8c8d;
  margin: 0 10px;
}

/* Navbar Enhancements with Brand Colors and RTL */
.navbar-brand {
  color: var(--primary-blue) !important;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
}

.navbar-brand i {
  color: var(--primary-bronze);
  margin-left: 10px;
}

.nav-link {
  font-family: 'Cairo', sans-serif;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-bronze) 100%);
  padding: 80px 0;
  color: white;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Tajawal', sans-serif;
  margin-bottom: 10px;
  color: white;
}

.stat-label {
  font-size: 1.2rem;
  font-family: 'Cairo', sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.trust-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(var(--primary-blue-rgb), 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(var(--primary-blue-rgb), 0.15);
}

.trust-item i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.trust-item h4 {
  color: var(--primary-blue-dark);
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.trust-item p {
  color: #666;
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 576px) {
  .brand-logo-image {
    height: 35px;
  }
  
  .hero-brand-logo .brand-logo-image {
    height: 60px;
  }
  
  .navbar-brand .brand-logo-image {
    height: 30px;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .brand-slogan {
    font-size: 0.7rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .contact-item a {
    padding: 14px 25px;
    font-size: 0.95rem;
    max-width: 200px;
    min-height: 45px;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .brand-text {
    gap: 8px;
  }
  
  .brand-name {
    font-size: 1.3rem;
  }
  
  .brand-slogan {
    font-size: 0.72rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .contact-item a {
    padding: 16px 30px;
    font-size: 1rem;
    max-width: 220px;
    min-height: 50px;
    gap: 10px;
  }
}