/* =========================
   Moumache Soft - Polished CSS
========================= */

:root {
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --dark: #111827;
    --dark-2: #07111f;
    --text: #1f2937;
    --muted: #4b5563;
    --light: #f8fafc;
    --border: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(15,23,42,0.08);
    --shadow-hover: 0 28px 70px rgba(15,23,42,0.13);
    --radius: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f7f9fc;
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
}

.container {
    width: min(1280px, 92%);
    margin: auto;
}

/* Header */
.site-header {
    height: 82px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15,23,42,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.8px;
    color: var(--dark);
    text-decoration: none;
    line-height: 1;
}

.logo span {
    color: var(--primary);
}

.logo img {
    max-height: 46px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--light);
    padding: 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 800;
    padding: 11px 17px;
    border-radius: 999px;
    transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--dark);
    color: var(--white);
}

.nav-menu .nav-btn {
    background: var(--dark);
    color: var(--white) !important;
    box-shadow: 0 12px 28px rgba(17,24,39,0.18);
}

.nav-menu .nav-btn:hover {
    background: var(--primary);
    color: var(--dark) !important;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--dark);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

/* Common */
.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn.primary,
.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--dark);
    box-shadow: 0 12px 30px rgba(245,158,11,0.28);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(245,158,11,0.34);
}

.btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.75);
}

.btn.secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.dark-btn {
    background: var(--dark);
    color: var(--white);
}

.section {
    padding: 85px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span,
.section-label {
    color: var(--primary);
    font-weight: 900;
}

.section-title h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-top: 10px;
}

.section-title p {
    max-width: 680px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.center-btn {
    text-align: center;
    margin-top: 35px;
}

.empty-state {
    text-align: center;
    grid-column: 1 / -1;
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Hero */
.premium-hero-slider {
    height: calc(100vh - 82px);
    min-height: 740px;
    position: relative;
    overflow: hidden;
    background: var(--dark-2);
}

.premium-slide {
    display: none;
    height: calc(100vh - 82px);
    min-height: 740px;
    background-size: cover;
    background-position: center right;
    position: relative;
    align-items: center;
}

.premium-slide.active {
    display: flex;
    animation: premiumFade 0.8s ease;
}

@keyframes premiumFade {
    from {
        opacity: 0;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.premium-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(245,158,11,0.16), transparent 26%),
        linear-gradient(90deg, rgba(3,15,25,0.96) 0%, rgba(3,15,25,0.86) 42%, rgba(3,15,25,0.48) 72%, rgba(3,15,25,0.18) 100%);
}

.premium-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.14);
    border: 1px solid rgba(245,158,11,0.38);
    color: var(--primary-light);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.premium-hero-content h1 {
    font-size: clamp(48px, 5.3vw, 78px);
    line-height: 1.02;
    letter-spacing: -2.4px;
    margin-bottom: 24px;
}

.premium-hero-content p {
    font-size: 20px;
    line-height: 1.75;
    max-width: 730px;
    color: #f3f4f6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-trust span {
    color: var(--white);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.hero-trust i {
    color: var(--primary-light);
    margin-right: 6px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
}

.dot.active {
    width: 34px;
    border-radius: 20px;
    background: var(--primary);
}

/* Stats */
.stats-section {
    background: var(--white);
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats-grid div {
    background: var(--light);
    padding: 24px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid var(--border);
}

.stats-grid strong {
    display: block;
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 4px;
}

.stats-grid span {
    color: #6b7280;
    font-weight: 800;
}

/* Client Logos */
.client-logo-section {
    background: var(--white);
    padding: 34px 0;
    border-bottom: 1px solid var(--border);
}

.client-logo-section p {
    text-align: center;
    color: #6b7280;
    font-weight: 800;
    margin-bottom: 20px;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.client-logo-item,
.client-logo-grid div {
    background: var(--light);
    border: 1px solid var(--border);
    min-height: 84px;
    padding: 18px;
    text-align: center;
    border-radius: 18px;
    font-weight: 900;
    color: var(--dark);
    opacity: 0.78;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.client-logo-item:hover,
.client-logo-grid div:hover {
    opacity: 1;
    transform: translateY(-4px);
    color: var(--primary);
}

.client-logo-item img {
    max-width: 150px;
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    transition: 0.25s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0);
}

/* About / Shared Grids */
.premium-about,
.about-premium-section,
.featured-project-section,
.project-process-section,
.project-wizard-section {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.premium-about-grid,
.about-premium-grid,
.featured-project-grid,
.why-grid,
.wizard-grid {
    display: grid;
    gap: 55px;
    align-items: center;
}

.premium-about-grid,
.about-premium-grid {
    grid-template-columns: 0.95fr 1.05fr;
}

.featured-project-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.why-grid,
.wizard-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.premium-about-grid h2,
.about-premium-grid h2,
.why-grid h2,
.featured-project-content h2,
.wizard-grid h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.premium-about-grid p,
.about-premium-grid p,
.why-grid p,
.featured-project-content p,
.wizard-grid p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.about-points,
.about-highlight-list,
.featured-points {
    display: grid;
    gap: 12px;
    margin: 26px 0;
}

.about-points div,
.about-highlight-list div,
.featured-points div {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--dark);
}

.about-points i,
.about-highlight-list i,
.featured-points i {
    color: var(--primary);
    margin-right: 8px;
}

.premium-about-image,
.about-premium-image {
    position: relative;
}

.premium-about-image img,
.about-premium-image img,
.featured-project-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(15,23,42,0.18);
}

.experience-card,
.about-floating-card {
    position: absolute;
    left: -25px;
    bottom: 35px;
    background: var(--white);
    padding: 22px 26px;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(15,23,42,0.18);
    max-width: 280px;
}

.experience-card strong,
.about-floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 20px;
}

.experience-card span,
.about-floating-card span {
    color: #6b7280;
    font-size: 14px;
}

/* Services */
.premium-services-section,
.tech-section,
.testimonials-section,
.skills-section,
.about-values-section,
.tools-logo-section,
.about-faq-section {
    background: #f4f7fb;
}

.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.premium-service-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.premium-service-card::before {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    right: -35px;
    top: -35px;
    background: rgba(245,158,11,0.12);
    border-radius: 999px;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-link-card,
.portfolio-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #fff3df;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}

.icon-box i {
    color: var(--primary);
    font-size: 25px;
}

.premium-service-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    position: relative;
}

.premium-service-card p {
    color: var(--muted);
    position: relative;
}

.service-read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 900;
    transition: 0.3s;
    position: relative;
}

.service-link-card:hover .service-read-more {
    transform: translateX(5px);
}

/* Why */
.why-section,
.premium-portfolio-section,
.mission-section,
.about-process-section,
.core-values-section,
.experience-timeline-section {
    background: var(--white);
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-list div,
.about-value-grid div,
.core-values-grid div {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 26px;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.why-list div {
    background: var(--light);
    padding: 26px;
    border-radius: 24px;
}

.why-list div:hover,
.about-value-grid div:hover,
.core-values-grid div:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.why-list i,
.about-value-grid i,
.core-values-grid i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff3df;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.why-list h3,
.about-value-grid h3,
.core-values-grid h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.why-list p,
.about-value-grid p,
.core-values-grid p {
    color: var(--muted);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.portfolio-photo,
.portfolio-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-img {
    background: linear-gradient(135deg, #1e3a8a, var(--primary));
    color: var(--white);
    font-weight: 900;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content h3 {
    margin: 8px 0 10px;
}

.portfolio-content p {
    color: var(--muted);
}

.portfolio-content span {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
}

.project-link {
    display: inline-block;
    margin-top: 16px;
    background: var(--dark);
    color: var(--white);
    padding: 9px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

/* Tech / Tools / Skills */
.tech-grid,
.tools-logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.tech-grid div,
.tools-logo-grid div {
    background: var(--white);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    padding: 24px 12px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(15,23,42,0.06);
    transition: 0.25s ease;
}

.tech-grid div:hover,
.tools-logo-grid div:hover {
    transform: translateY(-5px);
}

.tech-grid i,
.tools-logo-grid i {
    font-size: 30px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.tech-grid span,
.tools-logo-grid span {
    font-weight: 900;
    color: var(--dark);
    font-size: 14px;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.skills-tags span {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 900;
    color: var(--dark);
    box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

/* Process */
.premium-process {
    background:
        radial-gradient(circle at 15% 20%, rgba(245,158,11,0.16), transparent 25%),
        linear-gradient(135deg, var(--dark-2), var(--dark));
    color: var(--white);
}

.premium-process .section-title h2 {
    color: var(--white);
}

.premium-process-grid,
.home-step-grid,
.about-value-grid,
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.premium-process-grid div {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.13);
    padding: 30px;
    border-radius: 26px;
    transition: 0.25s ease;
}

.premium-process-grid div:hover {
    transform: translateY(-7px);
    background: rgba(255,255,255,0.13);
}

.premium-process-grid span {
    color: var(--primary-light);
    font-size: 30px;
    font-weight: 900;
}

.premium-process-grid h3 {
    margin: 14px 0 8px;
}

.premium-process-grid p {
    color: #d1d5db;
}

.home-step-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.home-step-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.home-step-card span {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff3df;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.home-step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.home-step-card p {
    color: var(--muted);
    margin: 0;
}

/* Mission / Timeline */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mission-card {
    background: var(--light);
    padding: 38px;
    border-radius: 28px;
    border: 1px solid var(--border);
}

.mission-card.dark {
    background: linear-gradient(135deg, var(--dark-2), var(--dark));
    color: var(--white);
}

.mission-card span {
    color: var(--primary);
    font-weight: 900;
}

.mission-card h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 12px 0;
}

.mission-card p {
    color: var(--muted);
    font-size: 17px;
}

.mission-card.dark p {
    color: #d1d5db;
}

.timeline-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: start;
    background: var(--light);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(15,23,42,0.06);
}

.timeline-item span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.timeline-item h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.timeline-item p {
    color: var(--muted);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 26px;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: var(--shadow);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 3px solid #fff3df;
}

.stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--muted);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--dark);
    font-size: 18px;
}

.testimonial-card span {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.faq-grid h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.faq-grid > div:first-child p {
    color: var(--muted);
    font-size: 17px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px 55px 20px 22px;
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    color: var(--dark);
    cursor: pointer;
    position: relative;
}

.faq-item button::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 24px;
    color: var(--primary);
}

.faq-item.active button::after {
    content: "-";
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--muted);
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA */
.premium-final-cta,
.clean-cta {
    position: relative;
    padding: 115px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,17,31,0.78);
}

.premium-final-cta .container,
.clean-cta .container {
    position: relative;
    z-index: 2;
}

.premium-final-cta span {
    color: var(--primary-light);
    font-weight: 900;
}

.premium-final-cta h2,
.clean-cta h2 {
    font-size: 48px;
    max-width: 760px;
    margin: 12px auto 16px;
    line-height: 1.15;
}

.premium-final-cta p,
.clean-cta p {
    color: #e5e7eb;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Inner Pages */
.page-hero {
    padding: 85px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(245,158,11,0.18), transparent 25%),
        linear-gradient(135deg, var(--dark), #1e3a8a);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 46px;
    margin: 15px 0;
}

.page-hero p {
    max-width: 700px;
    margin: auto;
    color: #e5e7eb;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 7px 14px;
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Details Pages */
.service-details-grid,
.project-details-grid,
.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 35px;
    align-items: start;
}

.service-details-content,
.service-sidebar,
.project-details-main,
.project-details-sidebar,
.case-study-main,
.case-study-sidebar,
.message-details-box {
    background: var(--white);
    padding: 35px;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.service-sidebar,
.project-details-sidebar,
.case-study-sidebar {
    position: sticky;
    top: 110px;
}

.service-details-content h2,
.project-details-main h2,
.case-block h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-details-content p,
.service-sidebar p,
.project-details-main p,
.case-block p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 17px;
}

.project-details-image,
.case-study-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 28px;
}

.case-block {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.case-block:last-child {
    border-bottom: 0;
}

/* Forms */
.contact-grid,
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2,
.about-grid h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.info-box,
.contact-form,
.project-wizard-form {
    background: var(--white);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.info-box {
    padding: 20px;
    margin-top: 18px;
}

.contact-form,
.project-wizard-form {
    padding: 34px;
}

.contact-form label,
.project-wizard-form label,
.admin-form label,
.login-box label {
    display: block;
    margin-bottom: 7px;
    font-weight: 900;
    color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.project-wizard-form input,
.project-wizard-form select,
.project-wizard-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select,
.login-box input,
.admin-search-form input,
.admin-search-form select,
.status-update-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    background: var(--white);
}

.contact-form textarea,
.project-wizard-form textarea,
.admin-form textarea {
    resize: vertical;
}

.contact-form button,
.login-box button {
    width: 100%;
}

.project-wizard-form button {
    width: auto;
    min-width: 180px;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-weight: 800;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
}

.alert.error {
    background: #fee2e2;
    color: #991b1b;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #d1d5db;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-grid h3,
.footer-grid h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-grid a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px;
    margin-top: 35px;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(37,211,102,0.35);
}

.whatsapp-float i {
    font-size: 22px;
}

.floating-contact-bar {
    position: fixed;
    right: 24px;
    top: 45%;
    z-index: 9999;
    display: grid;
    gap: 10px;
}

.floating-contact-bar a {
    width: 48px;
    height: 48px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(15,23,42,0.25);
    transition: 0.25s ease;
}

.floating-contact-bar a:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Back To Top - Clean Final */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 95px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.3s ease;
    box-shadow: 0 16px 40px rgba(245,158,11,0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(245,158,11,0.45);
}

.back-to-top i {
    pointer-events: none;
}

/* Admin */
.admin-login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark), #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: min(420px, 92%);
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0f172a;
    color: var(--white);
    padding: 25px;
}

.admin-sidebar h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.admin-sidebar a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--primary);
    color: var(--dark);
    font-weight: 900;
}

.admin-main {
    padding: 35px;
    background: #f7f9fc;
}

.admin-top,
.admin-card,
.table-box,
.admin-form,
.admin-section-box {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.admin-top,
.admin-card,
.admin-form,
.admin-section-box {
    padding: 25px;
}

.admin-top {
    margin-bottom: 25px;
}

.admin-cards,
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.admin-card strong {
    font-size: 34px;
    color: var(--dark);
}

.admin-flex,
.admin-section-head,
.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.table-box {
    padding: 20px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.admin-table th {
    background: var(--light);
    color: var(--dark);
    font-weight: 900;
}

.edit-btn,
.delete-btn,
.small-edit-link {
    display: inline-block;
    color: var(--white);
    padding: 8px 13px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
}

.edit-btn,
.small-edit-link {
    background: #2563eb;
}

.delete-btn {
    background: #ef4444;
}

.inline-delete-form {
    display: inline-block;
    margin: 0;
}

.admin-thumb {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.status-active,
.status-inactive,
.request-status {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: inline-block;
}

.status-active,
.status-completed {
    background: #dcfce7;
    color: #166534;
}

.status-inactive {
    background: #fee2e2;
    color: #991b1b;
}

.status-new {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-in-progress {
    background: #fef3c7;
    color: #92400e;
}

.status-quoted {
    background: #ede9fe;
    color: #5b21b6;
}

.admin-search-form,
.bulk-action-bar {
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
    margin-bottom: 22px;
    align-items: center;
}

.admin-pagination {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
}

.admin-pagination a.active,
.admin-pagination a:hover {
    background: var(--dark);
    color: var(--white);
}

.form-help {
    display: block;
    margin-top: -10px;
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 13px;
}

.image-preview-box,
.settings-preview {
    margin-bottom: 18px;
    background: var(--light);
    border: 1px dashed #cbd5e1;
    padding: 14px;
    border-radius: 16px;
    max-width: 360px;
}

.image-preview-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.settings-preview img {
    max-width: 100%;
    max-height: 90px;
    display: block;
}

.favicon-preview {
    max-width: 90px;
}

.favicon-preview img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.remove-image-btn {
    display: inline-block;
    margin-top: 12px;
    background: #ef4444;
    color: var(--white);
    padding: 9px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.message-details-box {
    max-width: 850px;
}

.message-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.message-row span,
.message-full p {
    color: var(--muted);
}

.message-full {
    padding-top: 20px;
}

.message-full p {
    margin-top: 10px;
    background: var(--light);
    padding: 18px;
    border-radius: 16px;
}

.message-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.status-update-form {
    margin-top: 24px;
    padding: 20px;
    background: var(--light);
    border-radius: 16px;
}

.status-update-form label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
}

/* Animation */
.premium-service-card,
.portfolio-card,
.testimonial-card,
.why-list div,
.tech-grid div,
.tools-logo-grid div,
.premium-process-grid div,
.home-step-card,
.about-value-grid div,
.core-values-grid div {
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .premium-service-grid,
    .portfolio-grid,
    .premium-process-grid,
    .home-step-grid,
    .about-value-grid,
    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid,
    .tools-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured-project-grid,
    .premium-about-grid,
    .about-premium-grid,
    .why-grid,
    .wizard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 65px 0;
    }

    .premium-hero-slider,
    .premium-slide {
        height: auto;
        min-height: 700px;
    }

    .premium-slide {
        padding: 90px 0 110px;
        background-position: center;
    }

    .premium-overlay {
        background: rgba(3,15,25,0.84);
    }

    .premium-hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .premium-hero-content p {
        font-size: 17px;
    }

    .why-list,
    .testimonials-grid,
    .faq-grid,
    .footer-grid,
    .contact-grid,
    .about-grid,
    .service-details-grid,
    .project-details-grid,
    .case-study-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .premium-about-grid h2,
    .about-premium-grid h2,
    .why-grid h2,
    .featured-project-content h2,
    .faq-grid h2,
    .section-title h2,
    .wizard-grid h2 {
        font-size: 34px;
    }

    .premium-about-image img,
    .about-premium-image img,
    .featured-project-image img {
        height: 360px;
    }

    .experience-card,
    .about-floating-card,
    .service-sidebar,
    .project-details-sidebar,
    .case-study-sidebar {
        position: static;
        margin-top: 18px;
        max-width: 100%;
    }

    .premium-final-cta h2,
    .clean-cta h2 {
        font-size: 34px;
    }

    .admin-search-form,
    .bulk-action-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .site-header {
        height: 74px;
    }

    .nav-wrap {
        height: 74px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 12px;
        background: var(--white);
        box-shadow: 0 20px 60px rgba(15,23,42,0.16);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        text-align: center;
    }

    .admin-layout {
        display: block;
    }

    .admin-sidebar {
        width: 100%;
        padding: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .admin-sidebar h2 {
        width: 100%;
        margin-bottom: 10px;
    }

    .admin-sidebar a {
        display: inline-block;
        margin-bottom: 0;
        padding: 10px 13px;
        font-size: 14px;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-cards,
    .quick-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .premium-service-grid,
    .portfolio-grid,
    .premium-process-grid,
    .home-step-grid,
    .about-value-grid,
    .core-values-grid,
    .tech-grid,
    .tools-logo-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-project-image img,
    .project-details-image,
    .case-study-image {
        height: 320px;
    }

    .logo {
        font-size: 24px;
    }

    .floating-contact-bar {
        display: none;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
    }

    .back-to-top {
        right: 16px;
        bottom: 82px;
        width: 48px;
        height: 48px;
    }

    .message-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Final Premium Tech / Tools Hover Animation
========================= */

.tech-grid,
.tools-logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.tech-grid div,
.tools-logo-grid div {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 22px;
    padding: 26px 14px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(15,23,42,0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tech-grid div::before,
.tools-logo-grid div::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    top: -75px;
    left: -75px;
    background: rgba(245,158,11,0.10);
    border-radius: 50%;
    transition: all 0.45s ease;
}

.tech-grid div:hover,
.tools-logo-grid div:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(15,23,42,0.15);
    border-color: rgba(245,158,11,0.45);
}

.tech-grid div:hover::before,
.tools-logo-grid div:hover::before {
    transform: scale(2);
}

.tech-grid i,
.tools-logo-grid i {
    font-size: 34px;
    color: #f59e0b;
    display: block;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.tech-grid span,
.tools-logo-grid span {
    font-weight: 900;
    color: #111827;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.tech-grid div:hover i,
.tools-logo-grid div:hover i {
    color: #f59e0b;
    animation: iconBounce 0.6s ease;
}

.tech-grid div:hover span,
.tools-logo-grid div:hover span {
    color: #f59e0b;
}

@keyframes iconBounce {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    35% {
        transform: translateY(-7px) scale(1.15) rotate(6deg);
    }

    70% {
        transform: translateY(2px) scale(1.08) rotate(-3deg);
    }

    100% {
        transform: translateY(0) scale(1.12) rotate(0deg);
    }
}

@media (max-width: 1100px) {
    .tech-grid,
    .tools-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .tech-grid,
    .tools-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-grid,
    .tools-logo-grid {
        grid-template-columns: 1fr;
    }
}

.about-hero {
    min-height: 420px;
    padding: 125px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.1;
}

.about-hero p {
    font-size: 18px;
    max-width: 760px;
}

@media (max-width: 700px) {
    .about-hero {
        min-height: 360px;
        padding: 95px 0;
    }
}

.admin-card span {
    display: block;
    color: #6b7280;
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-icon-preview {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff3df;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-icon-preview i {
    font-size: 22px;
}

.admin-table code {
    background: #f1f5f9;
    color: #111827;
    padding: 6px 9px;
    border-radius: 8px;
    font-size: 13px;
}

.services-hero {
    min-height: 460px;
    padding: 135px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.services-hero h1 {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.1;
}

.services-hero p {
    font-size: 18px;
    max-width: 820px;
}

.service-mini-points {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.service-mini-points span {
    font-size: 14px;
    color: #4b5563;
    font-weight: 800;
}

.service-mini-points i {
    color: #f59e0b;
    margin-right: 6px;
}

.service-benefits-section,
.service-process-section {
    background: #fff;
}

.service-tech-section,
.service-faq-section {
    background: #f4f7fb;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
    align-items: center;
}

.service-benefits-grid h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.service-benefits-grid p {
    color: #4b5563;
    font-size: 17px;
    margin-bottom: 22px;
}

.service-benefit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-benefit-cards div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15,23,42,0.08);
    transition: .25s ease;
}

.service-benefit-cards div:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15,23,42,0.13);
}

.service-benefit-cards i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #fff3df;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.service-benefit-cards h3 {
    margin-bottom: 8px;
    color: #111827;
}

.service-benefit-cards p {
    color: #4b5563;
    margin: 0;
}

@media (max-width: 900px) {
    .service-benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-benefits-grid h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .service-benefit-cards {
        grid-template-columns: 1fr;
    }

    .services-hero {
        min-height: 380px;
        padding: 100px 0;
    }
}

.service-detail-hero {
    min-height: 520px;
    padding: 130px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    color: #fff;
    text-align: center;
}

.service-hero-icon {
    width: 82px;
    height: 82px;
    margin: 22px auto 18px;
    border-radius: 24px;
    background: rgba(245,158,11,.16);
    border: 1px solid rgba(245,158,11,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-icon i {
    color: #fbbf24;
    font-size: 38px;
}

.service-detail-hero h1 {
    max-width: 980px;
    margin: 0 auto 18px;
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1.08;
}

.service-detail-hero p {
    max-width: 780px;
    margin: auto;
    color: rgba(255,255,255,.9);
    font-size: 18px;
}

.service-overview-section,
.service-process-section,
.service-package-section {
    background: #fff;
}

.service-feature-section,
.service-tech-section,
.service-faq-section {
    background: #f4f7fb;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 55px;
    align-items: start;
}

.service-overview-grid h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.service-overview-grid p {
    color: #4b5563;
    font-size: 17px;
    margin-bottom: 22px;
}

.service-overview-card {
    background: #111827;
    color: #fff;
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
    position: sticky;
    top: 110px;
}

.service-overview-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.service-overview-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.service-overview-card li {
    color: #e5e7eb;
    font-weight: 800;
}

.service-overview-card i {
    color: #f59e0b;
    margin-right: 8px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-grid div {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
    transition: .25s ease;
}

.service-feature-grid div:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15,23,42,.13);
}

.service-feature-grid i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff3df;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.service-feature-grid h3 {
    margin-bottom: 10px;
    color: #111827;
}

.service-feature-grid p {
    color: #4b5563;
}

.service-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-package-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
    position: relative;
}

.service-package-card.featured {
    background: linear-gradient(135deg, #07111f, #111827);
    color: #fff;
    transform: translateY(-12px);
}

.service-package-card > span {
    display: inline-block;
    background: #f59e0b;
    color: #111827;
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 14px;
}

.service-package-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-package-card p {
    color: #4b5563;
    margin-bottom: 18px;
}

.service-package-card.featured p {
    color: #d1d5db;
}

.service-package-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-package-card li {
    color: #4b5563;
    font-weight: 800;
}

.service-package-card.featured li {
    color: #e5e7eb;
}

.service-package-card li::before {
    content: "✓";
    color: #f59e0b;
    font-weight: 900;
    margin-right: 8px;
}

@media (max-width: 1000px) {
    .service-overview-grid,
    .service-feature-grid,
    .service-package-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-card {
        position: static;
    }

    .service-package-card.featured {
        transform: none;
    }
}

@media (max-width: 700px) {
    .service-detail-hero {
        min-height: 420px;
        padding: 95px 0;
    }
}

.service-detail-hero {
    min-height: 520px;
    padding: 130px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    color: #fff;
    text-align: center;
}

.service-hero-icon {
    width: 82px;
    height: 82px;
    margin: 22px auto 18px;
    border-radius: 24px;
    background: rgba(245,158,11,.16);
    border: 1px solid rgba(245,158,11,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-icon i {
    color: #fbbf24;
    font-size: 38px;
}

.service-detail-hero h1 {
    max-width: 980px;
    margin: 0 auto 18px;
    font-size: clamp(42px, 4vw, 66px);
    line-height: 1.08;
}

.service-detail-hero p {
    max-width: 780px;
    margin: auto;
    color: rgba(255,255,255,.9);
    font-size: 18px;
}

.service-overview-section,
.service-process-section,
.service-package-section {
    background: #fff;
}

.service-feature-section,
.service-tech-section,
.service-faq-section {
    background: #f4f7fb;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 55px;
    align-items: start;
}

.service-overview-grid h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.service-overview-grid p {
    color: #4b5563;
    font-size: 17px;
    margin-bottom: 22px;
}

.service-overview-card {
    background: #111827;
    color: #fff;
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
    position: sticky;
    top: 110px;
}

.service-overview-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.service-overview-card ul {
    list-style: none;
    display: grid;
    gap: 14px;
}

.service-overview-card li {
    color: #e5e7eb;
    font-weight: 800;
}

.service-overview-card i {
    color: #f59e0b;
    margin-right: 8px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-grid div {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
    transition: .25s ease;
}

.service-feature-grid div:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15,23,42,.13);
}

.service-feature-grid i {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff3df;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.service-feature-grid h3 {
    margin-bottom: 10px;
    color: #111827;
}

.service-feature-grid p {
    color: #4b5563;
}

.service-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-package-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(15,23,42,.08);
    position: relative;
}

.service-package-card.featured {
    background: linear-gradient(135deg, #07111f, #111827);
    color: #fff;
    transform: translateY(-12px);
}

.service-package-card > span {
    display: inline-block;
    background: #f59e0b;
    color: #111827;
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 14px;
}

.service-package-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-package-card p {
    color: #4b5563;
    margin-bottom: 18px;
}

.service-package-card.featured p {
    color: #d1d5db;
}

.service-package-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-package-card li {
    color: #4b5563;
    font-weight: 800;
}

.service-package-card.featured li {
    color: #e5e7eb;
}

.service-package-card li::before {
    content: "✓";
    color: #f59e0b;
    font-weight: 900;
    margin-right: 8px;
}

@media (max-width: 1000px) {
    .service-overview-grid,
    .service-feature-grid,
    .service-package-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-card {
        position: static;
    }

    .service-package-card.featured {
        transform: none;
    }
}

@media (max-width: 700px) {
    .service-detail-hero {
        min-height: 420px;
        padding: 95px 0;
    }
}
/* =========================
   Final Logo Color Header Upgrade
========================= */

:root {
    --brand-blue: #1E40AF;
    --brand-blue-light: #2563EB;
    --brand-gold: #F59E0B;
    --brand-gold-light: #FBBF24;
    --brand-dark: #0F172A;
}

/* Header height */
.modern-header {
    height: 96px !important;
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 12px 35px rgba(15,23,42,0.06);
}

.modern-nav-wrap {
    height: 96px !important;
}

/* Logo bigger */
.modern-logo img {
    height: 95px !important;
    max-height: 95px !important;
    max-width: 420px !important;
    width: auto !important;
    object-fit: contain !important;
    transform: scale(1.7);
    transform-origin: left center;
}

.modern-logo:hover img {
    transform: scale(1.7);
}

/* Text logo fallback */
.logo-mark {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-gold)) !important;
    color: #fff !important;
}

.logo-text strong {
    color: var(--brand-gold) !important;
}

/* Nav wrapper */
.modern-nav-menu {
    background: rgba(248,250,252,0.94) !important;
    border: 1px solid rgba(15,23,42,0.08) !important;
    border-radius: 999px !important;
    padding: 8px !important;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08) !important;
}

/* Normal nav */
.modern-nav-menu > a,
.nav-dropdown > a {
    color: var(--brand-dark) !important;
    background: transparent !important;
    font-weight: 900 !important;
    border-radius: 999px !important;
    padding: 12px 17px !important;
    transition: 0.25s ease !important;
}

/* Icons */
.modern-nav-menu a i,
.nav-dropdown > a i {
    color: var(--brand-blue) !important;
}

/* Hover / Active normal menu */
.modern-nav-menu > a:hover,
.modern-nav-menu > a.active,
.nav-dropdown:hover > a,
.nav-dropdown.active > a {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light)) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(37,99,235,0.28) !important;
}

.modern-nav-menu > a:hover i,
.modern-nav-menu > a.active i,
.nav-dropdown:hover > a i,
.nav-dropdown.active > a i {
    color: #fff !important;
}

/* Start Project button always gold */
.start-project-btn {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light)) !important;
    color: var(--brand-dark) !important;
    font-weight: 1000 !important;
    padding: 13px 22px !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 35px rgba(245,158,11,0.35) !important;
}

/* Start Project hover */
.start-project-btn:hover {
    background: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold)) !important;
    color: var(--brand-dark) !important;
    transform: translateY(-2px);
}

/* Start Project active page */
.start-project-btn.active {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light)) !important;
    color: #fff !important;
    box-shadow: 0 16px 38px rgba(37,99,235,0.35) !important;
}

/* Dropdown */
.dropdown-menu {
    top: 58px !important;
    width: 310px !important;
    border-radius: 24px !important;
    padding: 12px !important;
    border: 1px solid rgba(15,23,42,0.08) !important;
    box-shadow: 0 28px 75px rgba(15,23,42,0.18) !important;
}

.dropdown-menu a {
    border-radius: 16px !important;
    padding: 13px 15px !important;
    color: var(--brand-dark) !important;
    font-weight: 850 !important;
}

.dropdown-menu a:hover {
    background: #fff3df !important;
    color: var(--brand-gold) !important;
}

/* Mobile */
@media (max-width: 900px) {
    .modern-header {
        height: 110px !important;
    }
    
    .modern-nav-wrap {
        height: 110px !important;
    }

    .modern-logo img {
        height: 56px !important;
        max-height: 56px !important;
        max-width: 230px !important;
    }
}

@media (max-width: 800px) {
    .modern-nav-menu {
        border-radius: 24px !important;
        padding: 14px !important;
    }

    .modern-nav-menu > a,
    .nav-dropdown > a,
    .start-project-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 18px !important;
    }

    .dropdown-menu {
        width: 100% !important;
        top: auto !important;
    }
}
/* Header Dropdown + Start Project Active Color */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    text-decoration: none;
    color: #111827;
    font-weight: 800;
    padding: 11px 17px;
    border-radius: 999px;
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown.active > a,
.nav-dropdown:hover > a {
    background: #111827;
    color: #fff;
}

.nav-dropdown.active > a i,
.nav-dropdown:hover > a i {
    color: #fff;
}

.dropdown-arrow {
    font-size: 11px !important;
    transition: 0.25s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 52px;
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 25px 70px rgba(15,23,42,0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
    z-index: 99999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: #111827 !important;
    background: transparent !important;
    font-weight: 800;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #fff3df !important;
    color: #f59e0b !important;
}

.start-project-btn {
    background: #FF9B30 !important;
    color: #111827 !important;
    font-weight: 1000 !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(255,155,48,.35) !important;
}

.start-project-btn.active {
    background: linear-gradient(
        135deg,
        #1E40AF,
        #2563EB
    ) !important;

    color: #fff !important;
}

.start-project-btn:hover {
    background: #ffb05a !important;
    color: #111827 !important;
}

/* Mobile Dropdown */
@media (max-width: 800px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        justify-content: center;
        width: 100%;
        padding: 14px 16px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 16px;
        margin-top: 8px;
        display: none;
        background: #f8fafc;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        text-align: center;
    }
}

/* =========================
   Final Header Logo + Start Project Fix
========================= */

.modern-header {
    height: 110px !important;
}

.modern-nav-wrap {
    height: 110px !important;
}

/* Logo visible bigger */
.modern-logo {
    min-width: 260px !important;
    overflow: visible !important;
}

.modern-logo img {
    height: 86px !important;
    max-height: 86px !important;
    max-width: 360px !important;
    width: auto !important;
    object-fit: contain !important;
    transform: scale(1.18) !important;
    transform-origin: left center !important;
}

/* Normal active menu blue */
.modern-nav-menu > a.active:not(.start-project-btn),
.nav-dropdown.active > a {
    background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
    color: #fff !important;
}

/* Start Project always orange */
.modern-nav-menu > a.start-project-btn,
.modern-nav-menu > a.start-project-btn:link,
.modern-nav-menu > a.start-project-btn:visited {
    background: #FF9B30 !important;
    color: #111827 !important;
    border: none !important;
    font-weight: 1000 !important;
    box-shadow: 0 16px 38px rgba(255,155,48,.35) !important;
}

/* Start Project hover orange-light */
.modern-nav-menu > a.start-project-btn:hover {
    background: #ffb15c !important;
    color: #111827 !important;
    transform: translateY(-2px) !important;
}

/* Start Project active blue like other active buttons */
.modern-nav-menu > a.start-project-btn.active {
    background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
    color: #fff !important;
    box-shadow: 0 16px 38px rgba(37,99,235,.35) !important;
}

.modern-nav-menu > a.start-project-btn.active:hover {
    background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
    color: #fff !important;
}

/* Mobile */
@media (max-width: 900px) {
    .modern-header {
        height: 88px !important;
    }

    .modern-nav-wrap {
        height: 88px !important;
    }

    .modern-logo {
        min-width: 210px !important;
    }

    .modern-logo img {
        height: 62px !important;
        max-height: 62px !important;
        transform: scale(1.12) !important;
    }
}