/* ============================================
   GLOBAL STYLES - NEW COLORS
   ============================================ */
:root {
    --primary-color: #1C89AD;      /* Teal Blue */
    --secondary-color: #FF9E45;    /* Warm Orange */
    --accent-color: #E8F4F8;       /* Light Teal */
    --text-dark: #000000;          /* Black */
    --text-light: #4A4A4A;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.highlight {
    color: var(--secondary-color);
}

.section-padding {
    padding: 80px 190px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 16px;
}

.bg-light {
    background: #EBEBEB !important;
}

/* ============================================
   HEADER
   ============================================ */
.top-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-header .badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.top-header a {
    color: var(--white);
    text-decoration: none;
}

.top-header a:hover {
    color: var(--secondary-color);
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
}

.main-header .navbar-brand img {
    height: 50px;
}

.main-header .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px !important;
    transition: var(--transition);
}

.main-header .nav-link:hover {
    color: var(--secondary-color);
}

.main-header .btn-cta {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.main-header .btn-cta:hover {
    background: #e8892e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 158, 69, 0.4);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 12px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 24px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #1c89ad 0%, #1c89ad 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28, 137, 173, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 158, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 0.975rem;
    color: var(--white);
    max-width: 550px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 12px;
    margin-top: 2rem;
    font-size: 0.975rem;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: #000;
    border: none;
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background: #FF9E45;
    transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: #000000;
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #fff;
}

.trust-badges i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.hero-image img {
    width: 40rem !important;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PATCH CARDS
   ============================================ */
.patch-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    transition: var(--transition);
    height: 100%;
}

.patch-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.patch-card-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    /* margin: 0px 47px auto 47px; */
    height: fit-content;
}

.patch-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.patch-card:hover .patch-card-image img {
    transform: scale(1.05);
}

.patch-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.patch-card-body {
    padding: 20px;
}

.patch-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.patch-card-body p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.patch-card-body .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.patch-card-body .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 137, 173, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
}

.product-overlay .btn:hover {
    background: #e8892e;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.product-category {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-info .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.product-info .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brand-logo {
    background: #D9D9D91A;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.brand-logo img {
    max-height: 60px;
    max-width: 100%;
    /* opacity: 0.6; */
    transition: var(--transition);
}

.brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================
   STEPS
   ============================================ */
.step-card {
    text-align: center;
    padding: 35px 20px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 15px 0;
}

.step-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-rating {
    margin-bottom: 12px;
}

.review-rating i {
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-info h6 {
    font-size: 0.95rem;
    margin: 0;
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-source i {
    color: #28a745;
}

/* ============================================
   FAQ
   ============================================ */
.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px !important;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
}

.accordion-button {
    font-weight: 600;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: #FFFFFF;
    color: #000000;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    color: var(--secondary-color);
}

.accordion-body {
    padding: 20px 24px;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid #000;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #EBEBEB;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000;
}

.footer ul {
    list-style: none;
    padding: 0;
    color: #000;
}

.footer ul li {
    margin-bottom: 10px;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    /* padding-top: 20px;
    margin-top: 40px; */
    text-align: start;
    font-size: 0.9rem;
    color: #000;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1C89AD;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer .form-control {
    background: rgb(0 0 0 / 6%);
    border: 1px solid rgba(255,255,255,0.2);
    color: #000;
    border-radius: 30px;
    padding: 10px 20px;
}

.footer .form-control::placeholder {
    color: #000;
}

.footer .btn-secondary {
    background: var(--secondary-color);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    color: var(--white);
}

.footer .btn-secondary:hover {
    background: #e8892e;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
        text-align: center;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        margin: 0 auto 25px;
    }
    .hero-buttons .btn {
        display: block;
        margin: 0 0 12px;
        width: 100%;
    }
    .trust-badges {
        justify-content: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .top-header .text-end {
        text-align: center !important;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .top-header span {
        font-size: 0.7rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .patch-card-image {
        height: 170px;
    }
    .product-image {
        height: 170px;
    }
        .trust-badges {
        justify-content: center;
        gap: 10px;
        font-size: 12px;
        margin-bottom: 30px;
    }
    .hero-image img {
        width: 22rem !important;
    animation: float 6s ease-in-out infinite;
    }
        .hero-section .min-vh-75 {
            min-height: auto;
        padding: 3rem 0 1rem;
        }
        .hero-section{
            padding: 40px 0 0px;
        }
}
/* ============================================
   SOCIAL FEED / INSTAGRAM STYLE SECTION
   ============================================ */
.social-feed-section {
    background: #fafafa;
    padding: 60px 0;
}

/* Profile Header */
.social-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 30px;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 20px;
}

.social-profile-header .profile-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-profile-header .profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #DD3071;
    flex-shrink: 0;
    background: #000000;
}

.social-profile-header .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-profile-header .profile-info .profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.social-profile-header .profile-info .profile-username {
    color: #8e8e8e;
    font-size: 0.95rem;
    font-weight: 400;
}

.social-profile-header .social-stats {
    display: flex;
    gap: 25px;
    margin-top: 5px;
    flex-wrap: wrap;
}

.social-profile-header .social-stats .stat-item {
    font-size: 0.9rem;
    color: #8e8e8e;
}

.social-profile-header .social-stats .stat-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Follow Button */
.social-profile-header .btn-follow {
    background: #0095f6;
    color: #fff;
    border: none;
    padding: 8px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.social-profile-header .btn-follow:hover {
    background: #0077cc;
    transform: scale(1.02);
}

.social-profile-header .btn-follow:active {
    transform: scale(0.98);
}

/* Gallery Grid */
.social-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 30px;
}

.social-gallery-grid .gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.social-gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

.social-gallery-grid .gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}

.social-gallery-grid .gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* Google Badge */
.google-badge {
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.google-badge a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4285F4;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 12px;
    border-radius: 4px;
    background: #f1f3f4;
}

.google-badge a:hover {
    background: #e8eaed;
    transform: translateY(-1px);
}

.google-badge a img {
    height: 18px;
    width: auto;
}

/* ============================================
   SOCIAL FEED - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .social-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .social-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .social-profile-header .profile-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-profile-header .social-stats {
        justify-content: center;
    }
    
    .social-profile-header .btn-follow {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .social-feed-section {
        padding: 40px 0;
    }
    
    .social-profile-header .profile-avatar {
        width: 65px;
        height: 65px;
    }
    
    .social-profile-header .profile-info .profile-name {
        font-size: 1.1rem;
    }
    
    .social-profile-header .social-stats {
        gap: 15px;
    }
    
    .social-profile-header .social-stats .stat-item {
        font-size: 0.8rem;
    }
    
    .social-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .google-badge {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-profile-header .social-stats {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    .social-profile-header .btn-follow {
        max-width: 100%;
        width: 100%;
    }
    
    .social-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }
    
    .social-profile-header .profile-avatar {
        width: 55px;
        height: 55px;
    }
    
    .social-profile-header .profile-info .profile-name {
        font-size: 1rem;
    }
}

/* ============================================
   HOW TO DESIGN - MODERN STEPS (UPDATED)
   ============================================ */
.how-it-works {
    background: #f8f9fa;
}

.how-it-works .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.how-it-works .section-title .highlight {
    color: var(--secondary-color);
}

/* Modern Step Card */
.step-card-modern {
    position: relative;
    text-align: center;
    padding: 30px 20px 25px;
    background: transparent;
    border-radius: 0;
    transition: var(--transition);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Large Faded Background Number */
.step-card-modern .step-number-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Icon Wrapper - Blue Circular Container */
.step-card-modern .step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.step-card-modern:hover .step-icon-wrapper {
    transform: scale(1.05);
    background: var(--secondary-color);
}

.step-card-modern .step-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

/* Step Title */
.step-card-modern .step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

/* Step Description */
.step-card-modern .step-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

/* Hover Effect */
.step-card-modern:hover .step-number-large {
    color: rgba(0, 0, 0, 0.08);
}

/* ============================================
   HOW TO DESIGN - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .step-card-modern {
        min-height: 240px;
        padding: 25px 15px;
    }
    
    .step-card-modern .step-number-large {
        font-size: 6rem;
    }
    
    .step-card-modern .step-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .step-card-modern .step-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .step-card-modern .step-title {
        font-size: 1rem;
    }
    
    .step-card-modern .step-description {
        font-size: 0.85rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }
    
    .how-it-works .section-title {
        font-size: 2rem;
    }
    
    .step-card-modern {
        min-height: 220px;
        padding: 20px 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .step-card-modern:last-child {
        border-bottom: none;
    }
    
    .step-card-modern .step-number-large {
        font-size: 5rem;
    }
    
    .step-card-modern .step-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .step-card-modern .step-icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .step-card-modern .step-title {
        font-size: 0.95rem;
    }
    
    .step-card-modern .step-description {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    /* 2-column layout on tablet */
    .how-it-works .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 40px 0;
    }
    
    .how-it-works .section-title {
        font-size: 1.6rem;
    }
    
    .step-card-modern {
        min-height: 200px;
        padding: 15px;
    }
    
    .step-card-modern .step-number-large {
        font-size: 4rem;
    }
    
    .step-card-modern .step-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .step-card-modern .step-icon-wrapper i {
        font-size: 1.1rem;
    }
    
    .step-card-modern .step-title {
        font-size: 0.9rem;
    }
    
    .step-card-modern .step-description {
        font-size: 0.8rem;
    }
    
    /* Stack on mobile */
    .how-it-works .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer{
        padding: 60px 10px 30px;
    }
}

/* ============================================
   DROPZONE & UPLOAD STYLES - FORCED OVERRIDE
   ============================================ */
.dropzone {
    position: relative !important;
    overflow: hidden !important;
    border: 2px dashed #1C89AD !important;
    border-radius: 12px !important;
    padding: 40px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: #fffaf5 !important;
    display: block !important;
    visibility: visible !important;
    z-index: 1 !important;
    min-height: 150px !important;
}

.dropzone:hover {
    background: rgba(28, 137, 173, 0.05) !important;
    border-color: #FF9E45 !important;
}

/* CRITICAL FIX: Force file input to be clickable */
.dropzone input[type="file"] {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.dropzone .dropzone-icon {
    font-size: 3rem !important;
    color: #1C89AD !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.dropzone .dropzone-text {
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 5px !important;
}

.dropzone .dropzone-hint {
    color: #6c757d !important;
    font-size: 0.85rem !important;
}

.dropzone.dz-drag-hover {
    border-color: #FF9E45 !important;
    background: rgba(255, 158, 69, 0.1) !important;
}

.dropzone.dz-success {
    border-color: #28a745 !important;
    background: rgba(40, 167, 69, 0.05) !important;
}

.dropzone.dz-error {
    border-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.05) !important;
}

/* Upload Status Messages */
#uploadStatus {
    margin-top: 10px !important;
    display: none !important;
}
#uploadStatus .alert {
    margin-bottom: 0 !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
}
