/* Fix horizontal overflow on mobile */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    position: relative;
}

/* Ensure all sections don't overflow */
section {
    overflow-x: hidden !important;
}

/* Only fix rows within sections, not in navbar */
section .row {
    margin-left: 0;
    margin-right: 0;
}

/* Hero title and section titles font */
.lead-title, .section-title {
    font-family: 'DomaineDispCondSemibold-Italic', serif !important;
}

/* Ensure container-fluid doesn't overflow */
.container-fluid {
    overflow-x: hidden;
}

/* Hide default WhatsApp button on landing page */
.whats-app-icon-area {
    display: none;
}

/* HIGH PRIORITY: Darken hero overlay for better text visibility */
.bg-transparent-5 {
    background-color: rgba(0, 0, 0, 0.70) !important;
}

/* Hero Section Height */
.home-banner {
    min-height: 80vh !important;
    height: 80vh !important;
}

.banner-content {
    min-height: 80vh !important;
    height: 80vh !important;
}

/* Mobile-specific override - added here for higher priority */
@media (max-width: 768px) {
    section.home-banner.banner-with-overlay-nav,
    section.home-banner.with-bg-img,
    section.home-banner {
        min-height: 50vh !important;
        height: 50vh !important;
        max-height: 50vh !important;
    }

    section.home-banner .banner-content,
    .home-banner .banner-content.bg-transparent-5 {
        min-height: 50vh !important;
        height: 50vh !important;
        max-height: 50vh !important;
    }
}

@media (max-width: 480px) {
    section.home-banner.banner-with-overlay-nav,
    section.home-banner.with-bg-img,
    section.home-banner {
        min-height: 50vh !important;
        height: 50vh !important;
        max-height: 50vh !important;
    }

    section.home-banner .banner-content,
    .home-banner .banner-content.bg-transparent-5 {
        min-height: 50vh !important;
        height: 50vh !important;
        max-height: 50vh !important;
    }
}

/* Landing Page Minimal Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: 'DomaineDispCondSemibold-Italic', serif !important;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: #d4af37;
    margin: 20px auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-section, .faq-section {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

.steps-section {
    padding: 100px 0 80px;
    background: #f9f9f9;
    position: relative;
    z-index: 1;
}

#ourServices {
    position: relative;
    /* z-index: 1; */
}

#ourServices .row,
#ourServices .col-xl-3 {
    position: relative;
    /* z-index: 1; */
}

/* Vertical Card Styles with Gradient Overlay - ONLY for Steps Section */
#ourServices .vertical-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    /* z-index: 1; */
}

#ourServices .vertical-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

#ourServices .bg-cover {
    background-size: cover;
    background-position: center;
}

#ourServices .bg-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* z-index: 1; */
}

/* Black to transparent gradient overlay for better text readability */
#ourServices .card-overlay-effect {
    position: relative;
    z-index: 2;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0) 100%); */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0.1) 100%);
    transition: all 0.3s ease;
}

#ourServices .vertical-card:hover .card-overlay-effect {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 85%, rgba(0, 0, 0, 0.1) 100%);
}

#ourServices .ratio {
    position: relative;
    width: 100%;
}

#ourServices .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.excellence-section, .testimonials-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.contact-form-section {
    padding: 56px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.contact-form-section .section-header {
    margin-bottom: 42px;
}

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

.clients-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    border: none !important;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

/* Alternating Service Layout Styles */
.service-title-alt {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.service-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.excellence-item {
    margin-bottom: 30px;
}

.excellence-icon {
    width: 60px;
    height: 60px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.excellence-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.excellence-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stat-item {
    padding: 30px 20px;
    background: #1a1a1a;
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #ffd700;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    opacity: 1;
    color: #ffd700;
}

.clients-grid {
    padding: 40px 0;
}

.client-logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Clients Auto-Scroll Styles */
.clients-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.clients-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.clients-scroll-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 50s linear infinite;
    width: max-content;
}

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

.client-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-section {
    margin-top: 60px;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.achievements-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.achievements-text strong {
    color: #d4af37;
    font-weight: 700;
}

.achievements-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.steps-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
    margin: 60px 0;
    padding-top: 60px;
    flex-wrap: wrap;
    position: relative;
}

.step-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 50px 30px 35px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(50px);
}

.step-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.step-item:hover .step-glow {
    opacity: 1;
}

.step-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
    border: 4px solid white;
    z-index: 2;
}

.steps-section {
    overflow: visible !important;
}

.steps-container,
.step-item {
    overflow: visible !important;
}

.step-number span {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.15) rotate(360deg);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.step-icon-wrapper {
    margin: 35px 0 25px;
    display: flex;
    justify-content: center;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step-item:hover .step-icon::before {
    opacity: 1;
}

.step-icon i {
    font-size: 2.8rem;
    color: #d4af37;
    transition: all 0.4s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-item:hover .step-icon i {
    color: white;
    transform: scale(1.15);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.step-item:hover .step-title {
    color: #d4af37;
}

.step-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.step-item:hover .step-description {
    color: #555;
}

.step-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.step-action i {
    font-size: 1.5rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.step-item:hover .step-action {
    opacity: 1;
    transform: translateY(0);
}

.step-item:hover .step-action i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    position: relative;
}

.connector-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e8e8e8 0%, #d4af37 50%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.connector-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.steps-cta, .faq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
}

.faq-contact-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Modern Contact Form Styles */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 42px;
    border-radius: 14px;
    box-shadow: 0 7px 42px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 15px 80px rgba(212, 175, 55, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 21px;
    margin-bottom: 21px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 7px;
    color: #2c2c2c;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label .required {
    color: #d4af37;
    /* font-size: 1.2rem; */
}

.form-group label .dropoff-required {
    color: #d4af37;
    /* font-size: 1.2rem; */
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d4af37;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

.form-group textarea {
    resize: vertical;
    min-height: 84px;
}

.form-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
    margin: 28px 0;
}

.form-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-subtitle::before {
    content: '';
    width: 35px;
    height: 2px;
    background: #d4af37;
}

.btn-submit {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    color: #1a1a1a;
    padding: 14px 42px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-submit:disabled {
    cursor: not-allowed !important;
    opacity: 0.7;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.btn-submit .fa-spinner {
    animation: spin 1s linear infinite;
}

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

.form-submit {
    text-align: center;
    margin-top: 28px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 42px;
    padding: 28px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 21px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-info-item:hover {
    background: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-info-item i {
    font-size: 1.4rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    color: white;
    transform: scale(1.2);
}

.contact-info-item a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-info-item:hover a {
    color: white;
}

/* Input placeholder animation */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    transform: translateX(10px);
    opacity: 0.5;
}

/* Alert Messages */
.contact-form-wrapper .alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-form-wrapper .alert i {
    font-size: 1.3rem;
    margin-top: 2px;
}

.contact-form-wrapper .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.contact-form-wrapper .alert-success i {
    color: #28a745;
}

.contact-form-wrapper .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.contact-form-wrapper .alert-danger i {
    color: #dc3545;
}

.contact-form-wrapper .alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.contact-form-wrapper .alert-warning i {
    color: #ffc107;
}

.contact-form-wrapper .alert ul {
    list-style: disc;
    padding-left: 20px;
}

.contact-form-wrapper .btn-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.contact-form-wrapper .btn-close:hover {
    opacity: 1;
}

/* Success Message Section */
.contact-success-message {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 42px;
    border-radius: 14px;
    box-shadow: 0 7px 42px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: slideInUp 0.6s ease;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 3.5rem;
    color: white;
}

.success-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease 0.3s both;
}

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

.success-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.5s ease 0.4s both;
}

.success-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 35px;
    animation: fadeInUp 0.5s ease 0.5s both;
}

.success-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.success-detail-item i {
    font-size: 1.3rem;
    color: #d4af37;
}

.contact-success-message .btn-submit {
    animation: fadeInUp 0.5s ease 0.6s both;
    text-decoration: none;
}

.contact-success-message .btn-submit:hover {
    text-decoration: none;
}

/* Hide/Show Animations */
.fade-out {
    animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Testimonials Owl Carousel Styles */
.testimonials-carousel {
    margin-top: 60px;
}

.testimonial-slide {
    padding: 0 10px;
}

.testimonial-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Make all testimonial slides equal height */
.testimonials-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonials-carousel .testimonial-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.testimonial-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    background: #d4af37;
}

.testimonial-header {
    margin-bottom: 15px;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.testimonial-position {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-card:hover .testimonial-stars {
    transform: scale(1.1);
}

.testimonial-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

/* Owl Carousel Custom Styles */
.testimonials-section .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.testimonials-section .owl-theme .owl-nav [class*='owl-'] {
    background: rgba(26, 26, 26, 0.8);
    color: white;
    font-size: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.testimonials-section .owl-theme .owl-nav .owl-prev {
    position: absolute;
    left: -30px;
}

.testimonials-section .owl-theme .owl-nav .owl-next {
    position: absolute;
    right: -30px;
}

.testimonials-section .owl-theme .owl-nav [class*='owl-']:hover {
    background: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.testimonials-section .owl-carousel {
    position: relative;
    padding: 0 20px;
}

/* Hide navigation arrows completely */
.testimonials-section .owl-theme .owl-nav {
    display: none !important;
}

.owl-theme .owl-dots {
    margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #d4af37;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #1a1a1a;
    transform: scale(1.3);
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #1a1a1a;
}

@media (max-width: 1200px) {
    .testimonials-section .owl-carousel {
        padding: 0 20px;
    }

    .testimonials-section .owl-theme .owl-nav .owl-prev {
        left: -10px;
    }

    .testimonials-section .owl-theme .owl-nav .owl-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow on images and large elements */
    img, video, iframe {
        max-width: 100%;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .section-header {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
        margin: 40px 0;
        padding-top: 40px;
    }

    .step-connector {
        display: none;
    }

    .step-item {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 28px 14px;
        margin: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .form-group {
        width: 100% !important;
        min-width: auto !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        min-width: auto !important;
    }

    /* Ensure date and time inputs display properly */
    input[type="date"],
    input[type="time"] {
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .contact-info {
        gap: 14px;
        padding: 21px 14px;
        margin: 20px 10px;
    }

    .contact-info-item {
        width: 100%;
        justify-content: center;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .testimonial-slide {
        padding: 0 10px;
    }

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

    /* Hide navigation arrows on mobile, show only dots */
    .testimonials-section .owl-theme .owl-nav {
        display: none;
    }

    .testimonials-section .owl-carousel {
        padding: 0 10px;
    }

    .testimonial-card {
        min-height: 350px;
    }

    /* Fix testimonial avatar on mobile */
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

    .testimonial-avatar img {
        width: 100% !important;
        height: 100% !important;
    }

    .contact-success-message {
        padding: 40px 28px;
        margin: 0 10px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon i {
        font-size: 2.5rem;
    }

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

    .success-text {
        font-size: 1rem;
    }

    .success-details {
        padding: 20px;
    }

    .success-detail-item {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Fix clients section scroll */
    .clients-scroll-wrapper {
        overflow-x: auto;
        margin: 20px 0;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
    }

    .clients-scroll-track {
        gap: 40px;
    }

    .client-slide {
        flex: 0 0 auto;
        min-width: 120px;
    }

    .client-logo {
        max-width: 120px;
        max-height: 60px;
    }

    /* Fix achievements section */
    .achievements-section {
        margin-top: 40px;
        padding: 30px 15px;
    }

    .achievements-text {
        font-size: 1rem;
    }

    .achievements-highlight {
        font-size: 1.1rem;
    }

    /* Fix stats section */
    .stat-item {
        padding: 20px 15px;
    }

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

    .stat-label {
        font-size: 0.9rem;
    }

    /* Fix services section */
    .service-card {
        padding: 30px 20px;
        margin: 0 0 20px 0;
    }

    .service-title-alt {
        font-size: 1.6rem;
    }

    /* Fix WhatsApp float button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Fix FAQ section */
    .faq-container {
        padding: 0 10px;
    }

    .faq-question {
        padding: 20px 15px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
        padding-right: 10px;
    }

    .faq-answer p {
        padding: 0 15px 20px;
        font-size: 0.95rem;
    }

    .faq-contact-text {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    /* Fix steps CTA buttons */
    .steps-cta {
        padding: 0 15px;
        gap: 15px;
    }

    .steps-cta .btn {
        font-size: 0.9rem;
        padding: 10px 20px !important;
    }
}
