:root {
    --primary-color: #1295d9;
    --secondary-color: #27f7c6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --dark-bg: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* FIXED: Enhanced Navbar with proper z-index and mobile fixes */
.custom-navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(18, 149, 217, 0.07);
    border-bottom: 1.5px solid #e2e8f0;
    z-index: 9999 !important; /* FIXED: Higher z-index */
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 38px;
    width: auto;
    margin-right: 10px;
    display: inline-block;
}

.navbar-brand-text {
    font-weight: 800;
    font-size: 1.45rem;
    color: #1295d9 !important;
    letter-spacing: 0.5px;
}

/* FIXED: Improved navbar toggler for mobile */
.navbar-toggler {
    border: 2px solid #1295d9 !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    background: rgba(18, 149, 217, 0.1) !important;
    z-index: 10000 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(18, 149, 217, 0.25) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231295d9' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 20px !important;
    height: 20px !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #1e293b !important;
    margin: 0 4px;
    font-size: 1.08rem;
    transition: color 0.3s, background 0.3s;
    border-radius: 8px;
    padding: 8px 18px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #27f7c6 !important;
    background: #f0f9ff;
}

.btn-navbar-cta {
    background: linear-gradient(90deg, #1295d9 60%, #27f7c6 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.08rem;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    box-shadow: 0 4px 18px rgba(18, 149, 217, 0.1);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-navbar-cta:hover {
    background: #1295d9;
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
}

/* FIXED: Mobile navbar improvements */
@media (max-width: 991px) {
    .navbar-collapse {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 15px !important;
    margin-top: 15px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
    }

    .btn-navbar-cta {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    }

    .navbar-nav .nav-link {
    margin: 0 0 8px 0;
    text-align: center;
    }
}

/* Hero Slider - Enhanced mobile responsiveness */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 500px; /* FIXED: Minimum height for mobile */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 20px; /* FIXED: Added padding for mobile */
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.2s both;
}

.btn-hero {
    background: var(--accent-color);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
    display: inline-block;
    animation: slideInUp 1s ease-out 0.4s both;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-hero:hover {
    background: #d97706;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    color: white;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* Section Styling */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Advantages Section */
.advantages-section {
    background: var(--bg-light);
}

.advantage-card {
    background: #fff;
    padding: 56px 35px 40px 35px;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(18, 149, 217, 0.13);
    transition: all 0.4s cubic-bezier(0.4, 2, 0.6, 1);
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px; /* FIXED: Added margin for mobile */
}

.advantage-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 30px 60px rgba(18, 149, 217, 0.18);
}

.advantage-svg-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    background: linear-gradient(135deg, #e0f7fa 60%, #b2fefa 100%);
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(18, 149, 217, 0.1);
}

.advantage-svg-icon img {
    width: 54px;
    height: 54px;
    display: block;
}

.advantage-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    color: #1295d9;
    letter-spacing: 0.2px;
}

.advantage-card p {
    color: #1e293b;
    text-align: center;
    line-height: 1.7;
    font-size: 1.08rem;
    font-weight: 500;
}

.advantage-card p strong {
    color: #27f7c6;
    font-weight: 700;
}

/* Enhanced About Section */
.about-section {
    background: white;
}

.about-text h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-summary {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.3rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-gallery img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%; /* FIXED: Ensure images are responsive */
    height: auto;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

.about-gallery .main-image {
    grid-column: 1 / -1;
}

/* Enhanced Video Section */
.video-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #334155 100%);
    color: white;
}

.video-section .section-title h2,
.video-section .section-title p {
    color: white;
}

.video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px; /* FIXED: Added margin for mobile */
}

.video-container iframe {
    border-radius: 25px;
    width: 100%;
    height: 400px;
}

.video-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.video-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

.video-highlights {
    list-style: none;
    padding: 0;
}

.video-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-highlights i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Enhanced Process Section */
.process-section {
    background: #f1f5f9;
    position: relative;
}

.process-details-btn {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.process-details-btn:hover {
    background: #1ee6b8;
    transform: translateY(-2px);
}

.process-step {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
    padding: 44px 28px 36px 28px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(18, 149, 217, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1.5px solid #e2e8f0;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(18, 149, 217, 0.16);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e0f7fa 60%, #b2fefa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    font-size: 2.2rem;
    color: #1295d9;
    box-shadow: 0 4px 18px rgba(18, 149, 217, 0.1);
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.process-step p {
    color: #334155;
    line-height: 1.7;
    font-size: 1.07rem;
    font-weight: 500;
}

.process-step p strong {
    color: #27f7c6;
    font-weight: 700;
}

.process-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
}

.process-gallery-thumb {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: border 0.2s, transform 0.2s;
}

.process-gallery-thumb:hover {
    border: 2px solid var(--primary-color);
    transform: scale(1.08);
}

/* Enhanced Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-form {
    background: #f8fafc;
    padding: 48px 38px;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(18, 149, 217, 0.1);
    border: 1.5px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form form {
    width: 100%;
}

.contact-form .form-control,
.contact-form select,
.contact-form textarea {
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 22px;
    font-size: 1.08rem;
    background: #fff;
    color: #1e293b;
    margin-bottom: 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #1295d9;
    box-shadow: 0 0 0 2px rgba(18, 149, 217, 0.1);
    background: #f0f9ff;
}

.contact-form .form-control::placeholder,
.contact-form textarea::placeholder {
    color: #b6c2d1;
    font-size: 1.05rem;
}

.contact-form select {
    color: #334155;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form .btn-hero {
    background: linear-gradient(90deg, #1295d9 60%, #27f7c6 100%);
    color: #fff;
    border: none;
    padding: 18px 0;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(18, 149, 217, 0.1);
    margin-top: 10px;
}

.contact-form .btn-hero:hover {
    background: #1295d9;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.contact-map {
    background: linear-gradient(135deg, var(--primary-color) 50%, white 50%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(18, 149, 217, 0.1);
    border: 1.5px solid #e2e8f0;
}

.contact-info-cards-row {
    margin-top: 40px;
    gap: 24px;
}

.contact-card {
    background: white;
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    min-width: 220px;
    flex: 1 1 220px;
    margin-bottom: 20px; /* FIXED: Added margin for mobile */
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card i {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 1.3rem;
}

.contact-card h5 {
    margin: 0 0 6px 0;
    font-weight: 700;
    color: #1295d9;
    font-size: 1.1rem;
}

.contact-card p {
    color: #334155;
    margin-bottom: 0;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* FIXED: Allow wrapping on mobile */
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) scale(1.1);
    color: var(--text-dark);
}

/* FIXED: Enhanced WhatsApp Button with proper z-index */
.whatsapp-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 35px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    padding: 0 28px;
    min-width: 0;
    height: 56px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: #fff;
    font-size: 1.15rem;
    text-decoration: none;
    z-index: 9998 !important;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn i {
    font-size: 2rem;
    margin-right: 14px;
    margin-left: 2px;
}

.whatsapp-btn-text {
    font-weight: 600;
    font-size: 1.13rem;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.5px;
    margin: 0;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.08);
    color: #fff;
}

.whatsapp-btn::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 40px;
    animation: ripple 2s infinite;
    z-index: -1;
}

/* Enhanced Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 100px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.footer-section p,
.footer-section li {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #475569;
    border-radius: 12px;
    background: #334155;
    color: white;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: var(--secondary-color);
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #1ee6b8;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 40px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap; /* FIXED: Allow wrapping on mobile */
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #475569;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes slideInUp {
    from {
    opacity: 0;
    transform: translateY(50px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ripple {
    0% {
    transform: scale(1);
    opacity: 1;
    }
    100% {
    transform: scale(1.5);
    opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FIXED: Enhanced Mobile Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
    font-size: 3.5rem;
    }

    .section-title h2 {
    font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .advantage-card {
    padding: 36px 20px 28px 20px;
    }

    .advantage-svg-icon {
    width: 70px;
    height: 70px;
    }

    .advantage-svg-icon img {
    width: 38px;
    height: 38px;
    }

    .process-step {
    min-height: 420px;
    }

    .process-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin-bottom: 16px;
    }

    .contact-form {
    padding: 28px 20px;
    }

    .contact-info-cards-row {
    flex-direction: column !important;
    gap: 18px;
    }

    .contact-card {
    min-width: 0;
    width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-slider {
    height: 70vh;
    min-height: 500px;
    }

    .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    }

    .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    }

    .btn-hero {
    padding: 15px 30px;
    font-size: 1.1rem;
    }

    .section {
    padding: 60px 0;
    }

    .section-title h2 {
    font-size: 2.2rem;
    }

    .section-title p {
    font-size: 1.1rem;
    }

    .advantage-card {
    padding: 25px 15px 20px 15px;
    }

    .advantage-svg-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    }

    .advantage-svg-icon img {
    width: 32px;
    height: 32px;
    }

    .advantage-card h4 {
    font-size: 1.2rem;
    }

    .about-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
    }

    .about-text h3 {
    font-size: 2.2rem;
    }

    .video-container iframe {
    height: 250px;
    }

    .video-info h3 {
    font-size: 2rem;
    }

    .process-section {
    padding: 50px 0 30px 0;
    }

    .process-step {
    min-height: 360px;
    }

    .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    }

    .process-step h4 {
    font-size: 1.1rem;
    }

    .contact-section .row.align-items-stretch {
    flex-direction: column;
    }

    .contact-form,
    .contact-map {
    margin-bottom: 25px;
    }

    .contact-form {
    padding: 25px 15px;
    }

    .contact-info-cards-row {
    margin-top: 30px;
    }

    .whatsapp-btn {
    height: 48px;
    padding: 0 14px;
    right: 16px;
    bottom: 16px;
    border-radius: 24px;
    }

    .whatsapp-btn i {
    font-size: 1.3rem;
    margin-right: 8px;
    }

    .whatsapp-btn-text {
    font-size: 0.98rem;
    }

    .footer {
    padding: 60px 0 30px;
    }

    .footer-content {
    gap: 30px;
    margin-bottom: 30px;
    }

    .newsletter-form {
    flex-direction: column;
    gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
    font-size: 2.2rem;
    }

    .hero p {
    font-size: 1.1rem;
    }

    .section-title h2 {
    font-size: 1.8rem;
    }

    .advantage-card h4 {
    font-size: 1.1rem;
    }

    .about-text h3 {
    font-size: 1.8rem;
    }

    .video-info h3 {
    font-size: 1.6rem;
    }

    .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    }

    .contact-card i {
    margin-right: 0;
    margin-bottom: 10px;
    }
}

/* FIXED: Ensure proper stacking order */
.navbar {
    z-index: 9999 !important;
}

.whatsapp-btn {
    z-index: 9998 !important;
}

.hero-slider {
    z-index: 1;
}

/* FIXED: Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* FIXED: Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* FIXED: Better button touch targets on mobile */
@media (max-width: 768px) {
    .btn,
    .btn-hero,
    .btn-navbar-cta {
    min-height: 44px;
    padding: 12px 24px;
    }

    .slider-dot {
    width: 20px;
    height: 20px;
    }

    .review-nav-btn {
    width: 50px;
    height: 50px;
    }
}

/* Process Gallery Image Style */
.process-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(18, 149, 217, 0.13);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}
.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.3s;
}
.process-image img:hover {
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .process-image {
    height: 160px;
    margin-bottom: 18px;
    }
}
@media (max-width: 768px) {
    .process-image {
    height: 120px;
    margin-bottom: 14px;
    }
}

/* Modal Styles */
.process-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,41,59,0.85);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.process-modal.active {
    display: flex;
}
.process-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(18,149,217,0.18);
    padding: 0;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.process-modal-img {
    max-width: 80vw;
    max-height: 70vh;
    border-radius: 18px 18px 0 0;
    display: block;
}
.process-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #1295d9;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
}
.process-modal-close:hover {
    color: #f59e0b;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    min-width: 70px;
    height: 70px;
}

.whatsapp-btn-text {
    margin-left: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        min-width: 60px;
        height: 60px;
        padding: 0 16px;
    }
    .whatsapp-btn-text {
        font-size: 1rem;
    }
}