/* ==========================================
   Web Site Dükkanı - Custom Stylesheet
   ========================================== */

/* 1. Design System & CSS Variables */
:root {
    --primary: #ff7a00;
    --primary-hover: #e06c00;
    --primary-light: rgba(255, 122, 0, 0.1);
    --secondary: #ffaa00;
    --dark-bg: #070b13;
    --dark-card: #0e1626;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #e2e8f0;
    --border-color: #e2e8f0;
    --border-color-dark: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 20px rgba(255, 122, 0, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

section, footer {
    overflow-x: hidden; /* Prevent horizontal scroll from stray elements */
}

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

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

ul {
    list-style: none;
}

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

/* 3. Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }

.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--dark-bg);
}

.text-white {
    color: var(--white);
}

.font-accent {
    color: var(--primary);
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mt-20 { margin-top: 20px; }
.mt-50 { margin-top: 50px; }

/* Section Header Styles */
.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp.btn-pulse {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-icon-right i {
    transition: transform 0.3s ease;
}

.btn-icon-right:hover i {
    transform: translateX(5px);
}

/* Pulsing effect */
.btn-pulse {
    position: relative;
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 122, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
    }
}

/* 4. Header & Navbar Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.main-header.scrolled {
    background-color: rgba(7, 11, 19, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color-dark);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* 5. Hero Section */
.hero-section {
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 170, 0, 0.05) 0%, transparent 40%);
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10L90 90M90 10L10 90' stroke='rgba(255,255,255,0.015)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.badge-promo {
    display: inline-block;
    background-color: rgba(255, 122, 0, 0.12);
    color: var(--primary);
    border: 1px solid rgba(255, 122, 0, 0.25);
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Pricing and Delivery badges */
.hero-pricing-box {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.price-badge {
    background-color: rgba(14, 22, 38, 0.8);
    border: 2px solid rgba(255, 170, 0, 0.4);
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center layout horizontally */
    text-align: center;  /* Center text */
    backdrop-filter: blur(10px);
    animation: badgeGlowPulse 2s infinite alternate;
}

@keyframes badgeGlowPulse {
    0% {
        box-shadow: 0 0 8px rgba(255, 170, 0, 0.2);
        border-color: rgba(255, 170, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 170, 0, 0.55);
        border-color: rgba(255, 170, 0, 0.95);
    }
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.price-val {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-val .number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-val .currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.delivery-badge {
    background-color: rgba(14, 22, 38, 0.8);
    border: 2px solid var(--primary);
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally on mobile and desktop */
    gap: 15px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glow);
}

.delivery-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.delivery-text {
    display: flex;
    flex-direction: column;
}

.delivery-text .unit {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.delivery-text .action {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px; /* 3D depth */
    width: 100%;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 38% 62% !important;
        align-items: center;
    }
    .hero-image-wrapper {
        transform: scale(1.8) translateX(20px); /* 1.8 times larger */
        transform-origin: center right;
    }
}

.hero-mockup-img {
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Floating drifting gradient glow orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.orb-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.22) 0%, transparent 70%);
    top: 10%;
    right: 15%;
    animation: orbDrift1 12s ease-in-out infinite alternate;
}

.orb-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 170, 0, 0.15) 0%, transparent 70%);
    bottom: 15%;
    left: 10%;
    animation: orbDrift2 16s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-35px, 45px) scale(1.15);
    }
}

@keyframes orbDrift2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(45px, -35px) scale(1.2);
    }
}


.floating-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

/* 6. Stats Bar */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-bottom: 50px;
}

.stats-card-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -15px;
    width: 1px;
    height: 60%;
    background-color: var(--border-color);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* 7. Services Section */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08), var(--shadow-glow);
    border-color: var(--primary);
}

.service-card-icon-wrap {
    width: 65px;
    height: 65px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon-wrap {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.font-accent-title {
    font-weight: 800;
}

/* 8. Why Us Section */
.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    font-weight: 500;
}

.check-icon-orange {
    width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.why-us-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-mockup-img {
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    border-radius: 12px;
}

.workspace-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

/* 9. Portfolio Section */
.portfolio-grid {
    margin-top: 50px;
}

.portfolio-item {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 122, 0, 0.2);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.06);
}

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 19, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.portfolio-item:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background-color: var(--primary-hover);
}

.portfolio-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.portfolio-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* 10. Workflow Section */
.workflow-section {
    background-color: var(--light-bg);
}

.workflow-timeline {
    margin-top: 60px;
    position: relative;
}

/* Dotted Connector Line */
.workflow-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary) 30%, rgba(255,122,0,0.15) 30%);
    background-size: 15px 100%;
    z-index: 1;
}

.workflow-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.workflow-icon-wrap {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.workflow-step:hover .workflow-icon-wrap {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.step-num {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.workflow-step:hover .step-num {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.workflow-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.workflow-step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 15px;
}

/* 11. Bottom Promotional CTA Section */
.bottom-cta-section {
    border-top: 1px solid var(--border-color-dark);
    position: relative;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
}

.cta-action-btn-wrap {
    width: 100%;
}

.cta-features-grid {
    width: 100%;
    gap: 15px;
    margin-top: 15px;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 10px;
    border-radius: 12px;
    transition: var(--transition);
}

.cta-feature-item:hover {
    background-color: rgba(255, 122, 0, 0.08);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.cta-feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cta-feature-item span {
    font-size: 0.82rem;
    font-weight: 600;
}

/* 12. Footer Section */
.footer {
    border-top: 1px solid var(--border-color-dark);
    padding-bottom: 30px;
}

.footer-grid {
    gap: 40px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

.contact-info i {
    color: var(--primary);
    font-size: 1.05rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.15);
}

/* 13. Entrance / Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.fade-left {
    transform: translateX(-40px);
}

.scroll-reveal.fade-right {
    transform: translateX(40px);
}

.scroll-reveal.fade-up {
    transform: translateY(40px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* 14. Responsive Breakpoints */

/* Responsive: 1024px and down (Tablets / Laptops) */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .workflow-timeline::before {
        display: none;
    }
    
    .stats-card-wrapper {
        margin-top: -30px;
    }
}

/* Responsive: 768px and down (Small Tablets / Phones) */
@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    /* Header Mobile Styles */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .navbar {
        display: none !important; /* Hide desktop nav on mobile to prevent horizontal overflow */
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .main-header {
        background-color: var(--dark-bg);
        border-bottom: 1px solid var(--border-color-dark);
    }
    
    /* Mobile Toggle animation */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero section */
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-features li {
        justify-content: center;
    }
    
    .hero-pricing-box {
        justify-content: center;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stats-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    /* Why us */
    .why-us-content {
        order: 1;
    }
    
    .why-us-image {
        order: 2;
        margin-top: 30px;
    }
    
    /* CTA */
    .cta-right {
        align-items: center;
    }
    
    /* Footer bottom */
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Responsive: 480px and down (Smartphones) */
@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-card-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-pricing-box {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .price-badge, .delivery-badge {
        width: 100%;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
}

/* ==========================================
   15. Interactive Hero Mockup & Details Page Styles
   ========================================== */

/* Service Card Detail Links */
.service-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.service-detail-link:hover {
    color: var(--primary-hover);
    gap: 12px;
}

.portfolio-detail-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-detail-btn:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Subpage Breadcrumb */
.breadcrumb-section {
    padding: 150px 0 60px 0;
    text-align: center;
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle at 50% 120%, rgba(255, 122, 0, 0.12) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-color-dark);
}

.breadcrumb-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.breadcrumb-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.breadcrumb-links a {
    color: rgba(255, 255, 255, 0.55);
}

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

.breadcrumb-links .sep {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-links .current {
    color: var(--white);
    font-weight: 600;
}

/* Subpage Detail Layout */
.grid-3-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.detail-main-content {
    background-color: var(--white);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 35px;
}

.service-detail-icon {
    width: 68px;
    height: 68px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(255, 122, 0, 0.15);
}

.service-title-h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.service-rich-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.service-rich-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
}

.service-rich-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-rich-text ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 1rem;
}

.service-rich-text ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.25rem;
    top: -2px;
}

.service-detail-mockup {
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.detail-section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.detail-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.detail-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-dark);
}

/* Accordion FAQ Styling */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.05);
}

.accordion-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.accordion-item.active .accordion-header h4 {
    color: var(--primary);
}

.acc-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.35s ease;
}

.accordion-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--light-bg);
}

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.accordion-body p {
    padding: 24px 28px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
}

/* Sidebar Widgets */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget.bg-dark {
    background-color: var(--dark-card);
    border-color: var(--border-color-dark);
}

.widget-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-widget.bg-dark .widget-title {
    border-bottom-color: var(--border-color-dark);
    color: var(--white) !important;
}

.sidebar-links-list li {
    margin-bottom: 12px;
}

.sidebar-links-list a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid transparent;
    transition: var(--transition);
}

.sidebar-links-list a:hover, .sidebar-links-list a.active {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    padding-left: 25px;
}

.widget-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.sidebar-quote-form .form-group {
    margin-bottom: 18px;
}

.sidebar-quote-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-quote-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.sidebar-quote-form input::placeholder {
    color: #a0aec0;
}

.sidebar-quote-form input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.btn-full {
    width: 100%;
}

/* Portfolio Spec Details */
.project-detail-hero-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.project-category-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(255, 122, 0, 0.2);
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.project-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.project-specs-table td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.project-specs-table tr:last-child td {
    border-bottom: none;
}

.project-specs-table td:first-child {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-specs-table td:first-child i {
    width: 18px;
}

.project-specs-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.badge-active {
    background-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.project-testimonial-block {
    padding: 40px;
    border-radius: 20px;
    background-color: var(--light-bg);
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Tablet & Mobile responsive subpages */
@media (max-width: 991px) {
    .grid-3-col {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .detail-features-list {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-title {
        font-size: 2.25rem;
    }
    
    .hero-slider {
        height: 280px;
    }
}

/* Portfolio Page Filter Tabs */
.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.portfolio-title-h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}

.portfolio-cat {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.portfolio-desc-p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* ==========================================
   16. SVG Neon Light Trails & Sparks Styles
   ========================================== */

.tilt-element-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Override image transform to be inside wrapper */
.hero-image-wrapper .hero-mockup-img {
    transition: none;
    transform: none !important;
}

.light-trails-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
    transform: translateZ(30px); /* Floats above laptop */
}

.light-trail-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawTrail 8s linear infinite;
}

.light-trail-path-2 {
    stroke-dasharray: 800;
    stroke-dashoffset: -800;
    animation: drawTrail2 10s linear infinite;
    opacity: 0.7;
}

@keyframes drawTrail {
    0% {
        stroke-dashoffset: 2000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawTrail2 {
    0% {
        stroke-dashoffset: -1600;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Tiny Sparks */
.sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    transform: translateZ(40px);
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #ffa500;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff7a00, 0 0 15px #ff7a00;
    animation: floatSpark 4s ease-in-out infinite;
    opacity: 0;
}

.s-1 { top: 70%; left: 20%; animation-delay: 0s; }
.s-2 { top: 40%; left: 45%; animation-delay: 1.5s; }
.s-3 { top: 30%; left: 75%; animation-delay: 0.8s; }
.s-4 { top: 60%; left: 60%; animation-delay: 2.2s; }
.s-5 { top: 80%; left: 40%; animation-delay: 3s; }
.s-6 { top: 20%; left: 30%; animation-delay: 1.2s; }

@keyframes floatSpark {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translate(-30px, -40px) scale(1.2);
        opacity: 0.85;
    }
        transform: translate(-60px, -80px) scale(0.2);
        opacity: 0;
    }
}

/* ==========================================
   17. Desktop Mega Menu & Mobile Drawer Styles
   ========================================== */

/* Desktop Mega Menu Positioning */
.main-header .nav-menu {
    position: relative;
}

.nav-menu li.has-mega-menu {
    position: static; /* Allows mega menu to align to the header container */
}

.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(14, 22, 38, 0.96);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary);
    border-left: 1px solid var(--border-color-dark);
    border-right: 1px solid var(--border-color-dark);
    border-radius: 0 0 16px 16px;
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.has-mega-menu:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Grid Layouts */
.mega-menu-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    transition: var(--transition);
}

.mega-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.mega-menu-item i {
    font-size: 1.35rem;
    color: var(--primary);
    margin-top: 3px;
}

.mega-menu-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.mega-menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Mega Menu for References */
.mega-menu-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.mega-menu-ref-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    transition: var(--transition);
}

.mega-menu-ref-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.mega-menu-ref-img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

.mega-menu-ref-title {
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    background-color: rgba(0,0,0,0.2);
}


/* ==========================================
   Mobile Navigation Drawer (High Fidelity)
   ========================================== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.mobile-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

/* Drawer Backdrop Blur */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 19, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color-dark);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Drawer Nav Menu */
.drawer-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.drawer-nav-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    cursor: pointer;
}

.drawer-nav-link .link-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.drawer-nav-link .link-main i {
    width: 20px;
    color: var(--text-muted);
    font-size: 1.15rem;
    transition: var(--transition);
}

.drawer-nav-link:hover, 
.drawer-nav-link.active, 
.drawer-nav-item.expanded > .drawer-nav-link {
    color: var(--primary);
}

.drawer-nav-link:hover .link-main i, 
.drawer-nav-link.active .link-main i,
.drawer-nav-item.expanded > .drawer-nav-link .link-main i {
    color: var(--primary);
}

.drawer-arrow-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.drawer-nav-item.expanded > .drawer-nav-link .drawer-arrow-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Accordion Dropdown Content */
.drawer-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-nav-item.expanded .drawer-dropdown-content {
    max-height: 520px; /* Fits all cards or links */
}

/* Services 3x2 Grid inside Mobile Drawer */
.drawer-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px 5px 20px 5px;
}

.drawer-service-card {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color-dark);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.drawer-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.drawer-service-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.drawer-service-card span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

/* References List inside Mobile Drawer */
.drawer-ref-links {
    padding: 5px 5px 20px 5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer-ref-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.drawer-ref-sublink:hover {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--white);
    padding-left: 18px;
}

.drawer-ref-sublink i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Drawer Bottom Promotional Box */
.drawer-promo-box {
    background-color: var(--dark-card);
    border: 1px solid var(--border-color-dark);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.drawer-promo-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.drawer-promo-text {
    display: flex;
    flex-direction: column;
}

.drawer-promo-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.drawer-promo-desc {
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 600;
}

.drawer-promo-desc span {
    color: var(--primary);
}

/* Drawer WhatsApp CTA Button */
.btn-drawer-whatsapp {
    background-color: #ff7a00; /* Matching orange button color in screenshot */
    color: var(--white);
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.25);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-drawer-whatsapp:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

/* Adjust header bar height on mobile to make room */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0 !important;
    }
}

/* ==========================================
   18. Mobile Floating Bottom Capsule Navigation
   ========================================== */

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 110px !important; /* Prevent page content from being hidden behind bar */
    }

    .mobile-bottom-nav {
        display: block;
        position: fixed;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        max-width: 420px;
        height: 72px;
        background: linear-gradient(135deg, #ff8c00, #ff5500);
        border-radius: 50px;
        z-index: 1990;
        box-shadow: 0 12px 35px rgba(255, 85, 0, 0.4), 0 5px 15px rgba(0,0,0,0.35);
        padding: 0 8px;
    }

    .bottom-nav-container {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        border: none;
        background: transparent;
        font-family: var(--font-heading);
        font-size: 0.65rem;
        font-weight: 700;
        gap: 5px;
        flex: 1 1 0px !important;
        cursor: pointer;
        transition: transform 0.2s ease, opacity 0.2s;
        outline: none;
    }

    .bottom-nav-item i {
        font-size: 1.25rem;
    }

    .bottom-nav-item:active {
        transform: scale(0.9);
        opacity: 0.8;
    }

    .bottom-nav-divider {
        flex: 0 0 1px !important;
        width: 1px !important;
        height: 26px;
        background-color: rgba(255, 255, 255, 0.25);
    }

    /* Protruding center button */
    .bottom-nav-center-wrap {
        position: relative;
        flex: 0 0 78px !important;
        width: 78px !important;
        height: 78px;
        top: -18px;
        background: linear-gradient(135deg, #ff8c00, #ff5500);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(255, 85, 0, 0.4);
        z-index: 10;
        margin: 0 2px;
    }

    .whatsapp-btn-inner {
        width: 62px;
        height: 62px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    .whatsapp-btn-inner:active {
        transform: scale(0.9);
    }

    .bottom-nav-whatsapp-btn {
        width: 48px;
        height: 48px;
        background-color: #25d366; /* Official WhatsApp green */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.85rem;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
        border: none;
        outline: none;
    }
}

/* ==========================================
   19. Mockup Browser Frame Styles (References)
   ========================================== */

.portfolio-mockup-frame {
    background-color: #0b111e;
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--border-color-dark);
    border-bottom: none;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color-dark);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-header .dot.red { background-color: #ff5f56; }
.mockup-header .dot.yellow { background-color: #ffbd2e; }
.mockup-header .dot.green { background-color: #27c93f; }

.mockup-url-bar {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-light);
    padding: 3px 20px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-body {
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.05) 0%, transparent 80%);
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.mockup-globe-icon {
    font-size: 2.25rem;
    color: var(--primary);
    opacity: 0.85;
    transition: var(--transition);
}

.mockup-domain-large {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.mockup-click-visit {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Hover effects */
.portfolio-item:hover .portfolio-mockup-frame {
    border-color: rgba(255, 122, 0, 0.3);
}

.portfolio-item:hover .mockup-body {
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.1) 0%, transparent 80%);
}

.portfolio-item:hover .mockup-globe-icon {
    transform: rotate(20deg) scale(1.1);
    color: var(--secondary);
}

.portfolio-item:hover .mockup-domain-large {
    color: var(--primary);
}

/* Override portfolio item card structure for grid wrapper */
.portfolio-item {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}/* Custom Screenshot hover scaling and overlay effects */
.portfolio-item:hover .mockup-body img {
    transform: scale(1.06);
}

.portfolio-item:hover .mockup-overlay {
    opacity: 1 !important;
}

/* Detail page mockup image adjustments */
.detail-mockup-body {
    display: block !important;
}

.detail-mockup-body img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block;
}
