/* ==========================================================================
   Design System & Global Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Tajawal:wght@400;500;700&family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary-teal: #063C35;
  --primary-teal-rgb: 6, 60, 53;
  --primary-teal-dark: #03241F;
  --primary-teal-light: #0d5c52;
  --accent-gold: #C59B27;
  --accent-gold-rgb: 197, 155, 39;
  --accent-gold-dark: #A47F1D;
  --accent-gold-light: #E2BC51;
  --cream-bg: #E0C57A; /* Rich soft gold */
  --cream-card: #EAD598; /* Lighter gold for cards */
  --charcoal-text: #1A211E;
  --charcoal-text-light: #424A45;
  --light-gray: #CFA444; /* Darker gold for borders */
  --white: #F2E5BA; /* Very pale gold replacing pure white */

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --transition-lazy: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows & Radius */
  --shadow-premium: 0 15px 35px rgba(6, 60, 53, 0.05);
  --shadow-hover: 0 25px 45px rgba(6, 60, 53, 0.1);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
}

/* ==========================================================================
   Curtain Opening Animation
   ========================================================================== */
#curtain-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  pointer-events: none;
}

.curtain {
  width: 50%;
  height: 100%;
  background-color: var(--primary-teal);
  position: relative;
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  background-image: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.03) 100%);
  background-size: 100px 100%;
}

.curtain-left {
  transform-origin: left;
}

.curtain-right {
  transform-origin: right;
}

#curtain-loader.open .curtain-left {
  transform: translateX(-100%);
}

#curtain-loader.open .curtain-right {
  transform: translateX(100%);
}

#curtain-loader.hidden {
  display: none;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal-text);
  background-color: var(--cream-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-teal);
  border: 2px solid var(--cream-bg);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-teal-light);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal-text-light);
}

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

/* ==========================================================================
   Layout & Reusable Components
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

/* Elegant Section Headers */
.section-header {
  margin-bottom: 70px;
  text-align: center;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 0 auto 24px;
}

.section-subtitle {
  font-size: 1.25rem;
  font-style: italic;
  font-family: var(--font-serif);
  max-width: 600px;
  margin: 0 auto;
  color: var(--charcoal-text-light);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--white);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--primary-teal-light);
  box-shadow: 0 10px 20px rgba(6, 60, 53, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-teal-dark);
  box-shadow: 0 10px 20px rgba(197, 155, 39, 0.2);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-teal);
}

.btn-white:hover {
  background-color: var(--accent-gold);
  color: var(--primary-teal-dark);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  padding: 30px 0;
}

header.scrolled {
  background-color: rgba(6, 60, 53, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 45px;
  width: 45px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(61%) sepia(61%) saturate(543%) hue-rotate(7deg) brightness(97%) contrast(93%);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
  transition: var(--transition-fast);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--white);
}

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

nav a.active {
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    z-index: 105;
  }

  nav.open {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  nav a {
    font-size: 1.1rem;
    color: var(--white);
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================================================
   Hero Section (Cover Page)
   ========================================================================== */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 60, 53, 0.92) 0%,
    rgba(3, 36, 31, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-label {
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: inline-block;
  font-weight: 600;
  animation: fadeInUp 1s ease forwards;
}

.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 30px;
  display: block;
  animation: fadeInUp 1s ease forwards;
  filter: brightness(0) saturate(100%) invert(61%) sepia(61%) saturate(543%) hue-rotate(7deg) brightness(97%) contrast(93%) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 8px;
  color: var(--accent-gold);
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
}

.hero-divider {
  width: 80px;
  height: 2.5px;
  background-color: var(--accent-gold);
  margin: 0 auto 35px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-tagline {
  font-size: 1.8rem;
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

.scroll-indicator-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  animation: scrollAnim 1.8s infinite ease-in-out;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  padding-right: 40px;
}

.about-title {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 25px;
  line-height: 1.15;
}

.about-intro {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 30px;
  color: var(--charcoal-text);
}

.about-body p {
  margin-bottom: 20px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-premium);
}

.about-image-overlay {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 35px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-premium);
  max-width: 240px;
  border-left: 4px solid var(--accent-gold);
}

.about-years {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 5px;
}

.about-years-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-text {
    padding-right: 0;
  }
  .about-image-main {
    height: 400px;
  }
}

/* ==========================================================================
   Vision, Mission & Core Values Section
   ========================================================================== */
#purpose {
  background-color: var(--primary-teal-dark);
  color: var(--white);
}

#purpose .section-title,
#purpose .section-subtitle {
  color: var(--white);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.purpose-card {
  background-color: rgba(6, 60, 53, 0.4);
  border: 1px solid rgba(197, 155, 39, 0.2);
  border-radius: var(--radius-md);
  padding: 50px 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.purpose-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  background-color: rgba(6, 60, 53, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.purpose-icon {
  margin-bottom: 30px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(197, 155, 39, 0.1);
  border-radius: 50%;
}

.purpose-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.purpose-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values-list li {
  position: relative;
  padding-left: 25px;
}

.values-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
}

.values-list strong {
  color: var(--accent-gold);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 992px) {
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.why-item {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--accent-gold);
  transition: var(--transition-smooth);
}

.why-item:hover {
  padding-left: 28px;
  border-left-width: 4px;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--primary-teal);
  margin-bottom: 10px;
  font-weight: 700;
}

.why-item p {
  font-size: 0.95rem;
}

.why-image-panel {
  position: relative;
  height: 500px;
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-premium);
}

.why-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--accent-gold);
  color: var(--primary-teal-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 20px 30px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-premium);
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .why-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   Our Expertise (Services) Section
   ========================================================================== */
.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: 1px solid var(--light-gray);
  padding: 15px 35px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal-text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: var(--radius-sm);
}

.tab-btn:hover {
  border-color: var(--primary-teal);
  color: var(--primary-teal);
}

.tab-btn.active {
  background-color: var(--primary-teal);
  border-color: var(--primary-teal);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(6, 60, 53, 0.15);
}

.services-tab-pane {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.services-tab-pane.active {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.service-image-container {
  height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-lazy);
}

.service-image-container:hover .service-img {
  transform: scale(1.05);
}

.service-info-panel h3 {
  font-size: 2.8rem;
  color: var(--primary-teal);
  margin-bottom: 12px;
}

.service-tag {
  font-size: 1.15rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-gold-dark);
  margin-bottom: 25px;
  display: block;
}

.service-desc {
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item div h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal-text);
  margin-bottom: 4px;
}

.feature-item div p {
  font-size: 0.85rem;
  font-weight: 300;
}

@media (max-width: 992px) {
  .services-tab-pane.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-image-container {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .services-tabs-nav {
    flex-direction: column;
    gap: 10px;
  }
  .tab-btn {
    width: 100%;
  }
  .service-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Our Prestigious Clients Section
   ========================================================================== */
#clients {
  background-color: var(--cream-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 20, 50 10 T 100 10' fill='none' stroke='%23d0b368' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 20px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.client-card {
  border: 1px solid var(--light-gray);
  padding: 20px;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.client-logo {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.client-card:hover .client-logo {
  transform: scale(1.05);
}

.client-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.client-card:hover::after {
  transform: scaleX(1);
}

.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-premium);
  background-color: var(--white);
}

.client-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-teal);
  letter-spacing: 0.5px;
}

.testimonial-banner {
  max-width: 900px;
  margin: 90px auto 0;
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 60px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-premium);
  text-align: center;
}

.testimonial-banner::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 10rem;
  line-height: 1;
  color: rgba(197, 155, 39, 0.15);
  font-weight: 700;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-banner {
    padding: 40px 20px;
  }
  .testimonial-quote {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
#contact {
  background-color: var(--cream-bg);
}

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

.contact-info-panel {
  padding-right: 40px;
}

.contact-info-header h3 {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 15px;
}

.contact-info-header p {
  margin-bottom: 45px;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

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

.contact-icon {
  color: var(--accent-gold);
  background-color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(6, 60, 53, 0.04);
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  margin-bottom: 6px;
}

.contact-details p {
  font-size: 1.1rem;
  color: var(--charcoal-text);
  font-weight: 400;
}

.contact-details a {
  transition: var(--transition-fast);
}

.contact-details a:hover {
  color: var(--accent-gold);
}

/* Stylized Map Panel */
.map-panel {
  background-color: var(--primary-teal);
  border-radius: var(--radius-md);
  padding: 60px;
  color: var(--white);
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-accent-bg {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(197, 155, 39, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.map-accent-bg::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(197, 155, 39, 0.08);
  border-radius: 50%;
}

.map-header {
  position: relative;
  z-index: 2;
}

.map-header h4 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.map-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.stylized-map-container {
  height: 240px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  border-radius: var(--radius-sm);
  position: relative;
  background-color: var(--primary-teal-dark);
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Creative visual representation of a minimalist map */
.map-road-h {
  position: absolute;
  height: 40px;
  width: 100%;
  background-color: rgba(6, 60, 53, 0.3);
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px dashed rgba(197, 155, 39, 0.15);
  border-bottom: 1px dashed rgba(197, 155, 39, 0.15);
}

.map-road-v {
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: rgba(6, 60, 53, 0.3);
  left: 60%;
  border-left: 1px dashed rgba(197, 155, 39, 0.15);
  border-right: 1px dashed rgba(197, 155, 39, 0.15);
}

.map-road-label-1 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.map-road-label-2 {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 58%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  cursor: pointer;
}

.map-pin-pulse {
  width: 16px;
  height: 16px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  position: relative;
}

.map-pin-pulse::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  animation: pulsePin 1.8s infinite ease-out;
  opacity: 0;
}

.map-pin-label {
  background-color: var(--white);
  color: var(--primary-teal-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 8px;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-gold);
}

.map-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-info-panel {
    padding-right: 0;
  }
  .map-panel {
    min-height: auto;
  }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background-color: var(--primary-teal-dark);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(197, 155, 39, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 25px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--accent-gold);
  background-color: var(--accent-gold);
  color: var(--primary-teal-dark);
  transform: translateY(-3px);
}

.footer-links h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 25px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    top: 6px;
    height: 4px;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    top: 24px;
    height: 8px;
  }
  100% {
    opacity: 0;
    top: 24px;
    height: 4px;
  }
}

@keyframes pulsePin {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Reveal on Scroll Core */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-lazy);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: var(--transition-lazy);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition-lazy);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Expertise Section Restructured Image Cover Fixing
   ========================================================================== */
.service-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Collapsible Core Values (Hover Expand Effect)
   ========================================================================== */
.value-summary {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 40px;
  overflow: hidden;
}

.value-detail {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.values-list li {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.values-list li:hover .value-summary {
  max-height: 0;
  opacity: 0;
}

.values-list li:hover .value-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}

/* ==========================================================================
   Infinite Scrolling Client Logos Carousel
   ========================================================================== */
.clients-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin-top: 50px;
}

/* Gradient overlay for fade effects at edges */
.clients-carousel-container::before,
.clients-carousel-container::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-bg) 0%, transparent 100%);
}
.clients-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-bg) 0%, transparent 100%);
}

.clients-track {
  display: flex;
  width: calc(270px * 16); /* 240px width + 30px gap = 270px per card * 16 slides total */
  gap: 30px;
  animation: scrollLogos 25s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-card-slide {
  flex-shrink: 0;
  width: 240px;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-270px * 8)); /* Scroll exactly 8 cards' width + gap */
  }
}

/* ==========================================================================
   Google Maps Iframe Styling
   ========================================================================== */
.stylized-map-container {
  overflow: hidden; /* Clip iframe corners to border-radius */
}

.stylized-map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   Floating WhatsApp Button Widget (Hover Expand)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float span {
  max-width: 0;
  opacity: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  transition: max-width 0.4s ease, opacity 0.3s ease, margin-left 0.4s ease;
  margin-left: 0;
}

.whatsapp-float:hover {
  width: 280px;
  background-color: #20ba5a;
  justify-content: flex-start;
  padding-left: 20px;
  color: #fff;
}

.whatsapp-float:hover span {
  max-width: 220px;
  opacity: 1;
  margin-left: 10px;
}

.whatsapp-float svg {
  fill: currentColor;
  flex-shrink: 0;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float:hover {
    width: 50px;
    padding-left: 0;
    justify-content: center;
  }
  .whatsapp-float span {
    display: none;
  }
}

/* ==========================================================================
   Language Switcher & RTL Styling
   ========================================================================== */
.lang-btn {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-teal-dark);
}

.lang-switch-item {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

/* Arabic RTL support */
body.rtl-layout {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  text-align: right;
}

body.rtl-layout h1, 
body.rtl-layout h2, 
body.rtl-layout h3, 
body.rtl-layout h4, 
body.rtl-layout h5, 
body.rtl-layout h6,
body.rtl-layout .about-years,
body.rtl-layout .section-label {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 700;
}

body.rtl-layout .section-label::before {
  margin-right: 0;
  margin-left: 8px;
}

body.rtl-layout .values-list li,
body.rtl-layout .why-item {
  padding-left: 0;
  padding-right: 25px;
  border-left: 0;
  border-right: 2px solid var(--accent-gold);
}

body.rtl-layout .values-list li::before {
  left: auto;
  right: 0;
}

body.rtl-layout .why-item:hover {
  padding-left: 0;
  padding-right: 28px;
  border-right-width: 4px;
}

body.rtl-layout .btn::after {
  margin-left: 0;
  margin-right: 8px;
  transform: scaleX(-1);
}

body.rtl-layout .whatsapp-float {
  right: auto;
  left: 30px;
}

body.rtl-layout .whatsapp-float:hover span {
  margin-left: 0;
  margin-right: 10px;
}

/* RTL navigation alignment */
body.rtl-layout #nav-menu ul {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  body.rtl-layout #nav-menu ul {
    flex-direction: column;
  }
}

/* ==========================================================================
   Why Choose Us Hover Expansion
   ========================================================================== */
.why-summary {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal-text-light);
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 40px;
  overflow: hidden;
}

.why-detail {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--charcoal-text);
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.why-item:hover .why-summary {
  max-height: 0;
  opacity: 0;
}

.why-item:hover .why-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}

/* ==========================================================================
   Felix Titling Typography
   ========================================================================== */
.logo-main,
.hero-title,
.footer-brand h4 {
  font-family: "Felix Titling", "Cinzel", "Georgia", serif !important;
  letter-spacing: 2px;
}

/* ==========================================================================
   Curved Client Logos & Carousel
   ========================================================================== */
.clients-carousel-container {
  border-radius: 16px;
  overflow: hidden;
}

.client-card {
  border-radius: 12px;
  overflow: hidden;
}

.client-logo {
  border-radius: 8px;
}

/* ==========================================================================
   Sub-Service Box Layout (Majlis Sofa in Sofa Pane)
   ========================================================================== */
.sub-service-box {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--primary-teal-dark);
  border: 1px solid rgba(208, 179, 104, 0.2);
  border-radius: var(--radius-sm);
  position: relative;
}

.sub-service-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.sub-service-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.sub-service-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 12px;
}

.sub-service-thumb-container {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-service-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sub-service-box:hover .sub-service-thumb {
  transform: scale(1.05);
}

/* ==========================================================================
   Google Listing Reviews Section Carousel Layout
   ========================================================================== */
.reviews-section {
  margin-top: 50px;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.google-logo-badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-teal);
}

.badge-status {
  font-size: 0.8rem;
  color: var(--charcoal-text-light);
}

.google-rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-teal);
}

.stars-container {
  color: #fbbc05;
  font-size: 1.2rem;
  display: flex;
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--charcoal-text-light);
}

.reviews-carousel {
  position: relative;
}

.reviews-slider {
  display: flex;
  width: 100%;
}

.review-card {
  display: none;
  width: 100%;
}

.review-card.active {
  display: block;
  animation: reviewFadeIn 0.5s ease;
}

@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-card-inner {
  background: var(--cream-bg);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(197, 155, 39, 0.15);
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-sans);
}

.user-meta h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--primary-teal);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.verified-g {
  color: #4285f4;
  font-size: 0.75rem;
  font-weight: bold;
}

.user-meta span {
  font-size: 0.75rem;
  color: var(--charcoal-text-light);
}

.review-rating {
  color: #fbbc05;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal-text);
  font-style: italic;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.review-btn {
  background: transparent;
  border: 1px solid var(--primary-teal);
  color: var(--primary-teal);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.review-btn:hover {
  background-color: var(--primary-teal);
  color: var(--white);
}

.reviews-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 40px 0;
  gap: 15px;
  color: var(--charcoal-text-light);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(6, 60, 53, 0.1);
  border-top-color: var(--primary-teal);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ==========================================================================
   Interactive 3D SVG Logo Container
   ========================================================================== */
.hero-logo-3d-container {
  width: 260px;
  height: 220px;
  margin: 0 auto 10px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-logo-3d {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  user-select: none;
}

.hero-logo-3d:active {
  cursor: grabbing;
}

.hero-logo-3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Fallback img inside container if Three.js fails or SVG is missing */
.hero-logo-3d img.fallback-logo {
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   Mobile About Text Truncation
   ========================================================================== */
@media (max-width: 768px) {
  .about-body:not(.expanded) p:not(:first-of-type) {
    display: none;
  }
  
  .about-read-more {
    display: inline-block;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 15px;
    border-bottom: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
  }
  
  .about-read-more:hover {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
  }
}

@media (min-width: 769px) {
  .about-read-more {
    display: none !important;
  }
}

/* ==========================================================================
   Google Reviews Live Widget Integration
   ========================================================================== */
.live-reviews-widget {
  width: 100%;
  margin-top: 20px;
}

/* Hide custom carousel if the live-reviews-widget is uncommented and populated */
.live-reviews-widget:not(:empty) ~ .reviews-carousel-wrapper {
  display: none !important;
}



