
    :root {
        --primary-dark: #1a1a1a;
        --secondary-dark: #2c2c2c;
        --accent-gold: #c9a96e;
        --accent-light: #e8d5b7;
        --text-light: #f5f5f5;
        --text-muted: #b8b8b8;
        --border-subtle: rgba(201, 169, 110, 0.2);
        --shadow-primary: rgba(0, 0, 0, 0.8);
        --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #3d3d3d 100%);
        --gradient-accent: linear-gradient(135deg, #c9a96e 0%, #e8d5b7 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Source Sans Pro', sans-serif;
        background: var(--primary-dark);
        color: var(--text-light);
        overflow-x: hidden;
        line-height: 1.6;
    }
    
    @media (max-width: 767px) {
      .quality-badge {
        display: none !important;
      }
    }


    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-subtle);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 8px 0;
        background: rgba(26, 26, 26, 0.98);
    }

    .navbar-brand {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--accent-gold);
        text-decoration: none;
        letter-spacing: -0.5px;
    }

    .navbar-nav .nav-link {
        color: var(--text-light);
        font-weight: 500;
        margin: 0 15px;
        position: relative;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .navbar-nav .nav-link:hover {
        color: var(--accent-gold);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-accent);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    .emergency-contact {
        background: var(--gradient-accent);
        color: var(--primary-dark);
        padding: 12px 25px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .emergency-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
        color: var(--primary-dark);
    }

    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        background: var(--gradient-primary);
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 120px 0 80px;
    }

    .location-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(201, 169, 110, 0.1);
        border: 1px solid var(--border-subtle);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        color: var(--accent-gold);
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .location-dot {
        width: 8px;
        height: 8px;
        background: var(--accent-gold);
        border-radius: 50%;
        margin-right: 10px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 30px;
        color: var(--text-light);
    }

    .hero-title .text-accent {
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 18px;
        color: var(--text-muted);
        margin-bottom: 40px;
        max-width: 600px;
        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        align-items: center;
    }

    .btn-primary {
        background: var(--gradient-accent);
        color: var(--primary-dark);
        padding: 18px 35px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
        color: var(--primary-dark);
    }

    .btn-secondary {
        background: transparent;
        color: var(--accent-gold);
        padding: 18px 35px;
        border: 2px solid var(--accent-gold);
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .btn-secondary:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(201, 169, 110, 0.3);
    }

    /* Hero Image Section */
    .hero-image {
        position: relative;
        z-index: 2;
    }

    .image-container {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        margin: 25px auto;
        box-shadow: 0 25px 60px var(--shadow-primary);
    }

    .hero-img {
        width: 100%;
        height: auto;
        max-height: 70vh !important;
        display: block;
        transition: transform 0.3s ease;
        z-index: 10000 !important;
    }

    .image-container:hover .hero-img {
        transform: scale(1.05);
    }

    .quality-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(26, 26, 26, 0.9);
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        border-radius: 8px;
        border: 1px solid var(--border-subtle);
    }

    .rating-stars {
        color: var(--accent-gold);
        font-size: 14px;
        margin-right: 8px;
    }

    .rating-text {
        color: var(--text-light);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    /* Stats Section */
    .stats-section {
        background: var(--secondary-dark);
        padding: 80px 0;
        position: relative;
    }

    .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: calc(5 * 1fr + 4 * 40px); /* Limit to max 5 items width including gaps */
    margin-left: auto;
    margin-right: auto;
}

    .stat-card {
        text-align: center;
        padding: 40px 30px;
        background: rgba(201, 169, 110, 0.05);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        background: rgba(201, 169, 110, 0.1);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .stat-icon {
        font-size: 48px;
        color: var(--accent-gold);
        margin-bottom: 20px;
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 16px;
        color: var(--text-muted);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Section Styling */
    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--text-light);
        margin-bottom: 20px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 18px;
        color: var(--text-muted);
        text-align: center;
        max-width: 800px;
        margin: 0 auto 20px;
        line-height: 1.7;
    }

    /* Floating Elements */
    .floating-element {
        position: absolute;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
    }

    .floating-1 {
        top: 20%;
        left: 5%;
        font-size: 120px;
        color: var(--accent-gold);
        animation-delay: 0s;
    }

    .floating-2 {
        top: 60%;
        right: 8%;
        font-size: 80px;
        color: var(--accent-gold);
        animation-delay: 3s;
    }
    
    .floating-3 {
        top: 10%;
        left: 5%;
        font-size: 120px;
        color: var(--accent-gold);
        animation-delay: 0s;
    }

    .floating-4 {
        top: 60%;
        right: 8%;
        font-size: 80px;
        color: var(--accent-gold);
        animation-delay: 3s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .navbar {
            padding: 15px 0;
        }

        .hero-content {
            padding: 100px 0 60px;
            text-align: center;
        }

        .hero-actions {
            justify-content: center;
            flex-direction: column;
            width: 100%;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .floating-element {
            display: none;
        }
    }

    /* Animation Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
    }

    .fade-in.animated {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.8s ease;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--primary-dark);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--accent-gold);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--accent-light);
    }



.service-cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 28px;
margin: 0 auto;
max-width: 900px;
justify-content: center; /* This helps center the last row */
}

/* Center the last item(s) if the last row is not full */
.service-cards-grid > *:nth-last-child(-n+1):nth-child(5) {
grid-column: 2 / span 2; /* Center the 5th item in a 4-column grid */
}

.service-card {
background: #232323;
border-radius: 14px;
box-shadow: 0 4px 24px rgba(201,169,110,0.08);
padding: 32px 10px 24px 10px;
text-align: center;
transition: box-shadow 0.25s, transform 0.25s;
border: 1.5px solid rgba(201,169,110,0.08);
position: relative;
}

.service-card:hover {
box-shadow: 0 8px 32px rgba(201,169,110,0.18);
transform: translateY(-6px) scale(1.025);
border-color: #c9a96e;
}

.service-icon {
font-size: 2.2rem;
color: #c9a96e;
margin-bottom: 18px;
}

.service-title {
font-size: 1.08rem;
font-weight: 700;
color: #f5f5f5;
letter-spacing: 0.5px;
}

@media (max-width: 900px) {
.service-cards-grid {
grid-template-columns: repeat(2, 1fr);
}
.service-cards-grid > *:nth-last-child(-n+1):nth-child(5) {
grid-column: auto;
}
}

@media (max-width: 600px) {
.service-cards-grid {
grid-template-columns: 1fr;
gap: 18px;
}
.service-cards-grid > *:nth-last-child(-n+1):nth-child(5) {
grid-column: auto;
}
.service-card {
padding: 22px 5px 18px 5px;
}
}




/* General Styles */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.section-title .text-accent {
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: 1.12rem;
  color: #d6d6d6;
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
}
.icon-list li {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 14px 18px;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 2px 14px rgba(201,169,110,0.08);
  transition: box-shadow 0.2s, background 0.2s;
}
.icon-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  margin-right: 16px;
  flex-shrink: 0;
}

/* 1. Payment Section */
.bail-payment-section {
  background: #181818;
  color: #f5f5f5;
}
.bail-payment-section .icon-list li {
  background: #232323;
  color: #e8d5b7;
}
.bail-payment-section .icon-list .icon {
  background: linear-gradient(135deg, #c9a96e 0%, #e8d5b7 100%);
  color: #181818;
}

/* 2. After Bail Section */
.after-bail-section {
  background: #f5f5f5;
  color: #232323;
}
.after-bail-section .section-title,
.after-bail-section .lead {
  color: #232323;
}
.after-bail-section .icon-list li {
  background: #e8d5b7;
  color: #232323;
}
.after-bail-section .icon-list .icon {
  background: linear-gradient(135deg, #81c995 0%, #a8e6cf 100%);
  color: #232323;
}
.after-bail-section .also-handle-list li {
  background: #fff;
  color: #232323;
}
.after-bail-section .also-handle-list .icon {
  background: linear-gradient(135deg, #fbbc04 0%, #fff176 100%);
  color: #232323;
}

/* 3. Why Choose Section */
.why-choose-section {
  background: #232323;
  color: #f5f5f5;
}
.why-choose-section .icon-list li {
  background: #181818;
  color: #e8d5b7;
  border-left: 4px solid #c9a96e;
}
.why-choose-section .icon-list .icon {
  background: linear-gradient(135deg, #8ab4f8 0%, #a0c1ff 100%);
  color: #232323;
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.22rem;
  }
  .lead {
    font-size: 1rem;
  }
  .icon-list {
    max-width: 100%;
    font-size: 1rem;
  }
  .icon-list li {
    padding: 12px 10px;
    font-size: 1rem;
  }
  .icon-list .icon {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
    margin-right: 10px;
  }
}




    /* Animate shadow and depth for pop effect */
.animated-from-left, .animated-from-right, .animated-from-bottom {
  opacity: 0;
  will-change: transform, opacity;
  transition: box-shadow 0.3s;
}
.icon-list li, .icon-list .icon {
  transition: box-shadow 0.3s, transform 0.3s;
}
.icon-list li:hover {
  box-shadow: 0 8px 32px rgba(201,169,110,0.18), 0 2px 10px #0003;
  transform: scale(1.05) translateX(8px);
  z-index: 2;
}
.icon-list .icon {
  box-shadow: 0 2px 8px rgba(201,169,110,0.10);
}




.bail-support-section {
  background: #222;
  color: #f5f5f5;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 1.2rem;
}

.section-title .text-accent {
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 1.2rem;
  color: #d6d6d6;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  text-align: left;
}

.service-list li {
  font-size: 1.08rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.call-now-btn {
  display: inline-block;
  margin-top: 1.6rem;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  color: #222;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(201, 169, 110, 0.15);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.call-now-btn:hover {
  background: #c9a96e;
  color: #1a1a1a;
  transform: translateY(-2px) scale(1.03);
}

.bail-table {
  background: #181818;
  border-radius: 8px;
  overflow: hidden;
  color: #f5f5f5;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
}

.bail-table td {
    color: #f5f5f5 !important;
}

.bail-table th, .bail-table td {
  border: none;
  padding: 1.1rem 1rem;
  font-size: 1rem;
}

.bail-table thead th {
  background: #2c2c2c;
  color: #c9a96e;
  font-size: 1.08rem;
  letter-spacing: 1px;
}

.bail-table tr:nth-child(even) {
  background: #232323;
}

.bail-table tr:hover {
  background: #282828;
}

.bail-process-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.bail-process-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.3rem;
  font-size: 1.08rem;
  color: #e8d5b7;
}

.bail-process-list li::before {
  counter-increment: step;
  content: counter(step) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a96e;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.3rem;
  }
  .lead {
    font-size: 1rem;
  }
  .bail-table th, .bail-table td {
    font-size: 0.98rem;
    padding: 0.7rem 0.6rem;
  }
  .service-list {
    max-width: 100%;
    font-size: 1rem;
  }
}




.service-areas-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  background: #faf9f6;
  padding: 3rem 0;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  line-height: 1.5; /* good line height for readability */
}

.service-areas-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;      /* Larger heading for strong hierarchy */
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #4a4a4a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.service-areas-list {
    
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.service-area-badge {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;      /* Comfortable size for clickable links */
  font-weight: 600;
  color: #555555;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  letter-spacing: 0.02em;  /* Slight tracking for better legibility */
}

.service-area-badge:hover,
.service-area-badge:focus {
  background-color: #c9a96e;
  color: #232323;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  outline: none;
  cursor: pointer;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .service-areas-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .service-area-badge {
    font-size: 1.05rem;
    padding: 0.6rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .service-areas-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .service-area-badge {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
  }
}



.testimonial-carousel-section {
  background: linear-gradient(120deg, #181818 0%, #232323 100%);
  /*background: #f5f5f5;*/
  color: #f5f5f5;
  font-family: 'Playfair Display', serif;
  padding: 4rem 0 5rem 0;
}

.testimonial-carousel-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

.testimonial-carousel-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.testimonial-swiper {
  padding-bottom: 1rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.testimonial-card {
  background: rgba(30, 30, 30, 0.92);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(201, 169, 110, 0.12);
  padding: 1.6rem 1.1rem 1.8rem 1.1rem;
  min-width: 240px;
  max-width: 340px;
  min-height: 340px !important;
  height: 340px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
  cursor: default;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.testimonial-card:focus,
.testimonial-card:hover {
  transform: scale(1.035);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.22);
  outline: none;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a96e 0%, #e8d5b7 100%);
  color: #232323;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 2px 8px #c9a96e33;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #e8d5b7;
  margin-bottom: 1rem;
  position: relative;
  flex: 1 1 auto;
  width: 100%;

  display: -webkit-box;
  -webkit-line-clamp: 5; /* Show max 5 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.testimonial-content::before {
  content: "“";
  font-size: 2.2rem;
  color: #c9a96e;
  position: absolute;
  left: 8px;
  top: -10px;
  opacity: 0.18;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  color: #c9a96e;
  text-align: center;
  font-style: italic;
  margin-top: auto;
}

.stars {
  color: #f5c518;
  margin-left: 0.2rem;
  font-size: 1rem;
  vertical-align: middle;
}

/* Swiper navigation (if enabled) */
.swiper-button-next,
.swiper-button-prev {
  color: #c9a96e;
  background: rgba(34,34,34,0.75);
  border-radius: 50%;
  width: 2.1rem;
  height: 2.1rem;
  box-shadow: 0 2px 8px #c9a96e33;
  transition: background 0.2s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #e8d5b7;
  color: #232323;
}

.swiper-pagination-bullet {
  background: #c9a96e;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: background 0.2s, opacity 0.2s, border-color 0.2s;
}
.swiper-pagination-bullet-active {
  background: #e8d5b7;
  opacity: 1;
  border-color: #c9a96e;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .testimonial-carousel-section .container {
    max-width: 640px;
  }
  .testimonial-card {
    min-width: 280px;
      max-width: 320px;
      height: 320px; /* uniform height */
    padding: 1rem 0.5rem 1.1rem 0.5rem;
  }
  .testimonial-content {
    font-size: 0.93rem;
    max-height: 50px;
  }
}

@media (max-width: 600px) {
  .testimonial-carousel-section .container {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .testimonial-carousel-title {
    font-size: 1.13rem;
    margin-bottom: 1.2rem;
  }
  .testimonial-card {
    min-width: 120px;
    max-width: 99vw;
    height: 180px;
    padding: 0.7rem 0.2rem 0.9rem 0.2rem;
    font-size: 0.9rem;
  }
  .testimonial-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  .testimonial-content {
    font-size: 0.85rem;
    max-height: 30px;
  }
  .testimonial-author {
    font-size: 0.85rem;
  }
}


@media (max-width: 600px) {
  .testimonial-card {
    min-width: 90vw;
    max-width: 98vw;
    height: auto;
    padding: 0.7rem 0.2rem 0.9rem 0.2rem;
    font-size: 0.9rem;
  }
  .testimonial-content {
    font-size: 0.95rem;
    line-height: 1.5;
    max-height: none;
    display: block;
    overflow: visible;
    text-overflow: unset;
  }
}






.location-info-section {
  background: linear-gradient(120deg, #232323 0%, #181818 100%);
  color: #f5f5f5;
  padding: 2.5rem 0;
}

.location-info-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.location-info-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.location-map,
.contact-form {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 480px;
  background: rgba(34,34,34,0.18);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(201,169,110,0.10);
  padding: 1.3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-map {
  align-items: center;
}
.location-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(201,169,110,0.08);
  border: none;
}

.contact-form {
  background: rgba(34,34,34,0.10);
  /* Add extra styling if needed for your form */
}

.location-weather {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.location-weather .weatherwidget-io {
  min-width: 260px;
  max-width: 1000px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(201,169,110,0.08);
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .location-info-grid {
    flex-direction: column;
    gap: 1.3rem;
    align-items: stretch;
  }
  .location-map,
  .contact-form {
    max-width: 100%;
    padding: 1rem 0.2rem;
  }
  .location-map iframe {
    height: 220px;
  }
  .location-weather {
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .location-info-title {
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
  }
  .location-map,
  .contact-form {
    min-width: 0;
    padding: 0.5rem 0;
  }
  .location-map iframe {
    height: 140px;
    border-radius: 8px;
  }
  .location-weather .weatherwidget-io {
    font-size: 0.9rem;
    min-width: 0;
    max-width: 100vw;
  }
}




.splide__track {
    padding-top: 50px;
    padding-bottom: 50px;
}
.lvb-services-carousel-section {
  background: linear-gradient(120deg, #181818 0%, #232323 100%);
  color: #f5f5f5;
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.lvb-carousel-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lvb-service-card {
  background: rgba(34, 34, 34, 0.85);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.25);
  padding: 2.5rem 2rem;
  max-width: 480px;
  min-height: 360px;
  margin: 0 auto;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1.5px solid transparent;
}

.lvb-service-card:focus,
.lvb-service-card:hover {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 16px 64px rgba(201, 169, 110, 0.4);
  transform: scale(1.05);
  z-index: 10;
}

.lvb-service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.lvb-service-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.lvb-service-title a:hover,
.lvb-service-title a:focus {
  border-color: #e8d5b7;
  outline: none;
}

.lvb-service-card p {
  color: #e8d5b7;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Splide arrows */
#lvb-services-splide .splide__arrow {
  background: linear-gradient(135deg, #c9a96e 0%, #e8d5b7 100%);
  color: #232323;
  border-radius: 50%;
  width: 2.8rem;
  height: 2.8rem;
  box-shadow: 0 2px 10px rgba(201, 169, 110, 0.3);
  opacity: 0.9;
  transition: background 0.3s, color 0.3s;
  font-size: 1.3rem;
}

#lvb-services-splide .splide__arrow:hover {
  background: #e8d5b7;
  color: #232323;
  opacity: 1;
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.5);
}

/* Pagination dots */
#lvb-services-splide .splide__pagination__page {
  background: #c9a96e;
  opacity: 0.5;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 6px;
  border: 2px solid transparent;
  transition: background 0.3s, opacity 0.3s, border-color 0.3s;
}

#lvb-services-splide .splide__pagination__page.is-active {
  background: #e8d5b7;
  opacity: 1;
  border-color: #c9a96e;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 900px) {
  .lvb-service-card {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .lvb-carousel-main-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  .lvb-service-card {
    padding: 1.5rem 1rem;
    min-height: 320px;
  }
  .lvb-service-title {
    font-size: 1.1rem;
  }
}

/*.bail-process-list > li > strong {*/
/*    color: #c9a96e !important;*/
/*}*/


/*FAQ section*/
.immigration-faq-section {
  background: linear-gradient(135deg, #181818 0%, #232323 100%);
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  padding: 4rem 0;
}

.immigration-faq-section .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, #c9a96e 0%, #e8d5b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(30, 30, 30, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.2rem;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: #c9a96e;
  background: rgba(201, 169, 110, 0.05);
}

.faq-question:focus {
  outline: 2px solid #c9a96e;
  outline-offset: -2px;
}

.faq-icon {
  font-size: 1.3rem;
  color: #c9a96e;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 1.2rem 1.5rem 1.2rem;
  color: #e8d5b7;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer-content p {
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .faq-question {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }
  
  .faq-answer-content {
    padding: 0 1rem 1.2rem 1rem;
    font-size: 0.95rem;
  }
  
  .faq-icon {
    margin-left: 0.5rem;
  }
}

@media (max-width: 480px) {
  .immigration-faq-section {
    padding: 3rem 0;
  }
  
  .faq-title {
    font-size: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .faq-answer-content {
    padding: 0 0.8rem 1rem 0.8rem;
    font-size: 0.9rem;
  }
}


.g-link {
    color: #d6bc8d !important;
}
