/* ========================================
   UNCLE JAKES HOME SERVICES
   Custom Styles
   ======================================== */

/* --- Variables --- */
:root {
  --cream: #FFF8EC;
  --warm-cream: #F7F2E7;
  --gold: #BDA063;
  --dark-gold: #A7894E;
  --light-gold: #D7BE86;
  --black: #0B0B12;
  --white: #FFFFFF;
  --gray: #666666;
  --light-gray: #e0dcd3;
  --font-primary: 'Poppins', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 15px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 5px 30px rgba(189,160,99,0.3);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* --- Constrain large images --- */
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-info img {
  max-height: 50px;
  width: auto;
}

.loader-logo img {
  max-height: 90px;
  width: auto;
}

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

.section-padding {
  padding: 100px 0;
}

.alt-bg {
  background-color: var(--warm-cream);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1rem 0;
}

.divider-line {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  border-radius: 3px;
}

.divider-icon {
  color: var(--gold);
  font-size: 1.3rem;
}

/* ========================================
   LOADER
   ======================================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 2rem;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-logo img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
}

.loader-bar-wrapper {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  border-radius: 3px;
  animation: loader-progress 2s ease-in-out forwards;
}

@keyframes loader-progress {
  0% { width: 0; }
  50% { width: 60%; }
  100% { width: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ========================================
   MAIN NAVIGATION
   ======================================== */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0;
  transition: var(--transition);
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#main-nav.nav-scrolled {
  background: var(--black);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

#main-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
}

#main-nav .navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

#main-nav .navbar-brand img {
  height: 50px;
  width: auto;
}

#main-nav .navbar-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

#main-nav .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 6px 16px;
  position: relative;
  transition: var(--transition);
  font-size: 0.95rem;
}

#main-nav .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

#main-nav .navbar-nav .nav-link:hover::after,
#main-nav .navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

#main-nav .navbar-nav .nav-link:hover,
#main-nav .navbar-nav .nav-link.active {
  color: var(--gold);
}

/* --- Navbar Brand & Links --- */
.btn-quote {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 13px 35px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-black {
  background: var(--black);
  color: var(--gold);
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-black:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* --- Ripple Button --- */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(189,160,99,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(189,160,99,0.05) 0%, transparent 50%);
  z-index: 2;
}

/* --- Hero Carousel --- */
.hero-carousel {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
}

.hero-carousel .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-carousel .carousel-indicators {
  bottom: 100px;
  z-index: 3;
}

.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  margin: 0 5px;
  transition: var(--transition);
}

.hero-carousel .carousel-indicators button.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title .gold-text {
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* --- Floating Shapes --- */
.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 2px solid rgba(189,160,99,0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 5%;
  border-color: rgba(189,160,99,0.08);
  animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 10%;
  border-color: rgba(189,160,99,0.12);
  animation: float 5s ease-in-out infinite 1s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  right: 15%;
  border-color: rgba(189,160,99,0.06);
  border-radius: 0;
  transform: rotate(45deg);
  animation: float 7s ease-in-out infinite 2s;
}

.shape-5 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 5%;
  background: rgba(189,160,99,0.05);
  border: none;
  animation: float 4s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  margin: 8px auto 0;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ========================================
   SERVICES - GLASS CARDS
   ======================================== */
.service-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--radius);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.glass-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--dark-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

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

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

.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(189,160,99,0.15), rgba(189,160,99,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  transform: scale(1.1) rotateY(180deg);
}

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

.service-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.exp-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-heading {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* --- Stats --- */
.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.8);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--dark-gold), var(--gold));
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--cream);
  box-shadow: 0 0 20px rgba(189,160,99,0.3);
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 25px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: calc(50% + 40px);
}

.timeline-year {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 3px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.feature-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(189,160,99,0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(189,160,99,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--black);
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature-text {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* ========================================
   CALL TO ACTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-form-wrapper {
  padding: 40px;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 0;
}

.form-control,
.form-select {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.8);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(189,160,99,0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--black);
}

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

/* --- Map Placeholder --- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* --- Contact Info Cards --- */
.contact-info-card {
  padding: 25px;
  border-radius: var(--radius);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.contact-info-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(189,160,99,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Hours --- */
.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 600;
}

.hours-item span:last-child {
  color: var(--gray);
}

/* --- Social Links --- */
.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

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

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 25px 0;
  margin-top: 60px;
}

.copyright {
  font-size: 0.9rem;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

/* ========================================
   TRUSTED SINCE 1999 STATS
   ======================================== */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(189,160,99,0.03), rgba(189,160,99,0.06));
  pointer-events: none;
}

.stats-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.stats-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}

.stats-image-wrapper:hover img {
  transform: scale(1.05);
}

.stats-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  animation: pulse-badge 2s ease-in-out infinite;
}

.stats-badge .exp-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--black);
}

.stats-badge .exp-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  line-height: 1.2;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.stats-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.stats-list li i {
  color: var(--gold);
  font-size: 1.3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stats-grid .stat-item {
  padding: 24px 16px;
}

/* ========================================
   SERVICES PREVIEW
   ======================================== */
.services-preview {
  position: relative;
}

.service-preview-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.service-preview-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.service-preview-card:hover .service-preview-bg {
  transform: scale(1.08);
}

.service-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.service-preview-card:hover .service-preview-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
}

.service-preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.service-preview-card:hover .service-preview-content {
  transform: translateY(0);
}

.service-preview-content .service-icon {
  width: 55px;
  height: 55px;
  margin: 0 0 15px;
  background: rgba(189,160,99,0.2);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.service-preview-content h4 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-preview-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
}

.service-preview-card:hover .service-preview-content p {
  max-height: 60px;
  margin-top: 8px;
}

/* ========================================
   OUR PROCESS
   ======================================== */
.process-section {
  position: relative;
  background: var(--black);
}

.process-section .section-tag,
.process-section .section-title {
  color: var(--white);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold), var(--gold));
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.process-step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  transition: var(--transition);
}

.process-step:hover .process-step-number {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.process-step-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.process-step h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.process-step p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin: 5px 0 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  padding: 35px;
  border-radius: var(--radius);
  text-align: center;
  height: 100%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: 20px;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  text-align: left;
}

.testimonial-name h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.testimonial-name span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========================================
   FAQ
   ======================================== */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 25px;
  background: transparent;
  box-shadow: none;
  color: var(--black);
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\2212';
  transform: rotate(0deg);
}

.faq-accordion .accordion-body {
  padding: 0 25px 20px;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========================================
   EMERGENCY BANNER
   ======================================== */
.emergency-section {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.emergency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(189,160,99,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(189,160,99,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.emergency-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(189,160,99,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(189,160,99,0); }
}

.emergency-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.emergency-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gold);
  color: var(--black);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 800;
  transition: var(--transition);
}

.emergency-phone:hover {
  background: var(--dark-gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.emergency-phone i {
  font-size: 1.8rem;
}

/* ========================================
   MOBILE FLOATING MENU
   ======================================== */

/* --- Floating Menu Toggle Button --- */
.menu-toggle-btn {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 10001;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  border: none;
  box-shadow: 0 6px 24px rgba(189,160,99,0.35);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-toggle-btn:active {
  transform: scale(0.92);
}

.menu-toggle-btn .menu-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--black);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate bars to X when menu is open */
.menu-toggle-btn.open .bar1 {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle-btn.open .bar2 {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle-btn.open .bar3 {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Fullscreen Glass Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  max-width: 380px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-overlay.open .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-header {
  margin-bottom: 2rem;
}

.mobile-menu-header img {
  height: 50px;
  width: auto;
}

/* --- Menu Links (staggered animation) --- */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.mobile-nav-list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.open .mobile-nav-list li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.open .mobile-nav-list li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu-overlay.open .mobile-nav-list li:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu-overlay.open .mobile-nav-list li:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu-overlay.open .mobile-nav-list li:nth-child(4) { transition-delay: 0.32s; }

.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 14px 0;
  text-decoration: none;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
  position: relative;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  letter-spacing: 1px;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* --- Footer inside mobile menu --- */
.mobile-menu-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.4s;
}

.mobile-menu-overlay.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* --- Hide mobile elements on desktop --- */
@media (min-width: 992px) {
  .menu-toggle-btn,
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: rgba(189,160,99,0.1);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1rem;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  display: inline-block;
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ========================================
   PAGE BANNER (inner pages)
   ======================================== */
.page-banner {
  position: relative;
  padding: 140px 0 70px;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.page-banner .page-carousel {
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.page-banner .page-carousel .carousel-inner,
.page-banner .page-carousel .carousel-item {
  height: 100%;
}

.page-banner .page-carousel .carousel-item {
  background-size: cover;
  background-position: center;
}

.page-banner .page-carousel .carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 100%);
}

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

.page-banner h1 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.page-banner .breadcrumb a {
  color: var(--gold);
}

.page-banner .breadcrumb span {
  color: rgba(255,255,255,0.5);
}

/* ========================================
   ANIMATIONS ON SCROLL
   ======================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
}
@media (max-width: 991.98px) {
  #main-nav {
    height: 70px;
  }

  #main-nav .navbar-brand img {
    height: 40px;
  }

  .hero-section {
    padding-top: 70px;
    min-height: 85vh;
  }

  .hero-carousel {
    top: 75px;
  }

  .page-banner {
    padding: 120px 0 50px;
  }

  .page-banner .page-carousel {
    top: 75px;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-image img {
    height: 350px;
  }

  .about-experience-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }

  .exp-number {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    left: 50px !important;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stats-image-wrapper img {
    height: 350px;
  }

  .stats-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }

  .stats-badge .exp-number {
    font-size: 1.6rem;
  }

  .service-preview-card {
    height: 280px;
  }

  .process-steps {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .process-step-number {
    margin: 0;
    min-width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .emergency-section h2 {
    font-size: 1.8rem;
  }

  .emergency-phone {
    padding: 14px 28px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .page-banner {
    padding: 110px 0 50px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .hero-buttons .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .about-image img {
    height: 280px;
  }

  .about-heading {
    font-size: 1.5rem;
  }

  .stat-item {
    padding: 15px 5px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stats-grid .stat-item {
    padding: 16px 10px;
  }

  .stats-image-wrapper img {
    height: 280px;
  }

  .stats-badge {
    width: 90px;
    height: 90px;
    bottom: -10px;
    right: -10px;
  }

  .stats-badge .exp-number {
    font-size: 1.3rem;
  }

  .stats-badge .exp-text {
    font-size: 0.65rem;
  }

  .service-preview-card {
    height: 230px;
  }

  .service-preview-content {
    padding: 20px;
  }

  .service-preview-content h4 {
    font-size: 1.1rem;
  }

  .emergency-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    left: 14px;
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 15px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }
}
