/* ===== THE CLUE - GOLDEN THEME - FINAL OPTIMIZED VERSION ===== */

/* استيراد الخطوط الاحترافية */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff;
  background-color: #1a1a1a;
  line-height: 1.6;
}

/* ===== COLORS VARIABLES محسنة ===== */
:root {
  --gold-primary: #ffc107;
  --gold-light: #fff350;
  --gold-dark: #c79100;
  --black-primary: #000000;
  --black-light: #1a1a1a;
  --black-medium: #2d2d2d;
  --gray-dark: #4a4a4a;
  --gray-medium: #5a5a5a;
  --gray-light: #707070;
  --gray-card: #525252;
  --white: #ffffff;
}

/* ===== NAVIGATION BAR ===== */
#menu {
  padding: 0;
  margin: 0;
  background-color: var(--black-primary);
  border-bottom: 3px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* The nav keeps Bootstrap's normal responsive container width so its
   left/right edges line up with every other section's .container. */
#menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Bootstrap adds :before/:after clearfix pseudo-elements to these
   containers for its float-based layout; once we switch them to flex,
   those empty pseudo-elements would become stray flex items, so we
   turn them off. */
#menu .navbar-header::before,
#menu .navbar-header::after,
#menu .navbar-collapse::before,
#menu .navbar-collapse::after {
  content: none;
  display: none;
}

#menu .navbar-header {
  float: none;
  display: flex;
  align-items: center;
}

#menu .navbar-brand {
  padding: 15px 0;
  margin: 0 !important;
  float: none;
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  height: auto;
}

#menu .logo-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

#menu .brand-text {
  color: var(--gold-primary);
  font-size: 30px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.phone-number-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 15px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  border: 2px solid var(--gold-primary);
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.phone-number-brand:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.5);
  transform: translateY(-2px);
  color: var(--gold-primary);
}

.phone-number-brand i {
  font-size: 18px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

#menu .navbar-collapse {
  float: none;
  padding: 0;
}

#menu .navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  float: none;
}

#menu .navbar-nav > li {
  float: none;
}

#menu .navbar-nav > li > a {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 30px 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

#menu .navbar-nav > li > a:hover,
#menu .navbar-nav > li > a:focus {
  color: var(--gold-primary);
  background-color: transparent;
  border-bottom: 3px solid var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
}

#menu .navbar-nav > li.active > a,
#menu .navbar-nav > li > a.active {
  color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 211, 56, 0.1));
  border-bottom: 3px solid var(--gold-primary);
  box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.2);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

/* Phone entry that only appears inside the mobile dropdown (hidden on
   desktop, where the pill next to the logo already shows the number) */
.mobile-only-nav-item {
  display: none !important;
}

@media (max-width: 768px) {
  #menu .container {
    flex-wrap: wrap;
    padding: 0 15px;
  }

  #menu .navbar-header {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }

  .brand-container {
    gap: 12px;
  }

  #menu .brand-text {
    font-size: 20px;
  }

  #menu .logo-img {
    height: 30px;
    margin-right: 6px;
  }

  /* The phone pill next to the logo is dropped on small screens to keep
     the header to a single, uncluttered row — the number still appears
     as the first item inside the dropdown menu below. */
  .navbar-header .phone-number-brand {
    display: none;
  }

  .navbar-toggle {
    display: block;
    margin: 8px 0;
    background: var(--gold-primary);
    border: 1px solid var(--gold-primary);
  }

  .navbar-toggle .icon-bar {
    background: var(--black-primary);
  }

  .navbar-toggle:hover,
  .navbar-toggle:focus {
    background: var(--gold-light);
  }

  #menu .navbar-collapse {
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: none;
  }

  #menu .navbar-nav {
    display: block;
    width: 100%;
  }

  #menu .navbar-nav > li {
    display: block;
    width: 100%;
  }

  #menu .navbar-nav > li > a {
    display: block;
    text-align: center;
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
  }

  /* On touch devices, tapping a link turns the text white — no colour
     change to the row divider, no gold underline like on desktop. */
  #menu .navbar-nav > li > a:hover,
  #menu .navbar-nav > li > a:focus,
  #menu .navbar-nav > li > a:active {
    color: #ffffff;
    background-color: rgba(255, 193, 7, 0.08);
    text-shadow: none;
  }

  #menu .navbar-nav > li.active > a,
  #menu .navbar-nav > li > a.active {
    color: var(--gold-primary);
    box-shadow: none;
  }

  .mobile-only-nav-item {
    display: block  !important;
  }

  .mobile-only-nav-item a {
    color: var(--gold-primary) !important;
    font-weight: 700;
  }

  .mobile-only-nav-item a i {
    margin-right: 8px;
  }
}

/* ===== HERO SECTION ===== */
#header {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../img/intro-bg.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(26, 26, 26, 0.5) 25%, 
    rgba(45, 45, 45, 0.4) 50%, 
    rgba(26, 26, 26, 0.5) 75%, 
    rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

#header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  z-index: 2;
}

.intro {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  text-align: center;
  position: relative;
  z-index: 4;
  padding: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 5;
}

.hero-title .title-line {
  display: block;
  background: linear-gradient(150deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* ===== GET TOUCH SECTION - تحسين التصميم ===== */
#get-touch {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  padding: 60px 0;
  color: var(--black-primary);
  position: relative;
  overflow: hidden;
}

#get-touch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23000000" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>');
  background-size: cover;
  z-index: 1;
}

#get-touch .container {
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black-primary);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--black-primary);
  margin-bottom: 10px;
  line-height: 1.6;
}

#get-touch .btn-custom {
  background: linear-gradient(135deg, var(--black-primary), var(--black-medium));
  color: var(--gold-primary);
  border: 2px solid var(--black-primary);
  font-size: 1.1rem;
  padding: 18px 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#get-touch .btn-custom:hover {
  background: linear-gradient(135deg, var(--black-medium), var(--black-primary));
  color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* ===== ABOUT SECTION - تحسين التصميم ===== */
#about {
  background: linear-gradient(135deg, var(--black-light), var(--black-medium));
  padding: 100px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255, 193, 7, 0.03) 2px,
    rgba(255, 193, 7, 0.03) 4px
  );
  z-index: 1;
}

#about .container {
  position: relative;
  z-index: 2;
}

.image-container {
  margin-bottom: 40px;
  position: relative;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
}

.about-image {
  border: 4px solid var(--gold-primary);
  border-radius: 20px;
  box-shadow: 
    inset 0 0 30px rgba(255, 193, 7, 0.2),
    0 0 30px rgba(255, 193, 7, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  width: 100%;
  height: auto;
}

.about-image:hover {
  transform: scale(1.03) rotateY(5deg);
  box-shadow: 
    inset 0 0 40px rgba(255, 193, 7, 0.3),
    0 0 40px rgba(255, 193, 7, 0.6),
    0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-text {
  padding: 30px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
}

.about-text .section-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 25px;
}

.subsection-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin: 35px 0 25px;
}

.list-style ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-style li {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  margin-bottom: 12px;
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.list-style li:hover {
  color: var(--gold-light);
  transform: translateX(5px);
}

.list-style li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold-primary);
  font-weight: bold;
  font-size: 18px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== SERVICES SECTION - تحسينات إضافية ===== */
#services {
  background: linear-gradient(135deg, var(--black-primary), var(--black-light));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
  z-index: 1;
}

#services .container {
  position: relative;
  z-index: 2;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.main-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  position: relative;
}

.title-decoration {
  width: 150px;
  height: 5px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  margin: 0 auto 20px;
  border-radius: 3px;
  box-shadow: 0 3px 15px rgba(255, 193, 7, 0.6);
  position: relative;
}

.title-decoration::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 5px;
  z-index: -1;
  opacity: 0.5;
}

/* ===== SERVICE CARDS - كاملة ومحسنة ===== */
.service-card {
  background: linear-gradient(135deg, var(--black-medium), var(--black-light));
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 193, 7, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.02), transparent);
  z-index: 1;
  border-radius: 20px;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 193, 7, 0.3);
  border-color: var(--gold-primary);
}

.service-card:hover::before {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.02));
}

.service-image-container {
  position: relative;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 193, 7, 0.3));
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-content {
  padding: 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-title {
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.service-description {
  font-family: 'Inter', sans-serif;
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== SERVICE FEATURES LISTS - الجزء الأهم ===== */
.service-features {
  margin: 20px 0;
  padding: 25px 20px;
  flex-grow: 1;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.03));
  border-radius: 15px;
  border: 2px solid rgba(255, 193, 7, 0.2);
  position: relative;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.service-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), transparent);
  border-radius: 13px;
  z-index: 1;
}

.service-features ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  position: relative;
  z-index: 2;
}

.service-features li {
  font-family: 'Inter', sans-serif !important;
  color: #ffffff !important;
  padding: 15px 18px !important;
  font-size: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  border-left: 4px solid var(--gold-primary) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.service-features li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 193, 7, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.service-features li:hover {
  color: var(--gold-primary) !important;
  transform: translateX(8px) !important;
  border-left-color: var(--gold-light) !important;
  background: rgba(255, 193, 7, 0.15) !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2) !important;
}

.service-features li:hover::before {
  transform: translateX(0);
}

.service-features li i {
  color: var(--gold-primary) !important;
  font-size: 18px !important;
  min-width: 22px !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

.service-features li:hover i {
  transform: scale(1.2) !important;
  color: var(--gold-light) !important;
}

.service-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--black-primary);
  border: none;
  padding: 18px 30px;
  border-radius: 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s ease;
  width: 100%;
  margin-top: auto;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--black-primary);
  text-decoration: none;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5);
}

.service-btn span {
  font-size: 1rem;
  font-weight: 700;
}

.service-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* ===== PORTFOLIO SECTION ===== */
#portfolio {
  background: linear-gradient(135deg, var(--black-light), var(--black-medium));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at bottom, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
  z-index: 1;
}

#portfolio .container {
  position: relative;
  z-index: 2;
}

/* Portfolio Category Sections */
.portfolio-category-section {
  margin-bottom: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.06) 0%, rgba(255, 193, 7, 0.02) 50%, transparent 100%);
  border-radius: 25px;
  position: relative;
  border: 1px solid rgba(255, 193, 7, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-category-section:nth-child(even) {
  background: linear-gradient(135deg, transparent 0%, rgba(255, 193, 7, 0.02) 50%, rgba(255, 193, 7, 0.06) 100%);
}

.portfolio-category-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.03), transparent);
  border-radius: 25px;
  z-index: 1;
}

.portfolio-category-section > * {
  position: relative;
  z-index: 2;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 20px 0;
}

.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-title i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
  padding: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 193, 7, 0.3);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.category-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.portfolio-image-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  background: var(--black-medium);
  border: 2px solid rgba(255, 193, 7, 0.1);
}

.portfolio-image-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(255, 193, 7, 0.4);
  border-color: var(--gold-primary);
}

.portfolio-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  opacity: 1;
}

.portfolio-image-item:hover .portfolio-image {
  transform: scale(1.15);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(255, 193, 7, 0.9) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.portfolio-image-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: transform 0.5s ease;
}

.portfolio-image-item:hover .overlay-content {
  transform: translateY(0);
}

.btn-view-image {
  background: rgba(255, 255, 255, 0.25);
  border: 3px solid white;
  color: white;
  padding: 20px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-view-image:hover {
  background: white;
  color: var(--gold-primary);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.image-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* Category Footer */
.category-footer {
  padding-top: 30px;
  text-align: center;
}

.category-footer a {
	white-space: pre-wrap;
}

.btn-view-more {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
  color: var(--black-primary);
  border: none;
  padding: 25px 45px;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  transition: all 0.5s ease;
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-view-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-view-more:hover::before {
  left: 100%;
}

.btn-view-more:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: var(--black-primary);
  text-decoration: none;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(255, 193, 7, 0.6);
}

.btn-view-more span {
  font-size: 1.2rem;
  font-weight: 700;
}

.btn-view-more i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.btn-view-more:hover i {
  transform: translateX(5px);
}

.btn-view-more small {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 15px;
  border-radius: 20px;
}

/* ===== LIGHTBOX STYLES ===== */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.custom-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -70px;
  right: 0;
  background: rgba(255, 193, 7, 0.8);
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--gold-primary);
  transform: scale(1.2) rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 193, 7, 0.9);
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 25px 30px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 10001;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
  left: -120px;
}

.lightbox-next {
  right: -120px;
}

.lightbox-nav:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 75vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  border: 3px solid rgba(255, 193, 7, 0.3);
}

.lightbox-info {
  position: absolute;
  bottom: -140px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.lightbox-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--gold-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.lightbox-counter {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--black-primary);
  padding: 12px 25px;
  border-radius: 30px;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  padding: 100px 0;
  color: var(--black-primary);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23000000" opacity="0.05"><polygon points="0,0 1000,100 1000,0"/></svg>');
  background-size: cover;
  z-index: 1;
}

#testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonial {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.02), transparent);
  z-index: 1;
}

.testimonial > * {
  position: relative;
  z-index: 2;
}

.testimonial:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: var(--gold-primary);
}

.testimonial p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 25px;
  font-style: italic;
  color: var(--black-medium);
  position: relative;
}

.testimonial p::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--gold-primary);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

.testimonial-author {
  border-top: 3px solid var(--gold-primary);
  padding-top: 25px;
  text-align: center;
}

.testimonial-author p {
  margin: 0;
  font-weight: 700;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--black-primary);
}

.testimonial-author small {
  color: var(--gray-dark);
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: linear-gradient(135deg, var(--black-light), var(--black-medium));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
  z-index: 1;
}

#contact .container {
  position: relative;
  z-index: 2;
}

.contact-form {
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 193, 7, 0.1);
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 193, 7, 0.2);
  color: white;
  padding: 18px 25px;
  border-radius: 15px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 25px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: white;
  box-shadow: 0 0 25px rgba(255, 193, 7, 0.3);
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.contact-info {
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.03));
  border-radius: 25px;
  border: 2px solid rgba(255, 193, 7, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-item {
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 193, 7, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 193, 7, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.contact-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item p {
  color: #e0e0e0;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.6;
}

.contact-item span {
  color: var(--gold-primary);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-item span i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--black-primary);
  border-radius: 50%;
  font-size: 1.8rem;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.social li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social li a:hover::before {
  opacity: 1;
}

.social li a:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 193, 7, 0.5);
}

.social li a i {
  position: relative;
  z-index: 2;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--black-primary);
  padding: 50px 0;
  border-top: 4px solid var(--gold-primary);
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), transparent);
  z-index: 1;
}

#footer .container {
  position: relative;
  z-index: 2;
}

#footer p {
  color: #e0e0e0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px 0;
}

/* ===== BUTTON STYLES ===== */
.btn-custom {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--black-primary);
  border: none;
  padding: 18px 35px;
  border-radius: 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-custom:hover::before {
  left: 100%;
}

.btn-custom:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: var(--black-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5);
}

.btn-custom i {
  transition: transform 0.3s ease;
}

.btn-custom:hover i {
  transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .category-title {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 15px;
  }
  
  .category-title i {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 40px;
    padding: 25px;
  }
  
  .service-features {
    padding: 20px 15px;
  }
  
  .service-features li {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .lightbox-nav {
    font-size: 2rem;
    padding: 20px 25px;
  }
  
  .lightbox-prev {
    left: -100px;
  }
  
  .lightbox-next {
    right: -100px;
  }
  
  .main-section-title {
    font-size: 3rem;
  }
  
  .btn-view-more {
    padding: 20px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .category-title {
    font-size: 1.8rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .portfolio-image-container {
    height: 220px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  
  .service-features li {
    font-size: 14px !important;
    padding: 10px 12px !important;
    gap: 10px !important;
  }
  
  .service-features li i {
    font-size: 16px !important;
    min-width: 18px !important;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-btn {
    padding: 15px 25px;
    font-size: 0.9rem;
  }
  
  .main-section-title {
    font-size: 2.5rem;
  }
  
  .contact-item {
    padding: 20px;
  }
  
  .social li a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ===== ANIMATIONS ===== */
.portfolio-category-section {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.portfolio-category-section:nth-child(2) { animation-delay: 0.1s; }
.portfolio-category-section:nth-child(3) { animation-delay: 0.2s; }
.portfolio-category-section:nth-child(4) { animation-delay: 0.3s; }
.portfolio-category-section:nth-child(5) { animation-delay: 0.4s; }
.portfolio-category-section:nth-child(6) { animation-delay: 0.5s; }
.portfolio-category-section:nth-child(7) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service card animations */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lightbox body lock */
body.lightbox-open {
  overflow: hidden;
}

/* Loading animations */
.portfolio-image-container.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(255, 193, 7, 0.1) 25%, 
    rgba(255, 193, 7, 0.3) 50%, 
    rgba(255, 193, 7, 0.1) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 2;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DEBUGGING & VISIBILITY FORCED ===== */
.service-features,
.service-features ul,
.service-features li {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* =========================================================
   ABOUT SECTION REDESIGN ("Who We Are")
   Icon feature cards + framed image badge, replacing the
   plain two-column bullet list for a much more scannable,
   attractive read.
   ========================================================= */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--gold-primary);
  display: inline-block;
}

.image-container {
  position: relative;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  z-index: 3;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--black-primary);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  font-family: 'Poppins', sans-serif;
  min-width: 130px;
}

.about-badge i {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}

.about-badge span {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 10px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 193, 7, 0.05);
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 14px;
  padding: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-4px);
}

.feature-card-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--black-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-card-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  line-height: 1.3;
}

.about-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.about-cta .phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.about-cta .phone-cta i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 10px;
  }
}

/* =========================================================
   ACCESSIBILITY / MISC POLISH
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-primary);
  color: var(--black-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 12px 20px;
  z-index: 100000;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
.navbar-nav > li > a:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Lazy-loaded images are visible immediately; the surrounding container's
   background colour (below) acts as the placeholder while they load, so
   we never depend on JavaScript adding a class before an image can show. */

/* Portfolio grid image wrapper keeps a fixed ratio while lazy images load, avoiding layout shift */
.portfolio-image-container,
.image-container.gallery-thumb {
  background: var(--black-medium);
}
