/* ===== White Theme for RAMCAP International ===== */

/* Color Variables - White Theme */
:root {
    --primary-red: #DC143C;
    --primary-orange: #FF6B35;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F9FA;
    --bg-lighter: #FAFBFC;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light-gray: #6c757d;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-heavy: rgba(0, 0, 0, 0.16);
}

/* Global Background - White Theme */
body {
    background: var(--bg-white);
    color: var(--text-dark);
}

/* Header - White Theme */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.logo-text-main {
    color: var(--primary-red) !important;
}

.logo-text-sub {
    color: var(--text-gray) !important;
}

.logo-tagline {
    color: var(--text-light-gray) !important;
}

.nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link::after {
    background: var(--primary-red) !important;
}

/* Mobile Menu - White Theme */
.mobile-menu {
    background: var(--bg-white);
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.hamburger span {
    background: var(--text-dark);
}

/* Hero Section - White Background with Images */
.hero {
    background: var(--bg-white);
    min-height: 100vh;
    position: relative;
}

.hero-image-overlay {
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.03) 0%, 
                rgba(255, 107, 53, 0.03) 100%);
}

.hero-content-gradient {
    background: linear-gradient(to right, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(255, 255, 255, 0.85) 50%,
                rgba(255, 255, 255, 0.6) 100%);
}

.hero-title {
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 50%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-gray);
}

/* Hero Stats - Icon Based */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.stat-item:hover::before {
    opacity: 0.05;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover .stat-icon {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Sections - White Theme */
section {
    background: var(--bg-white);
}

.services {
    background: var(--bg-light-gray);
}

.why-choose {
    background: var(--bg-white);
}

.cta-section {
    background: var(--bg-lighter);
}

/* Section Headers */
.section-badge {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--bg-white);
}

.section-title {
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-gray);
}

/* Service Cards - White Theme */
.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.service-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--bg-white);
}

.service-card h3 {
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
}

.service-features li {
    color: var(--text-gray);
}

.service-features li i {
    color: var(--primary-red);
}

.service-link {
    color: var(--primary-red);
}

.service-link:hover {
    color: var(--primary-orange);
}

/* Feature Items - White Theme */
.feature-item {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
}

.feature-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--bg-white);
}

.feature-item h4 {
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
}

/* CTA Section - White Theme */
.cta-section {
    background: linear-gradient(135deg, 
                rgba(220, 20, 60, 0.05) 0%, 
                rgba(255, 107, 53, 0.05) 100%);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.cta-title {
    color: var(--text-dark);
}

.cta-text {
    color: var(--text-gray);
}

/* Footer - White Theme */
.footer {
    background: var(--bg-light-gray);
    border-top: 2px solid var(--border-color);
    color: var(--text-dark);
}

.footer-title {
    color: var(--text-dark);
}

.footer-links li a {
    color: var(--text-gray);
}

.footer-links li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
}

/* Buttons - White Theme */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--bg-white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8102f, #e55a28);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

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

.btn-outline-light:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* Scroll Indicator - White Theme */
.scroll-indicator {
    color: var(--text-dark);
}

.scroll-indicator i {
    color: var(--primary-red);
}

.section-scroll-indicator {
    color: var(--text-dark);
    border: 2px solid var(--primary-red);
    background: var(--bg-white);
}

.section-scroll-indicator:hover {
    background: var(--primary-red);
    color: var(--bg-white);
}

/* Contact Info - White Theme */
.contact-info {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.contact-info:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--bg-white);
}

.contact-info h3 {
    color: var(--text-dark);
}

.contact-info p,
.contact-info a {
    color: var(--text-gray);
}

.contact-info a:hover {
    color: var(--primary-red);
}

/* Form Inputs - White Theme */
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 20, 60, 0.15);
}

/* Scroll Top Button - White Theme */
.scroll-top {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--bg-white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.scroll-top:hover {
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

/* Social Links - White Theme */
.social-links a {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-color: var(--primary-red);
    color: var(--bg-white);
}

/* Hero Slider Dots - White Theme */
.slider-dot {
    background: var(--border-color);
    border: 2px solid var(--text-gray);
}

.slider-dot.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

/* Responsive - Maintain readability */
@media (max-width: 991px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
}
