:root {
    --primary: #fb6c09;
    --primary-dark: #cc5604;
    --secondary: #333333;
    --text-color: #555555;
    --heading-color: #222222;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #fb6c09 0%, #ff8c00 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html, body {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

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

/* Typography Helper */
.text-orange {
    color: var(--primary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h6 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title h3 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.white h3 {
    color: var(--white);
}

.section-title.white h6 {
    color: rgba(255,255,255,0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    gap: 10px;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(251, 108, 9, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 108, 9, 0.5);
    background: linear-gradient(135deg, #cc5604 0%, #fb6c09 100%);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp-large {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
    background: #222;
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

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

.top-contacts a {
    color: var(--white);
}

.top-contacts a i {
    color: var(--primary);
}

/* Navigation */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 1.05rem;
}

.nav-links a:hover, .nav-links li:hover > a {
    color: var(--primary);
}

/* Dropdown Styles */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 2000;
    border-top: 3px solid var(--primary);
}

.nav-links li:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    padding: 0;
}

.dropdown-content a {
    padding: 10px 25px;
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: #fdfaf7;
    padding-left: 30px;
}

.has-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h4 {
    color: var(--primary);
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Badges section */
.badges {
    padding: 40px 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.grids.row-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary);
}

.badge-text strong {
    display: block;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.badge-text span {
    font-size: 0.85rem;
    color: #888;
}

/* Services */
.services {
    padding: 100px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    scale: 1.1;
}

.service-body {
    padding: 30px;
}

.service-body h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
    text-align: justify;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #1a1a1a;
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 40px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(251, 108, 9, 0.3);
}

.step::after {
    content: '';
    position: absolute;
    top: 75px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* About Us */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.experience-tag {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(251, 108, 9, 0.4);
}

.experience-tag span {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-tag p {
    font-weight: 600;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.process-text p {
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary);
}

/* Process Details */
.process-details {
    padding: 100px 0;
    background: #fbfbfb;
}

.process-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.process-infographic {
    flex: 0.8;
}

.process-infographic img {
    border-radius: 20px;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--primary);
    color: var(--white);
}

.why-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover i {
    color: var(--white);
}

.why-card:hover h4 {
    color: var(--white);
}

.why-card h4 {
    margin-bottom: 15px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('assets/images/hero.png');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--primary);
}

.contact-info p {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

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

/* Mobile Actions Buttons */
.sticky-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 2000;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    gap: 10px;
}

.sticky-btn i {
    font-size: 1.2rem;
}

.call-btn { background: var(--primary); }
.whatsapp-btn { background: #25d366; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .service-cards, .why-grid, .footer-grid, .grids.row-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h2 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    
    header { padding: 10px 0; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1001;
        gap: 20px;
    }

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

    .nav-links li { padding: 0; width: 100%; }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        width: 100%;
        padding: 10px 0 0 15px;
        border-top: none;
        display: none; /* Only show if parent clicked or just keep visible on mobile */
    }

    .has-dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-cta { display: none; }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--heading-color);
        z-index: 1002;
    }

    .sticky-actions { display: flex; }

    .hero { min-height: 70vh; padding: 150px 0 100px; text-align: center; }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-content h2 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-btns { display: flex; justify-content: center; flex-direction: column; gap: 20px; align-items: center; }

    .about-grid, .process-content, .cta-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }

    .about-text { text-align: center; }
    .about-text h3 { font-size: 2rem; }
    
    .process-steps { grid-template-columns: repeat(2, 1fr); padding-top: 0; }
    .step::after { display: none; }

    .cta-banner h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .service-cards, .why-grid, .footer-grid, .process-steps, .grids.row-cols-4 {
        grid-template-columns: 1fr;
    }
    .badge-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .badge-text { text-align: center; }
    .hero-content h2 { font-size: 2rem; }
    .experience-tag { right: 10px; bottom: 10px; padding: 15px; }
    .experience-tag span { font-size: 1.8rem; }
}
