@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

/* --- Global Theme Overrides (No more blue) --- */
.bg-primary { background-color: var(--prak-red) !important; }
.text-primary { color: var(--prak-red) !important; }
.btn-primary { 
    background-color: var(--prak-red) !important; 
    border-color: var(--prak-red) !important; 
    color: #fff !important;
}
.btn-primary:hover {
    background-color: var(--prak-red-dark) !important;
    border-color: var(--prak-red-dark) !important;
    color: #fff !important;
}

:root {
    /* Medinova-inspired Color Palette */
    --prak-red: #D11F26;
    --prak-red-dark: #A5191E;
    --prak-dark-red: #4D0B0D; /* Replaced blue with a professional deep red */
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --dark-text: #1D2124;
    --muted-text: #6C757D;
    --border-color: #DEE2E6;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1140px;
    
    /* Effects */
    --shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --shadow-md: 0 .5rem 1rem rgba(0,0,0,.15);
    --transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, var(--prak-red) 0%, #8b0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 6vw, 4rem);
}

/* --- Layout Utilities (Bootstrap-lite) --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.g-4 {
    margin: -1.5rem;
}

.g-4 > [class*="col-"] {
    padding: 1.5rem;
}

.g-5, .gx-5 {
    margin: -2rem;
}

.g-5 > [class*="col-"], .gx-5 > [class*="col-"] {
    padding: 2rem;
}

.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (max-width: 991px) {
    .col-md-6, .col-lg-6, .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
    .col-md-3 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .pe-lg-4 { padding-right: 1.5rem !important; }
    .ps-lg-2 { padding-left: 0.5rem !important; }
}

@media (max-width: 767px) {
    .col-md-3 { flex: 0 0 100%; max-width: 100%; }
}

.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-lg-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-white { color: #fff !important; }
.text-light { color: rgba(255,255,255,0.7) !important; }
.text-dark { color: #212529 !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.bg-white { background-color: #fff !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.top-0 { top: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.start-0 { left: 0 !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.overflow-hidden { overflow: hidden !important; }
.d-none { display: none !important; }

.bg-white { background-color: #fff !important; }
.display-1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; line-height: 1.1; }
.fs-5 { font-size: clamp(1rem, 4vw, 1.25rem); }
.fw-normal { font-weight: 400; }
.fw-bold { font-weight: 700 !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.h-100 { height: 100% !important; }

/* --- Header & Navigation --- */
.top-bar {
    background: var(--prak-red);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark-text);
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--prak-red);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--prak-red);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--prak-red-dark);
}

/* --- Mobile Menu Toggle --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--prak-red);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Banner (Full Width Slider) --- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: var(--dark-accent);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease-in-out-circ), transform 2s var(--ease-out-expo);
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Overlay */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateX(0);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    text-align: left;
    color: var(--white);
    padding-left: 5%;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--white);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
}

.text-gradient {
    background: none;
    -webkit-text-fill-color: initial;
    color: inherit;
}

.hero-tag {
    display: inline-block;
    color: var(--prak-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    background: rgba(209, 31, 38, 0.05);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(209, 31, 38, 0.1);
}

.slider-dots-container {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 20;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--prak-red);
    width: 30px;
    border-radius: 10px;
}
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 25;
}

.slider-arrows button {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrows button:hover {
    background: var(--prak-red);
    border-color: var(--prak-red);
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .slider-arrows {
        display: none;
    }
}

/* Base Hero for other pages */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: var(--dark-bg);
    overflow: hidden;
}


/* Obsolete Styles Removed */


/* Obsolete Slider Styles (Moved to Hero Banner) */

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
}
/* --- Buttons --- */
.btn-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    position: relative;
    padding: 20px 42px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.btn-primary {
    background: var(--prak-red);
    color: var(--pure-white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--dark-accent);
}

.btn-outline:hover {
    background: var(--dark-accent);
    color: var(--pure-white);
    transform: translateY(-5px);
}

/* --- Color Themes --- */
.bg-red {
    background: var(--prak-red);
    color: var(--pure-white);
}

.bg-red h1, .bg-red h2, .bg-red h3, .bg-red h4, .bg-red .white-text {
    color: var(--pure-white);
}

.bg-red p, .bg-red .muted-text-white {
    color: rgba(255, 255, 255, 0.85);
}

.bg-red .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--pure-white);
}

.bg-red .btn-outline:hover {
    background: var(--pure-white);
    color: var(--prak-red);
    border-color: var(--pure-white);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* --- Featured Sections --- */
section {
    padding: 10rem 0;
}

/* --- Medinova-Style Section Header --- */
.section-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-head h6 {
    color: var(--prak-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
}

/* --- Cards & Features --- */
.nav-cta {
    background: var(--prak-red);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--prak-red);
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: transparent;
    color: var(--prak-red);
}

.service-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0,0,0,.08);
    transition: .5s;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.service-card:hover {
    background: var(--prak-red) !important;
    transform: translateY(-10px);
}

.service-card:hover h1,
.service-card:hover h2,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover span,
.service-card:hover a,
.service-card:hover .stat-number {
    color: #fff !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px auto;
    transition: .5s;
    color: var(--prak-red);
}

.service-card:hover .service-icon {
    background: #fff;
    color: var(--prak-red);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-card p {
    color: var(--muted-text);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 700;
    color: var(--prak-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.service-card:hover .service-link {
    color: #fff;
}

/* --- Components --- */
.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--prak-red);
    font-family: var(--font-heading);
}

/* --- CTA Bar Section --- */
.cta-bar-wrap {
    background: var(--prak-dark-red);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-bar-content {
    flex: 1;
}

.cta-bar-content h3 {
    color: var(--white) !important;
    margin-bottom: 10px;
    font-size: 2rem;
}

.cta-bar-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* --- New Premium Black Footer --- */
.footer-main {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 80px 0 0;
    font-family: var(--font-body);
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 40px;
}

.footer-newsletter-text {
    flex: 1;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 450px;
}

.footer-newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    padding: 15px 25px;
    border-radius: 8px 0 0 8px;
    color: #fff;
    outline: none;
}

.footer-newsletter-form .btn-subscribe {
    background: var(--prak-red);
    color: #fff;
    border: none;
    padding: 0 35px;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
    white-space: nowrap;
}

.footer-newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 5px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.footer-newsletter-form .btn-subscribe {
    background: var(--prak-red);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-form .btn-subscribe:hover {
    background: var(--prak-red-dark);
    transform: translateY(-2px);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-brand h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff !important;
}

.footer-brand-col p {
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social-links a:hover {
    color: var(--prak-red) !important;
    transform: translateY(-3px);
}

.footer-social-links a:hover {
    background: var(--prak-red);
    transform: translateY(-3px);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 25px;
    color: #fff !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-nav-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 40px;
}

@media (max-width: 991px) {
    .footer-nav-group {
        justify-content: flex-start;
        gap: 30px;
    }
}

@media (min-width: 1400px) {
    .footer-nav-group {
        gap: 250px; /* Approaching the 300px request while being safe */
    }
}

@media (min-width: 1700px) {
    .footer-nav-group {
        gap: 300px;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-links li a i {
    width: 25px;
    color: var(--prak-red);
    font-size: 0.9rem;
}

.footer-links li a:hover {
    color: #fff !important;
    transform: translateX(8px);
}

.footer-bottom-bar {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        text-align: center !important;
    }
    .footer-brand-col {
        text-align: left;
        margin-bottom: 20px;
    }
}

.footer-bottom-bar p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .footer-newsletter-form {
        max-width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    .footer-newsletter-form input,
    .footer-newsletter-form .btn-subscribe {
        width: 100%;
        border-radius: 5px !important;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .nav-links { gap: 1.5rem; }
}

@media (max-width: 768px) {
    :root {
        --h1: clamp(2.5rem, 10vw, 3.5rem);
    }
    .nav-links { 
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex; /* Override display:none if any */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-extra {
        display: none; /* Hide CTA button on small mobile header, maybe put it inside menu */
    }
    
    .nav-links .nav-cta-mobile {
        display: block;
        margin-top: 20px;
        background: var(--prak-red);
        color: var(--white) !important;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 700;
    }

    .hero-banner { 
        height: auto;
        min-height: 600px;
        padding: 120px 0 80px;
    }
    .hero-slider::after {
        background: rgba(0, 0, 0, 0.6); /* Darker overlay for mobile readability */
    }
    .hero-content { 
        text-align: left;
        margin: 0; 
        padding-left: 0;
        width: 100%;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        margin: 0;
    }
    .slider-dots-container {
        left: 20px;
        bottom: 20px;
    }
    .slider-dots {
        justify-content: flex-start;
    }
    
    section {
        padding: 5rem 0;
    }
    .section-head {
        margin-bottom: 3rem;
    }
    .top-bar {
        display: none;
    }
    .cta-bar-wrap {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .cta-bar-wrap .btn {
        width: 100%;
    }

    /* Why Choose Us Mobile Adjustment */
    .why-choose-grid {
        gap: 40px;
    }
    
    #why-choose-us img {
        height: 350px !important;
    }
}

/* --- Desktop Why Choose Us Layout --- */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* --- Category Card Grid --- */
.category-card {
    border-radius: 12px;
    display: block;
    position: relative;
    overflow: hidden;
    height: 320px;
    background-color: #2a2a2a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.category-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.8rem;
    z-index: 2;
}

.badge-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

/* Category Slider Customization */
.category-slider {
    padding-bottom: 50px !important;
}

.category-slider .swiper-pagination-bullet {
    background: var(--prak-red);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-slider .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
}

/* --- Custom Form Styles --- */
.custom-input {
    height: 55px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 15px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

tarea.custom-input {
    height: auto;
}

.custom-input:focus {
    border-color: var(--prak-red);
    box-shadow: 0 0 0 4px rgba(209, 31, 38, 0.1);
    background-color: #fff;
}

.custom-checkbox-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.custom-checkbox-wrap:hover {
    border-color: var(--prak-red);
}

.form-check-input {
    margin-right: 10px;
    accent-color: var(--prak-red);
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-text);
}

.btn-apply {
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(209, 31, 38, 0.2);
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
