﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0f172a;
  /* Deep Slate */
  --secondary: #1e293b;
  --accent: #2563eb;
  /* Royal Blue */
  --accent-hover: #1d4ed8;
  --light: #f8fafc;
  --bg-color: #f1f5f9;
  --text-dark: #334155;
  --text-light: #ffffff;
  --border-radius: 16px;
  --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Navbar - Glassmorphism */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.8rem 5%;
  background: rgba(255, 255, 255, 0.95);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
}

.contact-btn {
  background-color: var(--accent);
  color: var(--text-light) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.contact-btn::after {
  display: none !important;
}

.contact-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 3px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem 5%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
  flex: 1;
  max-width: 50%;
  z-index: 2;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  gap: 1rem;
}

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

.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(243, 243, 243, 0.05);
}

.hero-slider-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.hero-slider-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
  z-index: 2;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider img.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Background Elements */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background-color: rgba(37, 99, 235, 0.3);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background-color: rgba(165, 215, 232, 0.4);
  bottom: -50px;
  left: -50px;
}

/* Features/Services Section */
.section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: white;
  padding: 0;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.service-image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--accent);
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Internal Pages Header */
.page-header {
  padding: 10rem 5% 5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

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

/* Page Content */
.content-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5%;
}

.content-section.reverse {
  flex-direction: row-reverse;
}

.content-image {
  flex: 1;
}

.content-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  object-fit: cover;
}

.content-text {
  flex: 1;
}

.content-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-text ul {
  margin-top: 1.5rem;
}

.content-text li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.content-text li i {
  color: var(--accent);
}

/* Contact Section */
.contact-container {
  display: flex;
  gap: 4rem;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: -4rem 5% 4rem;
  position: relative;
  z-index: 10;
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact-form {
  flex: 1;
}

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

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--light);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}

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

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Detailed Footer */
.detailed-footer {
  background-color: var(--primary);
  color: #e2e8f0;
  padding: 5rem 5% 2rem;
}

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

.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.about-col p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

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

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col ul li a {
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem !important;
  color: #cbd5e1;
}

.contact-info-list li i {
  color: var(--accent);
  margin-top: 5px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
  color: white;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.reviewer-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.google-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.review-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 0;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  padding-right: 1rem;
}

.faq-question i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding-top: 0.5rem;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 6rem 0 0 0;
  }
  
  .hero-slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 3rem;
  }
  
  .hero-slider-container::before {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0 5%;
    margin-bottom: 2rem;
  }

  .cta-group {
    justify-content: center;
  }

  .content-section,
  .content-section.reverse {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}
/* Floating Action Buttons - Advanced Level */
.floating-whatsapp, .floating-call {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: white;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.floating-whatsapp {
  right: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: pulse-whatsapp 2s infinite;
}

.floating-call {
  left: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  animation: pulse-call 2s infinite;
}

.floating-whatsapp:hover, .floating-call:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  color: white;
  animation: none;
}

/* Pulse Animations */
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@media (max-width: 768px) {
  .floating-whatsapp, .floating-call {
    width: 55px;
    height: 55px;
    font-size: 26px;
    bottom: 25px;
  }
  .floating-whatsapp { right: 20px; }
  .floating-call { left: 20px; }
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

[dir="rtl"] .logo {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .nav-links li {
    margin-left: 0;
    margin-right: 2rem;
}

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

[dir="rtl"] .hero-content {
    padding-right: 0;
    padding-left: 2rem;
    text-align: left;
}

[dir="rtl"] .hero-content h1 {
    line-height: 1.4;
}

[dir="rtl"] .hero-content .cta-group {
    flex-direction: row-reverse;
}

[dir="rtl"] .info-icon {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .contact-info-list i {
    margin-right: 0;
    margin-left: 10px;
}

/* RTL Support */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .logo img {
    margin-right: 0 !important;
    margin-left: 10px !important;
}

html[dir="rtl"] .nav-links li {
    margin-left: 0;
    margin-right: 1.5rem;
}

html[dir="rtl"] .footer-logo img {
    margin-right: 0 !important;
    margin-left: 10px !important;
}

html[dir="rtl"] .info-icon {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .faq-question {
    padding: 1.2rem 1.2rem 1.2rem 3rem;
}

html[dir="rtl"] .faq-question i {
    right: auto;
    left: 1.2rem;
}

html[dir="rtl"] .contact-info-list li i {
    margin-right: 0;
    margin-left: 10px;
}

/* FULL MOBILE RESPONSIVENESS FIXES */
@media (max-width: 992px) {
    [dir="rtl"] .hero {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    [dir="rtl"] .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .hero-content {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    [dir="rtl"] .hero-content .cta-group {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .detailed-footer .footer-col {
        text-align: center !important;
    }
    
    [dir="rtl"] .detailed-footer .footer-col {
        text-align: center !important;
    }
    
    .detailed-footer .social-links {
        justify-content: center !important;
    }
    
    .contact-info-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    [dir="rtl"] .contact-info-list li i {
        margin-left: 5px;
        margin-right: 0;
    }
    
    .contact-info-list li {
        text-align: center;
        justify-content: center;
    }
    
    /* Improve Language Switcher on Mobile */
    .nav-links li .lang-switch {
        justify-content: center;
        margin-top: 1rem;
    }
    
    [dir="rtl"] .nav-links li {
        margin-right: 0;
    }
}

/* Fix Hero Slider Size on Mobile */
@media (max-width: 480px) {
    .hero-slider-container {
        height: 250px;
        margin-top: 2rem;
    }
    .hero-content h1 {
        font-size: 2rem !important;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}


/* HIDDEN GOOGLE TRANSLATE UI */
body {
    top: 0 !important;
    position: static !important;
}
iframe.goog-te-banner-frame {
    display: none !important;
}
.goog-te-banner-frame {
    display: none !important;
}
.goog-logo-link {
    display: none !important;
}
.goog-te-gadget {
    color: transparent !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
#google_translate_element {
    display: none !important;
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
}
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
    display: none !important;
}
iframe[name="google_translate_banner_window"] {
    display: none !important;
}

/* ULTIMATE NUCLEAR CSS TO HIDE GOOGLE TRANSLATE BANNER */
div.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

iframe.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
}

body {
    top: 0 !important;
    position: static !important;
    margin-top: 0 !important;
}

html {
    height: 100% !important;
    top: 0 !important;
}

/* Also hide any new classes Google might use */
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf, 
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc,
#goog-gt-tt,
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

/* NAVBAR LOGO FIX FOR MOBILE */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem !important;
        white-space: normal; /* Let it wrap naturally if needed */
        line-height: 1.1;
    }
    .logo img {
        max-height: 60px !important;
        margin-right: 8px !important;
    }
    [dir="rtl"] .logo img {
        margin-left: 8px !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem !important; /* Slightly bigger than before */
    }
    .logo img {
        max-height: 55px !important; /* Much bigger than before */
    }
}

/* LIGHT THEME FOOTER OVERRIDE */
.detailed-footer {
  background-color: var(--light) !important;
  color: var(--text-dark) !important;
  border-top: 1px solid #e2e8f0;
}
.detailed-footer .footer-col h4 {
  color: var(--primary) !important;
}
.detailed-footer .footer-col ul li a,
.detailed-footer .contact-info-list li,
.detailed-footer .contact-info-list li a,
.detailed-footer .about-col p {
  color: var(--text-dark) !important;
  opacity: 0.85;
}
.detailed-footer .footer-col ul li a:hover,
.detailed-footer .contact-info-list li a:hover {
  color: var(--accent) !important;
  opacity: 1;
}
.detailed-footer .social-links a {
  background-color: white !important;
  color: var(--primary) !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.detailed-footer .social-links a:hover {
  background-color: var(--accent) !important;
  color: white !important;
  border-color: var(--accent);
}
.detailed-footer .footer-bottom {
  border-top: 1px solid #e2e8f0 !important;
  color: var(--text-dark) !important;
  opacity: 0.8;
}
.detailed-footer .footer-logo {
  color: var(--primary) !important;
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.detailed-footer .footer-logo span {
  color: var(--accent) !important;
}
