:root {
    /* Advanced Premium Palette */
    --primary-color: #0b132b; 
    --secondary-color: #1c2541;
    --accent-color: #ff6b35; 
    --accent-hover: #e05626;
    --text-color: #e6e8e6;
    --text-dark: #202020;
    --text-muted: #6b7280;
    --bg-color: #f7f9fc;
    --card-bg: #ffffff;
    
    /* Advanced Gradients & Shadows */
    --gradient-hero: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff9e00 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.4);
    
    /* Layout */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: 'Outfit', sans-serif; overflow-x: hidden; }
body { background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; padding-bottom: 80px; overflow-x: hidden; }

/* Utilities */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-gradient { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

.subtitle { display: inline-block; font-size: 0.9rem; font-weight: 700; color: var(--accent-color); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-size: 2.8rem; font-weight: 800; color: var(--primary-color); margin-bottom: 20px; line-height: 1.2; }
.header-line { width: 60px; height: 4px; background: var(--gradient-accent); border-radius: 2px; margin-bottom: 40px; }

/* Top Bar */
.top-bar { background: var(--primary-color); color: rgba(255,255,255,0.8); font-size: 0.85rem; padding: 10px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-left span { margin-right: 20px; }
.top-bar-right a { color: var(--accent-color); text-decoration: none; font-weight: 600; }

/* Navbar */
.navbar { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); padding: 15px 0; transition: var(--transition-smooth); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { background: var(--gradient-accent); color: white; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.logo-text { font-size: 1.8rem; font-weight: 800; color: var(--primary-color); }
.logo-text span { color: var(--accent-color); }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a { text-decoration: none; color: var(--primary-color); font-weight: 600; font-size: 1rem; transition: var(--transition-smooth); position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-color); }
.nav-menu .nav-btn { background: var(--primary-color); color: white; padding: 10px 24px; border-radius: 30px; }
.nav-menu .nav-btn:hover { background: var(--accent-color); color: white; transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

@media (max-width: 991px) {
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
}

/* Base Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; border-radius: 50px; font-size: 1.1rem; font-weight: 700; text-decoration: none; transition: var(--transition-smooth); cursor: pointer; border: none; }
.btn-primary { background: var(--gradient-accent); color: white; }
.btn-primary:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: white; color: var(--primary-color); }
.btn-white { background: white; color: var(--primary-color); }
.btn-white:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Hero Section */
.hero { position: relative; padding: 120px 0; background: var(--gradient-hero); color: white; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-bg-shapes .shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0; }
.hero-bg-shapes .shape-1 { width: 500px; height: 500px; background: var(--accent-color); top: -100px; right: -100px; }
.hero-bg-shapes .shape-2 { width: 400px; height: 400px; background: #3a86ff; bottom: -50px; left: -100px; }

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.badge { display: inline-block; padding: 8px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.hero p { font-size: 1.3rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.7; max-width: 600px; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 60px; }

.trust-indicators { display: flex; gap: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.trust-item { display: flex; align-items: center; gap: 15px; }
.trust-icon { color: #ffd166; font-size: 1.2rem; }
.trust-item span { font-weight: 600; font-size: 1.1rem; }

@media (max-width: 768px) {
    .hero { padding: 80px 0; }
    .hero h1 { font-size: 3rem; }
    .hero-buttons { flex-direction: column; }
    .trust-indicators { flex-direction: column; }
}

/* Brands Marquee */
.brands-section { background: white; padding: 40px 0; border-bottom: 1px solid #eaeaea; overflow: hidden; }
.brands-title { text-align: center; color: var(--text-muted); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 20px; }
.marquee-wrapper { width: 100%; overflow: hidden; display: flex; }
.marquee-content { display: flex; white-space: nowrap; animation: scrollLeft 30s linear infinite; }
.marquee-content span { font-size: 1.8rem; font-weight: 800; color: #d1d5db; margin: 0 40px; text-transform: uppercase; transition: color 0.3s; }
.marquee-content span:hover { color: var(--primary-color); }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Advanced Services */
.services { background: var(--bg-color); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card-new { background: white; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition-smooth); border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.service-card-new:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }
.card-img { height: 160px; background: var(--primary-color); position: relative; }
.card-img .overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: var(--gradient-hero); opacity: 0.8; }
.card-content { padding: 40px 30px; position: relative; flex-grow: 1; }
.icon-box { position: absolute; top: -40px; right: 30px; width: 80px; height: 80px; background: var(--gradient-accent); color: white; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; box-shadow: var(--shadow-glow); }
.service-card-new h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; color: var(--primary-color); }
.service-card-new p { color: var(--text-muted); margin-bottom: 25px; }
.service-list { list-style: none; }
.service-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 600; color: var(--text-dark); }
.service-list li i { color: var(--accent-color); }

/* Process Section */
.process-section { background: white; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
.step { text-align: center; position: relative; padding: 30px; background: var(--bg-color); border-radius: var(--border-radius-lg); transition: var(--transition-smooth); }
.step:hover { background: var(--primary-color); color: white; transform: translateY(-10px); }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-size: 4rem; font-weight: 900; color: rgba(0,0,0,0.05); transition: var(--transition-smooth); }
.step:hover .step-number { color: rgba(255,255,255,0.1); }
.step-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent-color); box-shadow: var(--shadow-md); transition: var(--transition-smooth); }
.step:hover .step-icon { background: var(--gradient-accent); color: white; }
.step h4 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; }
.step p { color: var(--text-muted); }
.step:hover p { color: rgba(255,255,255,0.8); }

/* CTA Banner */
.cta-banner { background: var(--gradient-accent); padding: 80px 0; text-align: center; color: white; }
.cta-banner h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; }
.cta-banner p { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.9; }

/* Why Us Advanced */
.why-us-v2 { background: var(--bg-color); overflow: hidden; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; color: var(--primary-color); line-height: 1.2; }
.why-content > p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }

.feature-rows { display: flex; flex-direction: column; gap: 30px; }
.feature-row { display: flex; gap: 20px; }
.f-icon { width: 60px; height: 60px; background: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-color); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.f-text h5 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; color: var(--primary-color); }
.f-text p { color: var(--text-muted); }

.why-image { position: relative; height: 500px; }
.image-placeholder { width: 100%; height: 100%; border-radius: var(--border-radius-lg); background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.image-placeholder::after { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat; opacity: 0.5; }
.floating-icon { font-size: 8rem; color: rgba(255,255,255,0.1); }
.experience-badge { position: absolute; top: -30px; left: -30px; background: var(--gradient-accent); width: 140px; height: 140px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; box-shadow: var(--shadow-glow); z-index: 2; animation: float 4s ease-in-out infinite; }
.experience-badge .num { font-size: 3rem; font-weight: 900; line-height: 1; }
.experience-badge .text { font-size: 1rem; font-weight: 600; text-transform: uppercase; }

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

@media (max-width: 991px) {
    .why-us-grid { grid-template-columns: 1fr; }
    .why-image { height: 400px; margin-top: 40px; }
}

/* Premium Footer */
.premium-footer { background: var(--primary-color); color: rgba(255,255,255,0.7); padding: 80px 0 30px; position: relative; }
.premium-footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }

.footer-brand p { margin-bottom: 25px; max-width: 400px; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition-smooth); }
.social-links a:hover { background: var(--accent-color); transform: translateY(-5px); }

.footer-links h4, .footer-contact h4 { color: white; font-size: 1.3rem; font-weight: 700; margin-bottom: 25px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition-smooth); }
.footer-links ul li a:hover { color: var(--accent-color); padding-left: 5px; }

.contact-info { list-style: none; }
.contact-info li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-info li i { color: var(--accent-color); font-size: 1.2rem; margin-top: 5px; }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Sticky Action Bar Keep Same but Better Colors */
.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
    z-index: 2000;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    color: white;
}

.call-btn { background: #1dc9b7; } /* Modern Green */
.call-btn:hover { background: #18a99a; }
.service-btn { background: var(--primary-color); }
.service-btn:hover { background: var(--secondary-color); }

.pulse-icon { animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }

@media (min-width: 992px) {
    .sticky-action-bar {
        bottom: 30px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 50px;
        overflow: hidden;
        width: 600px;
        border: 2px solid rgba(255,255,255,0.2);
    }
}
