:root {
    --primary-orange: #ff6b35;
    --orange-glow: rgba(255, 107, 53, 0.25);
    --dark: #0f172a;
    --soft-dark: #1e293b;
    --card-dark: #1e293b;
    --soft-bg: #f8fafc;
    --muted: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--soft-bg);
    color: var(--dark);
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.text-orange {
    color: var(--primary-orange) !important;
}

/* ================= WHITE FROSTED GLASS NAVBAR ================= */
.glass-navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.site-logo {
    height: 42px !important;
    max-height: 42px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

.nav-link {
    color: #334155 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px !important;
    transition: 0.3s ease;
}

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

/* ================= BUTTONS ================= */
.btn-primary-custom {
    background: var(--primary-orange);
    color: var(--white) !important;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary-orange) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--orange-glow);
}

.btn-outline-custom {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ================= HERO SECTION ================= */
.hero-section {
    padding: 70px 0 90px;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08), transparent 45%), var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    background: #fff5f2;
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 30px;
    max-width: 640px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
}

.trust-item strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
}

.trust-item small {
    color: var(--muted);
    font-size: 12px;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: var(--border);
}

.hero-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    border: 4px solid var(--white);
}

/* ================= SERVICES ================= */
.expertise-section {
    padding: 100px 0;
    background: var(--white);
}

.section-label {
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.services-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.services-header h2 span, .about-content h2 span, .contact-box h2 span, .section-heading h2 span, .blog-header h2 span {
    color: var(--primary-orange);
}

.service-premium-card {
    padding: 32px 26px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition: all 0.3s ease;
    height: 100%;
}

.service-premium-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.08);
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #cbd5e1;
    font-size: 18px;
}

.service-arrow {
    color: var(--muted);
}

.service-premium-card:hover .service-arrow {
    color: var(--primary-orange);
}

.service-premium-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.service-premium-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-premium-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-orange);
    background: #fff5f2;
    padding: 5px 12px;
    border-radius: 20px;
}

/* ================= ABOUT ================= */
.about-section {
    padding: 100px 0;
    background: var(--soft-bg);
}

.about-intro {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}

.about-content p {
    color: var(--muted);
    line-height: 1.8;
}

.about-premium-card {
    background: var(--dark);
    color: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
}

.about-card-label {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.about-focus-item {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    align-items: flex-start;
}

.about-focus-number {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-orange);
}

.about-focus-item h3 {
    font-size: 18px;
    margin-bottom: 3px;
}

.about-focus-item p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

/* ================= PROJECTS (DESIGN IMPROVED) ================= */
.projects-section {
    padding: 100px 0;
    background: var(--white);
}

.project-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--primary-orange);
}

.project-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    position: relative;
}

.project-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.project-one { background: linear-gradient(135deg, #0f172a, #ff6b35); }
.project-two { background: linear-gradient(135deg, #ff6b35, #ea580c); }
.project-three { background: linear-gradient(135deg, #1e293b, #3b82f6); }

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
}

.project-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0 18px;
}

.project-link {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
}

/* ================= BLOG ================= */
.blog-section {
    padding: 100px 0;
    background: var(--soft-bg);
}

.blog-premium-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-premium-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-orange);
}

.blog-premium-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-bg-1 { background: linear-gradient(135deg, #0f172a, #1e293b); }
.blog-bg-2 { background: linear-gradient(135deg, #ff6b35, #ea580c); }
.blog-bg-3 { background: linear-gradient(135deg, #1e293b, #334155); }

.blog-category {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.blog-premium-content {
    padding: 25px;
}

.blog-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 12px;
}

.blog-premium-content h3 {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 10px;
}

.blog-premium-content p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.read-more-btn {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 13.5px;
}

/* ================= CONTACT ================= */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-box {
    background: var(--dark);
    color: var(--white);
    padding: 50px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
    border-radius: 14px;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.08);
    color: var(--white);
}

.contact-icon {
    font-size: 20px;
    color: var(--primary-orange);
}

.contact-item small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-action {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 28px;
    border-radius: 24px;
}

.contact-action-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

/* ================= FOOTER ================= */
.footer {
    background: #090d16;
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-logo-img {
    height: 42px !important;
    width: auto !important;
    object-fit: contain;
}

.footer p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
}

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

.footer-hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 35px 0 20px;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 991px) {
    .contact-box {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }

    .footer-links {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }

    .site-logo, .footer-logo-img {
        height: 35px !important;
    }

    .hero-section {
        padding: 40px 0;
    }

    .contact-box {
        padding: 25px 18px;
    }
}
