/********** LUCKY DYERS - Clean Professional Design **********/
/********** White BG | Red Primary | Black Accent **********/
/********** NO BLUE - Only Red (#E31837) and Black (#1A1A1A) **********/

/* CRITICAL: Override Bootstrap's blue primary color */
:root {
    /* Override ALL Bootstrap blue variables */
    --bs-blue: #E31837 !important;
    --bs-primary: #E31837 !important;
    --bs-primary-rgb: 227, 24, 55 !important;
    --bs-link-color: #E31837 !important;
    --bs-link-hover-color: #C41530 !important;
    --bs-secondary: #1A1A1A !important;
    --bs-secondary-rgb: 26, 26, 26 !important;
    
    /* Primary Colors - ONLY RED AND BLACK */
    --red: #E31837;
    --red-dark: #C41530;
    --red-light: #FF3D5A;
    --black: #1A1A1A;
    --black-light: #333333;
    --white: #FFFFFF;
    
    /* Neutral Grays */
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-red: 0 4px 16px rgba(227,24,55,0.3);
    
    /* Other */
    --radius: 8px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; color: var(--red); font-weight: 600; }

p { color: var(--gray-600); margin-bottom: 1rem; }
.lead { font-size: 1.125rem; color: var(--gray-600); }
.text-primary { color: var(--red) !important; }
.text-muted { color: var(--gray-500) !important; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white) !important;
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: var(--white) !important;
}

.btn-secondary {
    background: var(--black);
    border-color: var(--black);
    color: var(--white) !important;
}
.btn-secondary:hover {
    background: var(--black-light);
    border-color: var(--black-light);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--red);
    color: var(--red) !important;
}
.btn-outline-primary:hover {
    background: var(--red);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border-color: var(--black);
    color: var(--black) !important;
}
.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white) !important;
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--red) !important;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    border-color: var(--white);
    color: var(--red) !important;
}
.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    color: var(--red) !important;
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
    background: var(--white);
}
.section-gray {
    background: var(--gray-50);
}
.section-red {
    background: var(--red);
}
.section-black {
    background: var(--black);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h6 { margin-bottom: 10px; }
.section-title h2 { margin-bottom: 15px; }
.section-title p { max-width: 600px; margin: 0 auto; }

/* ========== TOPBAR ========== */
.top-bar {
    background: var(--red);
    padding: 10px 0;
}
.top-bar a, .top-bar span, .top-bar i {
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 500;
}
.top-bar a:hover { opacity: 0.85; }
.top-bar .social-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-left: 6px;
    transition: var(--transition);
}
.top-bar .social-link:hover {
    background: var(--white);
}
.top-bar .social-link:hover i {
    color: var(--red) !important;
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand {
    padding: 12px 0;
}
.navbar-brand .logo-img {
    height: 50px;
    width: auto;
}
.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 20px 16px !important;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--red) !important;
}
.dropdown-menu {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    min-width: 220px;
}
.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--gray-50);
    color: var(--red);
}
.dropdown-item i {
    width: 20px;
    color: var(--red);
    margin-right: 8px;
}
.dropdown-divider { border-color: var(--gray-200); }

.navbar-toggler {
    border: none;
    padding: 8px;
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991px) {
    .navbar-nav .nav-link { padding: 12px 0 !important; }
    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-top: 1px solid var(--gray-200);
    }
    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }
}

/* ========== HERO CAROUSEL ========== */
.header-carousel .owl-carousel-item {
    position: relative;
    min-height: 85vh;
}
.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}
.header-carousel .owl-carousel-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.header-carousel .container { position: relative; z-index: 2; }
.header-carousel h5 {
    color: var(--white);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}
.header-carousel h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.header-carousel h1 span { color: var(--red); }
.header-carousel p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}
.header-carousel .owl-nav {
    position: absolute;
    top: 50%; right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header-carousel .owl-nav button {
    width: 50px; height: 50px;
    background: var(--red) !important;
    color: var(--white) !important;
    border-radius: var(--radius) !important;
    font-size: 18px;
    transition: var(--transition);
}
.header-carousel .owl-nav button:hover {
    background: var(--white) !important;
    color: var(--red) !important;
}

@media (max-width: 768px) {
    .header-carousel h1 { font-size: 2.5rem; }
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img { min-height: 70vh; height: 70vh; }
    .header-carousel .owl-nav { right: 15px; }
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.service-card .icon {
    width: 70px; height: 70px;
    background: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.service-card .icon i {
    font-size: 28px;
    color: var(--white);
}
.service-card:hover .icon {
    background: var(--black);
}
.service-card h4 { margin-bottom: 12px; }
.service-card p { font-size: 14px; margin-bottom: 20px; }

/* ========== FEATURE BOX ========== */
.feature-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-box:hover { border-color: var(--red); }
.feature-box .icon {
    width: 50px; height: 50px;
    min-width: 50px;
    background: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.feature-box .icon i { font-size: 20px; color: var(--white); }
.feature-box h5 { margin-bottom: 5px; font-size: 15px; }
.feature-box p { margin-bottom: 0; font-size: 13px; color: var(--gray-600); }

/* ========== PROCESS STEPS ========== */
.process-step { text-align: center; }
.process-step .step-number {
    width: 70px; height: 70px;
    background: var(--white);
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    transition: var(--transition);
}
.process-step:hover .step-number {
    background: var(--red);
    color: var(--white);
}
.process-step h5 { margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray-600); }

/* ========== STAT BOX ========== */
.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}
.stat-box h2 { font-size: 2.5rem; color: var(--red); margin-bottom: 5px; }
.stat-box p { color: var(--gray-600); margin-bottom: 0; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* ========== TESTIMONIAL ========== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--red); }
.testimonial-card .stars { color: var(--red); margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: var(--gray-700); margin-bottom: 15px; }
.testimonial-card .author { font-weight: 600; color: var(--black); }

/* ========== CTA RED ========== */
.cta-red {
    background: var(--red);
    padding: 60px 0;
}
.cta-red h2, .cta-red p { color: var(--white); }
.cta-red p { opacity: 0.9; }

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding-top: 60px;
}
.footer h5 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}
.footer p, .footer a { color: var(--gray-400) !important; font-size: 14px; }
.footer a:hover { color: var(--red) !important; }
.footer .footer-links li { margin-bottom: 10px; }
.footer .footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--red);
}
.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}
.footer .contact-info i {
    color: var(--red);
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
}
.footer .social-links a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    margin-right: 8px;
    transition: var(--transition);
}
.footer .social-links a:hover { background: var(--red); }
.footer .social-links i { color: var(--white) !important; font-size: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom p { margin-bottom: 0; font-size: 13px; }

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--red);
    padding: 80px 0 50px;
}
.page-header h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 10px; }
.page-header .breadcrumb { background: transparent; padding: 0; margin: 0; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.8); font-size: 14px; }
.page-header .breadcrumb-item.active { color: var(--white); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }

/* ========== FORMS ========== */
.form-control, .form-select {
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227,24,55,0.15);
    outline: none;
}
.form-control::placeholder { color: var(--gray-500); }

/* ========== ACCORDION ========== */
.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 10px;
}
.accordion-button {
    background: var(--white);
    font-weight: 600;
    color: var(--black);
    padding: 16px 20px;
    border-radius: var(--radius) !important;
}
.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--red);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { padding: 0 20px 20px; color: var(--gray-600); }

/* ========== FIXED BUTTONS ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { 
    background: var(--black); 
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.back-to-top i { color: var(--white) !important; font-size: 18px; }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
}
.whatsapp-float i {
    color: var(--white) !important;
    font-size: 30px;
}

/* Utilities */
.bg-gray { background: var(--gray-50) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }

/* Spinner */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
    z-index: 99999;
    background: var(--white);
}
#spinner.show { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .section { padding: 60px 0; }
    .section-title { margin-bottom: 40px; }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .btn { padding: 12px 24px; }
}

::selection { background: var(--red); color: var(--white); }

/* ========== BOOTSTRAP OVERRIDES - NO BLUE ========== */
/* Override all Bootstrap blue colors */
.text-primary { color: var(--red) !important; }
.bg-primary { background-color: var(--red) !important; }
.border-primary { border-color: var(--red) !important; }
.btn-primary, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
}
.btn-primary:hover {
    background-color: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
}
.btn-outline-primary, .btn-outline-primary:focus {
    color: var(--red) !important;
    border-color: var(--red) !important;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
}

/* Links */
a { color: var(--red); }
a:hover, a:focus { color: var(--red-dark); }

/* Focus states - remove blue outline */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(227,24,55,0.15) !important;
}
.btn:focus, .btn:active:focus {
    box-shadow: 0 0 0 3px rgba(227,24,55,0.25) !important;
}

/* Dropdown */
.dropdown-item:focus, .dropdown-item:active {
    background-color: var(--red) !important;
    color: var(--white) !important;
}

/* Nav links */
.nav-link:focus { color: var(--red) !important; }

/* Accordion */
.accordion-button:focus { 
    box-shadow: none !important; 
    border-color: var(--gray-200) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--red) !important;
    background-color: var(--gray-50) !important;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E31837'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Pagination */
.page-link { color: var(--red); }
.page-link:hover { color: var(--red-dark); background-color: var(--gray-100); }
.page-item.active .page-link {
    background-color: var(--red);
    border-color: var(--red);
}

/* List group */
.list-group-item.active {
    background-color: var(--red);
    border-color: var(--red);
}

/* Progress bar */
.progress-bar { background-color: var(--red); }

/* Badge */
.badge.bg-primary { background-color: var(--red) !important; }

/* Alert */
.alert-primary {
    color: var(--red-dark);
    background-color: rgba(227,24,55,0.1);
    border-color: rgba(227,24,55,0.2);
}

/* Breadcrumb */
.breadcrumb-item a { color: var(--red); }
.breadcrumb-item a:hover { color: var(--red-dark); }

/* Card */
.card { border-color: var(--gray-200); }

/* Table */
.table-primary { background-color: rgba(227,24,55,0.1) !important; }

/* Check and radio */
.form-check-input:checked {
    background-color: var(--red);
    border-color: var(--red);
}
.form-check-input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227,24,55,0.15);
}

/* Range */
.form-range::-webkit-slider-thumb { background: var(--red); }
.form-range::-moz-range-thumb { background: var(--red); }

/* Switch */
.form-switch .form-check-input:checked { background-color: var(--red); }

/* Carousel indicators */
.carousel-indicators .active { background-color: var(--red); }

/* Close button focus */
.btn-close:focus { box-shadow: 0 0 0 3px rgba(227,24,55,0.25); }

/* ========== ADDITIONAL POLISH ========== */

/* Smooth animations */
.service-card, .feature-box, .stat-box, .testimonial-card, .process-step .step-number {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Better hover effects */
.service-card:hover {
    box-shadow: 0 10px 40px rgba(227,24,55,0.15);
}

/* Improved text contrast */
.lead { color: var(--gray-700); }

/* Better spacing for mobile */
@media (max-width: 767px) {
    .section { padding: 50px 0; }
    .section-title { margin-bottom: 30px; }
    .cta-red { padding: 40px 0; }
    .page-header { padding: 60px 0 40px; }
    .footer { padding-top: 40px; }
}

/* Divider line for visual separation */
.section-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0;
}

/* Red underline accent for headings */
.accent-underline {
    position: relative;
    display: inline-block;
}
.accent-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--red);
}

/* Icon styling consistency */
.icon i { line-height: 1; }

/* Loading state for buttons */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Better image handling */
img { max-width: 100%; height: auto; }

/* Scroll margin for anchor links */
[id] { scroll-margin-top: 100px; }

/* Print styles */
@media print {
    .top-bar, .navbar, .footer, .back-to-top, .cta-red, .whatsapp-float { display: none !important; }
    .section { padding: 20px 0; }
}


/* ========== HOMEPAGE - CLEAN PROFESSIONAL DESIGN ========== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.5) 100%);
    z-index: 2;
}
.hero-section .container {
    position: relative;
    z-index: 3;
}
.hero-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 25px;
}
.hero-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 550px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}
.hero-feature i {
    color: var(--red);
    font-size: 18px;
}

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-section { min-height: auto; padding: 120px 0 80px; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2rem; }
    .hero-features { gap: 20px; }
}


/* Service Boxes */
.service-box {
    display: block;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 35px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}
.service-box:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-box.featured {
    border-color: var(--red);
    background: linear-gradient(to bottom, rgba(227,24,55,0.03) 0%, white 100%);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.service-icon i {
    font-size: 28px;
    color: var(--red);
}
.service-box:hover .service-icon {
    background: var(--red);
}
.service-box:hover .service-icon i {
    color: white;
}
.service-box h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--black);
}
.service-box p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 20px;
}
.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-link i {
    transition: transform 0.3s ease;
}
.service-box:hover .service-link i {
    transform: translateX(5px);
}


/* About Section */
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 12px;
    width: 100%;
}
.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--red);
    color: white;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(227,24,55,0.3);
}
.about-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.about-badge .text {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.9;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 5px;
}

@media (max-width: 767px) {
    .about-badge { right: 15px; bottom: -15px; padding: 20px 25px; }
    .about-badge .number { font-size: 2rem; }
    .about-stats { gap: 25px; flex-wrap: wrap; }
}


/* Process Timeline */
.process-timeline {
    position: relative;
}
.process-item {
    text-align: center;
    padding: 30px 20px;
}
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.process-item:hover .process-number {
    background: var(--red);
    color: white;
    transform: scale(1.1);
}
.process-item h5 {
    margin-bottom: 10px;
}
.process-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}


/* CTA Banner */
.cta-banner {
    background: var(--red);
    padding: 50px 0;
}
.cta-banner h3 {
    color: white;
    margin-bottom: 10px;
}
.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}


/* Price Cards */
.price-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.price-card.popular {
    border-color: var(--red);
    box-shadow: 0 10px 40px rgba(227,24,55,0.15);
}
.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.price-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 25px;
}
.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}
.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: 14px;
}
.price-card ul li:last-child {
    border: none;
}


/* Why List */
.why-list {
    margin-top: 30px;
}
.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.why-icon {
    width: 55px;
    height: 55px;
    background: rgba(227,24,55,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-icon i {
    font-size: 22px;
    color: var(--red);
}
.why-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}
.why-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}
.why-image img {
    border-radius: 12px;
    width: 100%;
}


/* Testimonial Box */
.testimonial-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}
.testimonial-box .rating {
    margin-bottom: 15px;
}
.testimonial-box .rating i {
    color: #FFB800;
    font-size: 14px;
}
.testimonial-box p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author strong {
    display: block;
    color: var(--black);
    font-size: 15px;
}
.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}


/* Area Tags */
.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}
.area-tag {
    background: var(--gray-100);
    color: var(--black);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.area-tag:hover {
    background: var(--red);
    color: white;
}


/* Contact Box */
.contact-box {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 35px;
}
.contact-box h4 {
    margin-bottom: 25px;
}
.contact-box .form-control,
.contact-box .form-select {
    margin-bottom: 15px;
}


/* Final CTA */
.final-cta {
    background: var(--black);
    padding: 80px 0;
}
.final-cta h2 {
    color: white;
    margin-bottom: 15px;
}
.final-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* BG Light utility */
.bg-light {
    background: var(--gray-50) !important;
}


/* ========== SERVICE CARDS WITH IMAGES ========== */
.service-card-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}
.service-card-img:hover img {
    transform: scale(1.05);
}
.service-card-img .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}
.service-card-img h4 {
    color: white;
    margin-bottom: 10px;
}
.service-card-img p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 15px;
}
.service-card-img .badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.service-card-img.featured {
    border: 3px solid var(--red);
}


/* ========== IMAGE STRIP ========== */
.image-strip {
    padding: 0;
}
.strip-item {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.strip-item:hover img {
    transform: scale(1.1);
}
.strip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.strip-item:hover .strip-overlay {
    opacity: 1;
}
.strip-overlay span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}


/* ========== PROCESS CARDS WITH IMAGES ========== */
.process-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    background: var(--gray-100);
}
.process-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.process-card .process-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}
.process-card .process-number {
    display: inline-block;
    background: var(--red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}
.process-card h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}
.process-card p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin: 0;
}


/* ========== WHY IMAGES ========== */
.why-images img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-images .col-6:first-child img {
    margin-bottom: 20px;
}
.why-images .col-6:last-child {
    padding-top: 40px;
}


/* ========== TESTIMONIAL WITH IMAGES ========== */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    color: var(--black);
    font-size: 15px;
}
.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}
