/* ============================================
   PK Tech Solutions — Premium Business Portfolio
   style.css
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #0B1220;
    --color-secondary: #111827;
    --color-accent: #C9A227;
    --color-accent-light: #E0BE4E;
    --color-accent-dark: #A88A1E;
    --color-bg: #F8FAFC;
    --color-bg-alt: #F1F5F9;
    --color-text: #111827;
    --color-text-muted: #64748B;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    --color-border-dark: #1E293B;
    /* Semantic */
    --color-success: #16A34A;
    --color-warning: #F59E0B;
    --color-error: #DC2626;
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    /* Spacing (8px system) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    /* Layout */
    --container-max: 1280px;
    --container-pad: 1.5rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ---------- Section Base ---------- */
.section {
    padding: var(--space-3xl) 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
}

    .btn-primary:hover {
        background: var(--color-accent-light);
        border-color: var(--color-accent-light);
        box-shadow: var(--shadow-gold);
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--color-white);
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ---------- Glassmorphism ---------- */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}

    .navbar.scrolled {
        background: #ffffff;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 162, 39, 0.20);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
    }


.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #111111;
    transition: color var(--transition);
    flex-shrink: 0;
}

    .nav-logo:hover {
        color: #c9a227;
    }


/* ================= NAV MENU ================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}


.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111111;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}


    /* Golden underline */

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #c9a227;
        transition: width 0.3s ease;
    }


    /* Hover + Active = Golden */

    .nav-link:hover,
    .nav-link.active {
        color: #c9a227;
    }


        /* Golden underline */

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }


/* ================= CTA ================= */

.nav-cta-desktop {
    display: inline-flex;
}

.nav-cta-mobile {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

    .hamburger span {
        width: 26px;
        height: 3px;
        background: black;
        border-radius: 2px;
        transition: all var(--transition);
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('/assets/img/banner2.png') center / cover no-repeat;
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.12);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 6rem var(--container-pad) 4rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
}

.hero-left {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

    .hero-badge i {
        font-size: 0.5rem;
        color: var(--color-accent);
    }

.hero-title {
    font-family: var(--font-heading);
/*    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
*/
       font-size:60px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats Card */
.hero-stats-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 260px;
    box-shadow: var(--shadow-xl);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
}

.hero-stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* Floating animation */
.floating-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
}

.wheel {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
    padding: 3rem 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.trust-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94A3B8;
    transition: color var(--transition);
    cursor: default;
}

    .trust-logo:hover {
        color: var(--color-text);
    }

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

    .about-image-wrap img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

.about-exp-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    background: var(--color-primary);
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 200px;
}

.about-exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.about-text {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

    .about-bullets li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 500;
        color: var(--color-text);
    }

    .about-bullets i {
        color: var(--color-accent);
        font-size: 1.1rem;
    }

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: transform var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition);
}

    .service-link:hover {
        gap: 0.7rem;
    }

.service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.service-card:hover .service-accent {
    width: 100%;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats {
    background: var(--color-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

    .stats::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
        border-radius: 50%;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
    background: var(--color-white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    transition: all var(--transition);
}

    .filter-btn:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
    }

    .filter-btn.active {
        background: var(--color-accent);
        color: var(--color-primary);
        border-color: var(--color-accent);
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: start;
}

.portfolio-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.06);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(11, 18, 32, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .portfolio-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 35px rgba(11, 18, 32, 0.12);
    }
    .portfolio-card.hide {
        display: none;
    }

.portfolio-img-wrap {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1.65 / 1;
}
    .portfolio-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }


.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 18, 32, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-view {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    background: rgba(201, 162, 39, 0.9);
    transition: all var(--transition);
}

    .portfolio-view:hover {
        background: var(--color-accent);
    }

.portfolio-info {
    padding: 10px 8px 14px;
    text-align: center;
}

.portfolio-cat {
    margin: 0;
    font-size: 11px;
    color: #334e8c;
}


.portfolio-name {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: #0b1220;
}

.portfolio-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}
.portfolio-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
    .portfolio-more .btn {
        padding: 10px 22px;
    }
/* ============================================
   PROCESS
   ============================================ */
.process {
    background: var(--color-bg-alt);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.process-line {
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), var(--color-border), var(--color-accent));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-number {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    padding: 0 0.5rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    background: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(201, 162, 39, 0.1);
    color: var(--color-accent);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.why-feature:hover .why-feature-icon {
    background: var(--color-accent);
    color: var(--color-primary);
}

.why-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.why-feature p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.why-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-bg-alt);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 1rem;
    text-align: center;
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--color-accent);
    }

    .testimonial-author h4 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-primary);
        text-align: left;
    }

    .testimonial-author span {
        font-size: 0.85rem;
        color: var(--color-text-muted);
    }

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--transition);
}

    .testimonial-btn:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
        background: rgba(201, 162, 39, 0.05);
    }

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
}

    .testimonial-dot.active {
        background: var(--color-accent);
        width: 28px;
        border-radius: 5px;
    }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background: url('https://images.pexels.com/photos/9301860/pexels-photo-9301860.jpeg?auto=compress&cs=tinysrgb&w=1920') center / cover no-repeat;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.92) 0%, rgba(17, 24, 39, 0.88) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .contact-details li {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(201, 162, 39, 0.1);
    color: var(--color-accent);
    font-size: 1.1rem;
}

.contact-detail-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition);
}

    .contact-details a:hover {
        color: var(--color-accent);
    }

.contact-details span:last-child {
    color: var(--color-text);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-text);
        margin-bottom: 0.5rem;
    }

.req {
    color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition);
    font-size: 0.95rem;
}

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-accent);
    }

    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: var(--color-error);
    }

.form-error {
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: 0.35rem;
    min-height: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-white);
    display: block;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        transition: all var(--transition);
    }

        .footer-social a:hover {
            background: var(--color-accent);
            color: var(--color-primary);
            transform: translateY(-3px);
        }

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-col ul a {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.6);
        transition: color var(--transition);
    }

        .footer-col ul a:hover {
            color: var(--color-accent);
        }

.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--color-accent);
    width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

    .footer-bottom p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
    }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--color-accent-light);
        transform: translateY(-4px);
    }

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(201, 162, 39, 0.3);
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 90vw;
}

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .toast i {
        color: var(--color-accent);
        font-size: 1.3rem;
    }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal[data-reveal="fade-up"] {
        transform: translateY(40px);
    }

    .reveal[data-reveal="fade-left"] {
        transform: translateX(40px);
    }

    .reveal[data-reveal="fade-right"] {
        transform: translateX(-40px);
    }

    .reveal.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Laptop 1024px */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Tablet 768px */
@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        background: var(--color-primary);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: right 0.4s ease;
        overflow-y: auto;
    }

        .nav-menu.active {
            right: 0;
        }

    .nav-link {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }

        .nav-cta-mobile .nav-cta-btn {
            width: 100%;
        }

    .hamburger {
        display: flex;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 7rem;
    }

    .hero-right {
        width: 100%;
        max-width: 400px;
    }

    .hero-stats-card {
        flex-direction: row;
        justify-content: space-around;
        min-width: auto;
        padding: 1.75rem 1.5rem;
    }

    .hero-stat-divider {
        width: 1px;
        height: auto;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrap img,
    .why-image-wrap img {
        height: 400px;
    }

    .about-exp-card {
        bottom: -20px;
        right: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-line {
        top: 0;
        left: 32px;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, var(--color-accent), var(--color-border), var(--color-accent));
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        text-align: left;
    }

    .process-number {
        margin: 0;
        flex-shrink: 0;
    }

    .process-content p {
        padding: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .testimonial-quote {
        font-size: 1.15rem;
    }
}

/* Mobile 480px */
@media (max-width: 480px) {
    :root {
        --space-3xl: 3rem;
        --container-pad: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

        .hero-cta .btn {
            width: 100%;
        }

    .hero-stats-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .hero-stat-divider {
        width: 100%;
        height: 1px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-bullets {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

        .cta-buttons .btn {
            width: 100%;
        }

    .trust-logos {
        gap: 1.5rem;
    }

    .trust-logo {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 42px;
        height: 42px;
    }
}

/* Small mobile 360px */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .contact-form-wrap {
        padding: 1.25rem;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {
    .logo-image {
        height: 42px;
        max-width: 150px;
    }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-logo-image {
    width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-weight: 600;
}

.footer-desc {
    max-width: 360px;
    line-height: 1.7;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        line-height: 1.6;
    }

        .footer-contact li i {
            margin-top: 5px;
            min-width: 18px;
        }

    .footer-contact a {
        text-decoration: none;
    }

/* ================= MOBILE HERO ================= */
@media (max-width: 768px) {

    
    .hero {
        background: url('/assets/img/mobile_hero_animated_slow.gif') center / cover no-repeat;
    }
        /* Animated blue network/glow layer */
        .hero::before {
            content: "";
            position: absolute;
            inset: -50%;
            background: radial-gradient(circle, rgba(0, 140, 255, 0.25) 1px, transparent 2px);
            background-size: 45px 45px;
            animation: networkMove 12s linear infinite;
            opacity: 0.5;
            pointer-events: none;
        }

        /* Floating glow */
        .hero::after {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            right: -80px;
            top: 20%;
            border-radius: 50%;
            background: rgba(0, 119, 255, 0.25);
            filter: blur(60px);
            animation: glowMove 5s ease-in-out infinite alternate;
            pointer-events: none;
        }

    /* Content above animation */
    .hero-left,
    .hero-right {
        position: relative;
        z-index: 2;
    }
}


/* Background animation */
@keyframes mobileHeroBG {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* Network movement */
@keyframes networkMove {

    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}


/* Glow movement */
@keyframes glowMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-80px, 50px) scale(1.3);
    }
}
/* =========================================================
   PREMIUM SERVICE DETAILS MODAL
   Theme: Dark Navy + Electric Blue
========================================================= */

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

    .service-modal.active {
        display: flex;
    }


/* =========================================================
   BACKDROP
========================================================= */

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 75% 25%, rgba(0, 112, 255, 0.16), transparent 35% ), rgba(3, 9, 22, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


/* =========================================================
   MODAL BOX
========================================================= */

.service-modal-box {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: linear-gradient( 145deg, rgba(15, 30, 55, 0.98), rgba(7, 17, 35, 0.98) );
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 123, 255, 0.04), 0 0 70px rgba(0, 102, 255, 0.10);
    transform: translateY(35px) scale(.94);
    opacity: 0;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.service-modal.active .service-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* =========================================================
   TOP GLOW
========================================================= */

.service-modal-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 119, 255, 0.16);
    filter: blur(70px);
    pointer-events: none;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    cursor: pointer;
    transition: all .3s ease;
}

    .service-modal-close:hover {
        color: #ffffff;
        background: #0866ff;
        border-color: #0866ff;
        transform: rotate(90deg);
        box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
    }


/* =========================================================
   ICON
========================================================= */

.service-modal-icon {
    position: relative;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #0877ff, #0045c7 );
    color: #ffffff;
    font-size: 25px;
    box-shadow: 0 12px 35px rgba(0, 105, 255, 0.32);
    overflow: hidden;
}

    .service-modal-icon::after {
        content: "";
        position: absolute;
        width: 80px;
        height: 80px;
        top: -45px;
        right: -45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
    }


/* =========================================================
   LABEL
========================================================= */

.service-modal-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #4da3ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .service-modal-label::before {
        content: "";
        width: 22px;
        height: 2px;
        background: #1683ff;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 130, 255, 0.7);
    }


/* =========================================================
   TITLE
========================================================= */

.service-modal-box h2 {
    position: relative;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.7px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.service-modal-description {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(220, 230, 245, 0.68);
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   CONTENT SECTION
========================================================= */

.service-modal-section {
    position: relative;
    margin-top: 25px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

    .service-modal-section h4 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 15px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
    }

        .service-modal-section h4 i {
            color: #1683ff;
            font-size: 14px;
            filter: drop-shadow(0 0 7px rgba(0, 128, 255, 0.5));
        }


    /* =========================================================
   FEATURES
========================================================= */

    .service-modal-section ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .service-modal-section ul li {
            position: relative;
            min-height: 45px;
            display: flex;
            align-items: center;
            padding: 11px 14px 11px 39px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.035);
            color: rgba(225, 233, 245, 0.75);
            font-size: 13px;
            transition: all .25s ease;
        }

            .service-modal-section ul li:hover {
                background: rgba(0, 113, 255, 0.09);
                border-color: rgba(0, 128, 255, 0.25);
                transform: translateX(3px);
            }

            .service-modal-section ul li::before {
                content: "\f00c";
                position: absolute;
                left: 14px;
                top: 50%;
                transform: translateY(-50%);
                width: 18px;
                height: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: rgba(0, 119, 255, 0.13);
                color: #3d9aff;
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                font-size: 9px;
            }


/* =========================================================
   BENEFITS
========================================================= */

.modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.modal-benefit {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid rgba(0, 128, 255, 0.20);
    border-radius: 30px;
    background: linear-gradient( 135deg, rgba(0, 119, 255, 0.13), rgba(0, 119, 255, 0.04) );
    color: #72b5ff;
    font-size: 12px;
    font-weight: 600;
    transition: .25s ease;
}

    .modal-benefit:hover {
        background: rgba(0, 119, 255, 0.18);
        border-color: rgba(0, 145, 255, 0.40);
        color: #ffffff;
    }


/* =========================================================
   FOOTER
========================================================= */

.service-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}


    /* =========================================================
   GET STARTED BUTTON
========================================================= */

    .service-modal-footer .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 21px;
        border: none;
        border-radius: 10px;
        background: linear-gradient( 135deg, #0877ff, #0051d4 );
        color: #ffffff;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 10px 28px rgba(0, 105, 255, 0.25);
        transition: all .3s ease;
    }

        .service-modal-footer .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 105, 255, 0.38);
        }

        .service-modal-footer .btn i {
            transition: transform .3s ease;
        }

        .service-modal-footer .btn:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   SCROLLBAR
========================================================= */

.service-modal-box::-webkit-scrollbar {
    width: 5px;
}

.service-modal-box::-webkit-scrollbar-track {
    background: transparent;
}

.service-modal-box::-webkit-scrollbar-thumb {
    background: rgba(0, 119, 255, 0.35);
    border-radius: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .service-modal {
        padding: 12px;
    }

    .service-modal-box {
        max-height: 92vh;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .service-modal-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .service-modal-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        border-radius: 15px;
        font-size: 21px;
    }

    .service-modal-box h2 {
        padding-right: 35px;
        font-size: 26px;
    }

    .service-modal-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .service-modal-section ul {
        grid-template-columns: 1fr;
    }

        .service-modal-section ul li {
            min-height: 42px;
        }

    .service-modal-footer {
        justify-content: stretch;
    }

        .service-modal-footer .btn {
            width: 100%;
            justify-content: center;
        }
}
/* =========================================================
   GOLD PREMIUM MODAL THEME
========================================================= */

/* Modal glow */
.service-modal-overlay {
    background: radial-gradient( circle at 75% 25%, rgba(212, 166, 64, 0.12), transparent 35% ), rgba(3, 9, 22, 0.88);
}


/* Top glow */
.service-modal-box::before {
    background: rgba(212, 166, 64, 0.12);
}


/* Close button */
.service-modal-close:hover {
    background: #d4a640;
    border-color: #d4a640;
    box-shadow: 0 8px 25px rgba(212, 166, 64, 0.30);
}


/* Modal icon */
.service-modal-icon {
    background: linear-gradient( 135deg, #e6bd5a, #b88624 );
    box-shadow: 0 12px 35px rgba(212, 166, 64, 0.28);
}


/* Label */
.service-modal-label {
    color: #dcb75a;
}

    .service-modal-label::before {
        background: #d4a640;
        box-shadow: 0 0 10px rgba(212, 166, 64, 0.65);
    }


/* Section icons */
.service-modal-section h4 i {
    color: #d4a640;
    filter: drop-shadow(0 0 7px rgba(212, 166, 64, 0.45));
}


/* Feature hover */
.service-modal-section ul li:hover {
    background: rgba(212, 166, 64, 0.07);
    border-color: rgba(212, 166, 64, 0.25);
}


/* Feature check icon */
.service-modal-section ul li::before {
    background: rgba(212, 166, 64, 0.12);
    color: #e0b84f;
}


/* Benefits */
.modal-benefit {
    border-color: rgba(212, 166, 64, 0.22);
    background: linear-gradient( 135deg, rgba(212, 166, 64, 0.13), rgba(212, 166, 64, 0.04) );
    color: #e2bd5c;
}

    .modal-benefit:hover {
        background: rgba(212, 166, 64, 0.16);
        border-color: rgba(212, 166, 64, 0.40);
        color: #ffffff;
    }


/* Get Started button */
.service-modal-footer .btn {
    background: linear-gradient( 135deg, #e5bd58, #b88624 );
    color: #101827;
    box-shadow: 0 10px 28px rgba(212, 166, 64, 0.25);
}

    .service-modal-footer .btn:hover {
        box-shadow: 0 15px 35px rgba(212, 166, 64, 0.38);
    }


/* Scrollbar */
.service-modal-box::-webkit-scrollbar-thumb {
    background: rgba(212, 166, 64, 0.40);
}
/* =========================================================
   FLOATING WHATSAPP + CALL BUTTONS
========================================================= */

.floating-contact {
    position: fixed;
    left: 22px;
    bottom: 25px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* Individual button */

.floating-btn {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform .3s ease, box-shadow .3s ease;
}


/* WhatsApp */

.floating-whatsapp {
    background: #25D366;
}

    .floating-whatsapp:hover {
        color: #ffffff;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    }


/* Call */

.floating-call {
    background: linear-gradient( 135deg, #e5bd58, #b88624 );
}

    .floating-call:hover {
        color: #ffffff;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 30px rgba(212, 166, 64, 0.38);
    }


/* =========================================================
   TOOLTIP
========================================================= */

.floating-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    padding: 7px 11px;
    border-radius: 7px;
    background: #0b1220;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
}

    .floating-tooltip::before {
        content: "";
        position: absolute;
        left: -5px;
        top: 50%;
        width: 10px;
        height: 10px;
        background: #0b1220;
        transform: translateY(-50%) rotate(45deg);
    }


.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .floating-contact {
        left: 14px;
        bottom: 18px;
        gap: 9px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    /* Tooltip mobile par hide */
    .floating-tooltip {
        display: none;
    }
}
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-img-wrap {
        aspect-ratio: 16 / 9;
    }
}