/* ============================================
   Global Styles & Variables
   ============================================ */

:root {
    --bg-color: #FCFCFC;
    --primary-color: #1D4277;
    --secondary-color: #112B50;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Top Bar
   ============================================ */

.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-item {
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.top-bar-item i {
    margin-left: 0.5rem;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar-item a:hover {
    opacity: 0.8;
}

/* Responsive spacing for top bar items */
.top-bar-item-spacing {
    margin-right: 1.5rem;
}

.social-icon {
    color: var(--white);
    font-size: 1.1rem;
    transition: transform 0.3s, opacity 0.3s;
    display: inline-block;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Responsive spacing for social icons */
.social-icon-spacing {
    margin-left: 1rem;
}

/* ============================================
   Header / Navbar
   ============================================ */

.navbar-section {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Fix borders in collapsed navbar */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(29, 66, 119, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(29, 66, 119, 0.05);
        color: var(--primary-color);
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='rgba(29, 66, 119, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    padding: 4rem 0 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Dots pattern for hero section */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.15) 1.5px,
        transparent 1.5px
    );
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Ensure hero content is above dots */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-25 {
    min-height: 25vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25D366 !important;
    color: var(--white) !important;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-whatsapp i {
    margin-left: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #20BA5A !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.hero-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.illustration-box {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.illustration-icon {
    font-size: 8rem;
    color: var(--white);
    opacity: 0.9;
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.features-section .row > [class*="col-"] {
    display: flex;
}

.features-section .row > .col-md-4 {
    flex: 1 1 calc(33.333% - 1.33rem);
    min-width: 280px;
    max-width: none;
}

.features-section .feature-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Content + Icons Section
   ============================================ */

.content-icons-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Dots pattern for content-icons-section */
.content-icons-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.15) 1.5px,
        transparent 1.5px
    );
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Ensure content is above dots */
.content-icons-section .container {
    position: relative;
    z-index: 2;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.icon-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

/* Icon wrapper for light backgrounds (if used elsewhere) */
.features-section .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.icon-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.icon-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
}

/* Override section title color for dark background sections */
.content-icons-section .section-title,
.who-section .section-title {
    color: var(--white);
}

.content-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.illustration-box-large {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, rgba(29, 66, 119, 0.1), rgba(17, 43, 80, 0.1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(29, 66, 119, 0.2);
}

.illustration-icon-large {
    font-size: 10rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* ============================================
   How it Works Section
   ============================================ */

.how-it-works-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Who is this for Section
   ============================================ */

/* Gradient Wrapper for Who and CTA Sections */
.gradient-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Dots pattern for gradient wrapper */
.gradient-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.15) 1.5px,
        transparent 1.5px
    );
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.who-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

/* Ensure content is above dots */
.who-section .container {
    position: relative;
    z-index: 2;
}

.who-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.who-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.who-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.who-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Call To Action Section
   ============================================ */

.cta-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--white) !important;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 66, 119, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    color: var(--white) !important;
}

/* White button for CTA section */
.btn-white.cta-button,
.cta-buttons .btn-white {
    background: var(--white) !important;
    background-color: var(--white) !important;
    background-image: none !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--white);
}

.btn-white.cta-button:hover,
.cta-buttons .btn-white:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Override cta-button styles for WhatsApp button - must be more specific */
a.btn-whatsapp.cta-button,
.cta-buttons a.btn-whatsapp,
.cta-buttons .btn-whatsapp.cta-button,
.cta-buttons .btn-whatsapp {
    padding: 1rem 2.5rem !important;
    background-color: #25D366 !important;
    background: #25D366 !important;
    background-image: none !important;
    color: var(--white) !important;
}

a.btn-whatsapp.cta-button:hover,
.cta-buttons a.btn-whatsapp:hover,
.cta-buttons .btn-whatsapp.cta-button:hover,
.cta-buttons .btn-whatsapp:hover {
    background-color: #20BA5A !important;
    background: #20BA5A !important;
    background-image: none !important;
    color: var(--white) !important;
}

/* ============================================
   Contact Form Section
   ============================================ */

.contact-form-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.contact-form-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.form-label .required {
    color: #dc3545;
    margin-right: 0.25rem;
}

.form-label .optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: var(--text-color);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(29, 66, 119, 0.1);
}

.form-control::placeholder {
    color: #999;
    opacity: 1;
}

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

.contact-submit-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: var(--white) !important;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 66, 119, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    color: var(--white) !important;
}

.contact-submit-btn i {
    margin-left: 0.5rem;
}

/* Form Message Styles */
.form-message {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form validation styles - removed colored borders */

/* ============================================
   Footer
   ============================================ */

.footer-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Dots pattern for footer */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px
    );
    background-size: 22px 22px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Ensure footer content is above background effects */
.footer-section .container {
    position: relative;
    z-index: 3;
}

/* Footer Content Container */
.footer-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer Brand Name */
.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Footer Description */
.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-social-icon {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s, opacity 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .illustration-box {
        width: 300px;
        height: 300px;
    }
    
    .illustration-icon {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 2.25rem;
        font-weight: 800;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-text {
        font-size: 0.95rem;
    }
    
    .icon-text h4 {
        font-size: 1.15rem;
    }
    
    .icon-text p {
        font-size: 0.9rem;
    }
    
    .who-title {
        font-size: 1.15rem;
    }
    
    .who-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.8rem;
        padding: 10px 0;
    }
    
    .top-bar-item {
        display: inline-flex;
        margin-bottom: 0;
    }
    
    .top-bar-item-spacing {
        margin-right: 1rem;
    }
    
    .social-icon-spacing {
        margin-left: 0.75rem;
    }
    
    .hero-section {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
    
    .icon-text h4 {
        font-size: 1.2rem;
    }
    
    .icon-text p {
        font-size: 0.95rem;
    }
    
    .who-title {
        font-size: 1.2rem;
    }
    
    .who-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Adjust dots pattern for tablets */
    .hero-section::before,
    .content-icons-section::before,
    .gradient-wrapper::before {
        background-size: 24px 24px;
        opacity: 0.35;
    }
    
    .footer-section::before {
        background-size: 20px 20px;
    }
    
    .footer-section {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-brand {
        font-size: 1.85rem;
    }
    
    .footer-description {
        font-size: 0.98rem;
    }
    
    .footer-social {
        gap: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .illustration-box {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    
    .illustration-icon {
        font-size: 5rem;
    }
    
    .features-section,
    .content-icons-section,
    .how-it-works-section,
    .who-section,
    .cta-section,
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .step-card,
    .who-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        font-weight: 800;
    }
    
    .feature-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .icons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .illustration-box-large {
        height: 300px;
        margin-top: 2rem;
    }
    
    .illustration-icon-large {
        font-size: 7rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    /* Adjust dots pattern for mobile */
    .hero-section::before,
    .content-icons-section::before,
    .gradient-wrapper::before {
        background-size: 20px 20px;
        opacity: 0.3;
    }
    
    .footer-section::before {
        background-size: 18px 18px;
        opacity: 0.4;
    }
    
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand {
        font-size: 1.75rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-social-icon {
        font-size: 1.3rem;
        width: 36px;
        height: 36px;
    }
    
    .footer-divider {
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
    
    .top-bar-item-spacing {
        margin-right: 0.75rem;
    }
    
    .social-icon {
        font-size: 1rem;
    }
    
    .social-icon-spacing {
        margin-left: 0.5rem;
    }
    
    .hero-section {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 2rem;
        font-weight: 800;
    }
    
    .feature-title {
        font-size: 1.15rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.15rem;
    }
    
    .step-text {
        font-size: 0.9rem;
    }
    
    .icon-text h4 {
        font-size: 1.1rem;
    }
    
    .icon-text p {
        font-size: 0.85rem;
    }
    
    .who-title {
        font-size: 1.1rem;
    }
    
    .who-text {
        font-size: 0.9rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta,
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons .btn-whatsapp {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .contact-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .icon-item-title {
        font-size: 1.1rem;
    }
    
    .icon-item-text {
        font-size: 0.9rem;
    }
    
    .how-it-works-title {
        font-size: 1.25rem;
    }
    
    .how-it-works-text {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .navbar-logo {
        height: 64px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .whatsapp-sticky-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   Smooth Scrolling
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   Sticky WhatsApp Button
   ============================================ */

.whatsapp-sticky-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    text-decoration: none;
}

.whatsapp-sticky-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.whatsapp-sticky-btn:active {
    transform: scale(0.95);
}

/* ============================================
   Utility Classes
   ============================================ */

.text-end {
    text-align: right !important;
}

.text-start {
    text-align: left !important;
}

.me-2 {
    margin-left: 0.5rem !important;
}

.me-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-right: 1.5rem !important;
}

.ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

