:root{
  --primary-color: #FF6B35;    /* HeroRumoh Orange */
  --secondary-color: #000000;  /* Black */
  --accent-color: #FF6B35;     /* Orange for buttons */
  --text-dark: #000000;        /* Black text */
  --text-light: #666666;       /* Gray text */
  --bg-light: #FFFFFF;         /* White background */
  --muted:#f6f7fb; --ink:#222; --radius:14px; --max:1120px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{margin:0;font-family:'Poppins',system-ui,Segoe UI,Arial,sans-serif;color:var(--text-dark);background:#fff;line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
.container{width:min(var(--max),92%);margin:auto}
.grid-2{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem}
@media (max-width:980px){.grid-2{grid-template-columns:1fr}}
.flex{display:flex;gap:1rem}.between{justify-content:space-between}.center{align-items:center}

/* Header Styles */
.header-v5 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: transparent !important;
    transition: background 0.25s ease, box-shadow 0.25s ease !important;
}

.header-v5.scrolled {
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
}

.container-custom {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 64px !important;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    text-transform: uppercase !important;
}

.navbar-brand span:first-child {
    color: #ffffff !important;
    transition: color 0.25s ease !important;
}
.navbar-brand span:last-child {
    color: #FF6B35 !important;
}

.header-v5.scrolled .navbar-brand span:first-child {
    color: #111111 !important;
}

.main-nav ul {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2rem !important;
}

.main-nav a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

.header-v5.scrolled .main-nav a {
    color: #111111 !important;
}

.main-nav a:hover {
    color: #FF6B35 !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.header-v5.scrolled .mobile-toggle span {
    background: #111111;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        padding: 1rem 0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        color: #333 !important;
        font-weight: 500;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Buttons */
.btn{display:inline-block;padding:.9rem 1.1rem;border-radius:.8rem;border:1px solid #ddd;text-decoration:none;font-weight:700}
.btn-primary{background:var(--accent-color);border-color:var(--accent-color);color:white}
.btn-outline{background:#fff;color:#000}

.btn-custom {
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-custom:hover {
    background: #A0522D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://herorumoh.com/wp-content/uploads/2025/10/Gemini_Generated_Image_7ujod87ujod87ujo.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    padding-top: 120px;
    color: white;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-logo-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.brand-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.hero-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item {
    text-align: center;
}

.hero.compact{padding:48px 0}
.hero .cta{display:flex;gap:.8rem;margin-top:1rem}
.hero-media{border-radius:1rem;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.06)}

/* Sections */
.section{padding:64px 0}
.section.muted{background:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
@media (max-width:960px){.cards{grid-template-columns:1fr}}
.card{padding:1.2rem;border:1px solid #eee;border-radius:1rem;background:#fff}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding-left:1rem}
.steps li{background:#fff;border:1px solid #eee;border-radius:.9rem;padding:1rem}
@media (max-width:960px){.steps{grid-template-columns:1fr}}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.coverage-section {
    background: #F5F5F5;
    padding: 80px 0;
}

.coverage-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.coverage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Forms */
.form{display:grid;gap:1rem}
.form label{display:grid;gap:.4rem;font-weight:600}
.form input,.form select,.form textarea{padding:.9rem;border:1px solid #e5e7eb;border-radius:.7rem;font:inherit}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

/* Footer Styles - Force white text everywhere */
footer, footer.bg-dark, footer.text-white {
    background: #000000 !important;
    background-color: #000000 !important;
    color: #ffffff !important;
}

footer *,
footer p,
footer li,
footer span,
footer .text-muted,
footer .text-success {
    color: #ffffff !important;
}

footer h5, footer h6 {
    color: #ffffff !important;
}

footer a,
footer a.text-muted,
footer a.text-success {
    color: #ffffff !important;
    text-decoration: none;
}

footer a:hover {
    color: #FF6B35 !important;
}

footer .btn-primary {
    background-color: #FF6B35 !important;
    border-color: #FF6B35 !important;
    color: #ffffff !important;
}

footer .badge {
    background-color: #FF6B35 !important;
    color: #ffffff !important;
}

/* Content styling */
.content ul{margin:1rem 0;padding-left:1.5rem}
.content li{margin-bottom:.5rem}
.testi{background:var(--muted);padding:1rem;border-left:4px solid var(--primary-color);margin:1rem 0;font-style:italic}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo-img {
        max-height: 80px;
    }

    .hero-features {
        margin-top: 2rem;
    }
}
