/* ============================================
   Lawyer Ahmed Bin Shaqool - Legal Website
   Colors: Royal Navy #1a365d, Muted Gold #c5a059, Marble White #f8fafc
   Font: Tajawal
   ============================================ */

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

/* CSS Variables */
:root {
  --color-navy: #1a365d;
  --color-navy-light: #234876;
  --color-navy-dark: #122a4a;
  --color-gold: #c5a059;
  --color-gold-light: #d4b36a;
  --color-gold-dark: #a68540;
  --color-marble: #f8fafc;
  --color-marble-dark: #e2e8f0;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--color-marble);
  color: var(--color-text);
  line-height: 1.8;
  direction: rtl;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-marble);
}

::-webkit-scrollbar-thumb {
  background: var(--color-navy);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ============================================
   NAVIGATION - UPDATED WITHOUT LOGO IMAGE
   ============================================ */
.navbar {
  background: rgba(26, 54, 93, 0.98);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(26, 54, 93, 1);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Text Only - No Image */
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo-text {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.navbar-logo-text span {
  color: var(--color-gold);
  font-size: 0.8rem;
  display: block;
  font-weight: 500;
}

/* Centered Navigation Menu */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-menu a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu a:hover {
  color: var(--color-gold);
}

.navbar-cta {
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(18, 42, 74, 0.98) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a059' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--color-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.hero-title span {
  color: var(--color-gold);
}

.hero-text {
  font-size: 1.125rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-text-highlight {
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(197, 160, 89, 0.1);
  border-right: 4px solid var(--color-gold);
  border-radius: 0 0.5rem 0.5rem 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-gold);
  border-radius: 1rem;
  z-index: -1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section */
.services {
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-marble);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid var(--color-marble-dark);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-gold);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--color-navy);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--color-gold);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.service-description {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-link {
  color: var(--color-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--color-navy);
  gap: 0.75rem;
}

/* Why Choose Us Section */
.why-us {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/services-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
}

.why-us .section-title {
  color: var(--color-white);
}

.why-us .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.why-us-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--color-navy);
}

.why-us-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.why-us-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Comparison Section */
.comparison {
  background: var(--color-marble);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.comparison-box {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.comparison-box.litigation {
  border-top: 4px solid #ef4444;
}

.comparison-box.prevention {
  border-top: 4px solid var(--color-gold);
}

.comparison-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-box.litigation .comparison-title {
  color: #ef4444;
}

.comparison-box.prevention .comparison-title {
  color: var(--color-navy);
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-marble-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list i {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.comparison-box.litigation .comparison-list i {
  color: #ef4444;
}

.comparison-box.prevention .comparison-list i {
  color: var(--color-gold);
}

/* Blog Section */
.blog {
  background: var(--color-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-marble);
  border-radius: 1rem;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-marble-dark);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-gold);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--color-navy);
  line-height: 1.5;
}

.blog-excerpt {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.blog-link {
  color: var(--color-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link:hover {
  color: var(--color-navy);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c5a059' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.cta-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: 4rem 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo-text span {
  color: var(--color-gold);
  font-size: 0.875rem;
  display: block;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.footer-title {
  font-size: 1.125rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-right: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/services-bg.jpg') center/cover no-repeat;
  opacity: 0.05;
}

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

.page-header-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-header-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  background: var(--color-white);
  padding: 4rem 0;
}

.content-box {
  max-width: 900px;
  margin: 0 auto;
}

.content-text {
  font-size: 1.125rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.content-text p {
  margin-bottom: 1.5rem;
}

.content-highlight {
  background: var(--color-marble);
  border-right: 4px solid var(--color-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.content-highlight p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--color-navy);
  font-weight: 600;
}

.content-list {
  list-style: none;
  margin: 2rem 0;
}

.content-list li {
  padding: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--color-marble);
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--color-marble-dark);
}

.content-list li i {
  color: var(--color-gold);
  margin-top: 0.25rem;
}

.content-section-title {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-marble-dark);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--color-marble);
  padding: 2.5rem;
  border-radius: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-marble-dark);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: var(--color-text-light);
}

.contact-info-content a {
  color: var(--color-gold);
  font-weight: 600;
}

.contact-info-content a:hover {
  color: var(--color-navy);
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-marble-dark);
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-text {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-marble-dark);
  border-radius: 0.5rem;
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-marble);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
}

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

.form-note {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-marble);
  border-radius: 0.5rem;
}

/* Blog Post Page */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-post-title {
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-post-meta {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.blog-post-content {
  font-size: 1.125rem;
  line-height: 2;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-navy);
}

.blog-post-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--color-navy);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-right: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.blog-post-content strong {
  color: var(--color-navy);
}

.blog-post-highlight {
  background: var(--color-marble);
  border-right: 4px solid var(--color-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.blog-post-highlight p {
  margin: 0;
  font-weight: 600;
  color: var(--color-navy);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-marble-dark);
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.9;
}

.legal-section ul {
  padding-right: 1.5rem;
  margin-bottom: 1rem;
}

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

/* ============================================
   MOBILE RESPONSIVE - FULLY OPTIMIZED
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 1rem;
  }
  
  .navbar-menu {
    gap: 1rem;
  }
  
  .navbar-menu a {
    font-size: 0.85rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text-highlight {
    text-align: right;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hamburger Menu */
  .navbar-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--color-navy);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .navbar-menu.active {
    right: 0;
  }
  
  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .navbar-cta {
    display: none;
  }
  
  /* Hero */
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Page Header */
  .page-header {
    padding: 7rem 0 3rem;
  }
  
  .page-header-title {
    font-size: 1.5rem;
  }
  
  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  /* Services Grid - Single Column */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  /* Goals Grid - Single Column */
  .grid.md\\:grid-cols-2.lg\\:grid-cols-3,
  .grid.md\\:grid-cols-2,
  .grid.md\\:grid-cols-3,
  .grid.lg\\:grid-cols-3,
  .grid.lg\\:grid-cols-4 {
    grid-template-columns: 1fr !important;
  }
  
  .grid.md\\:col-span-2,
  .grid.lg\\:col-span-1,
  .grid.lg\\:col-span-2 {
    grid-column: span 1 !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .navbar-logo-text {
    font-size: 1rem;
  }
  
  .navbar-logo-text span {
    font-size: 0.7rem;
  }
  
  .hero-title {
    font-size: 1.25rem;
  }
  
  .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .page-header-title {
    font-size: 1.25rem;
  }
  
  .blog-post-title {
    font-size: 1.5rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Utility Classes */
.text-gold {
  color: var(--color-gold);
}

.text-navy {
  color: var(--color-navy);
}

.bg-navy {
  background-color: var(--color-navy);
}

.bg-gold {
  background-color: var(--color-gold);
}

.bg-marble {
  background-color: var(--color-marble);
}
