:root {
    --ranel-blue: #003366;
    --ranel-blue-light: #004d99;
    --ranel-blue-dark: #001a33;
    --ranel-gold: #c9a227;
    --ranel-gold-light: #e0bc3e;
    --ranel-white: #ffffff;
    --ranel-gray: #f8f9fa;
    --ranel-text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ranel-text);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--ranel-blue-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar span { opacity: 0.9; }
.top-bar a {
    color: #fff;
    margin-left: 12px;
    transition: color 0.3s;
}
.top-bar a:hover { color: var(--ranel-gold); }

/* Navbar */
.navbar {
    background: var(--ranel-blue);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-ranel {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ranel-gold);
    letter-spacing: 2px;
}
.brand-sub {
    font-size: 0.65rem;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 500;
}
.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: all 0.3s;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--ranel-gold) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--ranel-gold);
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 32px);
}
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
}
.dropdown-item {
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.2s;
}
.dropdown-item:hover {
    background: var(--ranel-blue);
    color: #fff;
}

/* Buttons */
.btn-gold {
    background: var(--ranel-gold);
    color: var(--ranel-blue-dark);
    font-weight: 600;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-gold:hover {
    background: var(--ranel-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}
.btn-outline-gold {
    border: 2px solid var(--ranel-gold);
    color: var(--ranel-gold);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s;
    background: transparent;
}
.btn-outline-gold:hover {
    background: var(--ranel-gold);
    color: var(--ranel-blue-dark);
}
.btn-blue {
    background: var(--ranel-blue);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-blue:hover {
    background: var(--ranel-blue-light);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--ranel-blue) 0%, var(--ranel-blue-dark) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h1 span {
    color: var(--ranel-gold);
}
.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 30px;
}
.hero-stats {
    margin-top: 40px;
}
.stat-item h3 {
    color: var(--ranel-gold);
    font-size: 2.5rem;
    font-weight: 700;
}
.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-weight: 700;
    color: var(--ranel-blue);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--ranel-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-header p {
    color: #666;
    margin-top: 10px;
}

/* Cards */
.service-card, .estate-card, .feature-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    height: 100%;
    border: none;
}
.service-card:hover, .estate-card:hover, .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ranel-blue) 0%, var(--ranel-blue-light) 100%);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.estate-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.estate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.estate-card:hover .estate-image img {
    transform: scale(1.1);
}
.estate-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ranel-gold);
    color: var(--ranel-blue-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
}
.estate-badge.sold {
    background: #dc3545;
    color: #fff;
}
.estate-price {
    color: var(--ranel-blue);
    font-size: 1.5rem;
    font-weight: 700;
}
.estate-price.sold {
    color: #dc3545;
}
.estate-features {
    list-style: none;
    padding: 0;
}
.estate-features li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: #555;
}
.estate-features li i {
    color: var(--ranel-gold);
    margin-right: 8px;
}

/* Features Strip */
.features-strip {
    background: var(--ranel-blue);
    padding: 40px 0;
    color: #fff;
}
.feature-item {
    text-align: center;
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--ranel-gold);
    margin-bottom: 10px;
}
.feature-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 80px 0;
}
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-image img {
    border-radius: 16px;
}
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--ranel-gold);
    border-left: 5px solid var(--ranel-gold);
    border-radius: 16px 0 0 0;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--ranel-gold);
    border-right: 5px solid var(--ranel-gold);
    border-radius: 0 0 16px 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--ranel-blue) 0%, var(--ranel-blue-dark) 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 15px;
}
.testimonial-card i {
    color: var(--ranel-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Contact Page */
.contact-info-card {
    background: var(--ranel-blue);
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    height: 100%;
}
.contact-info-card i {
    font-size: 1.5rem;
    color: var(--ranel-gold);
    margin-bottom: 10px;
}
.form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}
.form-control:focus {
    border-color: var(--ranel-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.15);
}

/* Footer */
.footer {
    background: var(--ranel-blue-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}
.footer-brand .brand-ranel {
    font-size: 1.5rem;
}
.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--ranel-gold);
    padding-left: 5px;
}
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--ranel-gold);
    margin-right: 10px;
    margin-top: 3px;
}
.bank-info {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,39,0.3);
}
.text-gold { color: var(--ranel-gold) !important; }
.footer-hr {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--ranel-gold);
    color: var(--ranel-blue-dark);
    transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Cleaning Hero */
.cleaning-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 100px 0;
}
.cleaning-hero h1 {
    color: var(--ranel-blue);
    font-weight: 800;
}
.cleaning-card {
    text-align: center;
    padding: 40px 30px;
}

/* Animations */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.7rem; }
    .hero { min-height: 70vh; padding: 60px 0; }
    .brand-ranel { font-size: 1.4rem; }
    .about-image::before, .about-image::after { display: none; }
}