/* ========================================
   WeBWI Website - Custom CSS
   Theme: Gunung Ijen Blue Fire
   Colors: Pink, Black, Cyan
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

:root {
    /* Brand Colors */
    --color-pink: #FF1493;
    --color-pink-light: #FF69B4;
    --color-pink-dark: #C71585;
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-cyan: #00D9FF;
    --color-cyan-dark: #00A8CC;
    --color-cyan-light: #5DFDFF;
    --color-white: #ffffff;
    --color-gray: #cccccc;
    --color-gray-dark: #666666;

    /* Gradients */
    --gradient-ijen: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #00D9FF 100%);
    --gradient-pink: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    --gradient-cyan: linear-gradient(135deg, #00A8CC 0%, #00D9FF 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-pink: 0 0 30px rgba(255, 20, 147, 0.3);
    --shadow-cyan: 0 0 30px rgba(0, 217, 255, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: var(--font-primary);
    background: linear-gradient(135deg,
            rgba(10, 30, 50, 1) 0%,
            rgba(15, 40, 60, 1) 50%,
            rgba(20, 50, 70, 1) 100%);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-sizing: border-box !important;
}

/* Custom Scrollbar - Ijen Blue-Grey Smoke Theme */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(20, 30, 40, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            rgba(100, 120, 140, 0.8) 0%,
            rgba(60, 80, 100, 0.9) 50%,
            rgba(40, 60, 80, 0.8) 100%);
    border-radius: 6px;
    border: 2px solid rgba(20, 30, 40, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            rgba(120, 140, 160, 0.9) 0%,
            rgba(80, 100, 120, 1) 50%,
            rgba(60, 80, 100, 0.9) 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 100, 120, 0.9) rgba(20, 30, 40, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.lang-btn.active {
    background: var(--gradient-pink);
    box-shadow: var(--shadow-pink);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-normal);
}

.nav-brand .logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--color-pink));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-pink);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hide mobile menu on desktop by default */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    .nav-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 !important;
}

.cursor-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: heroBreathing 8s ease-in-out infinite;
}

@keyframes heroBreathing {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 100%;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-pink) 50%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    opacity: 1 !important;
    transform: none !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 1 !important;
    transform: none !important;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--color-cyan);
    animation: bounce 2s infinite;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--color-white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 40px rgba(255, 20, 147, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-cyan);
}

.btn-secondary:hover {
    background: var(--gradient-cyan);
    border-color: transparent;
    box-shadow: var(--shadow-cyan);
}

.btn-outline {
    background: transparent;
    color: var(--color-pink);
    border-color: var(--color-pink);
}

.btn-outline:hover {
    background: var(--gradient-pink);
    color: var(--color-white);
    border-color: transparent;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-line {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--color-gray);
    opacity: 0;
    transform: translateY(30px);
}

.about-line strong {
    color: var(--color-white);
    font-weight: 700;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-ijen);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.2),
        0 0 40px rgba(0, 217, 255, 0.1);
}

.service-card.featured {
    border: 1.5px solid rgba(255, 20, 147, 0.4);
    background: rgba(255, 20, 147, 0.05);
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--gradient-pink);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    z-index: 10;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-card .btn-outline {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-pink);
    border-color: transparent;
    box-shadow: var(--shadow-pink);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    perspective: 1000px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}



.portfolio-item:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.3),
        0 0 50px rgba(0, 217, 255, 0.2);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 20px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.15);
    filter: blur(3px);
}

.portfolio-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h4 {
    transform: translateY(0);
}

.portfolio-overlay p {
    color: var(--color-white);
    text-align: center;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-ijen);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-method {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: var(--color-pink);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.2);
}

.contact-method .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-white);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.contact-details a,
.contact-details p {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
    transition: color var(--transition-normal);
}

.contact-details a:hover {
    color: var(--color-pink);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-cyan) !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

.map-link:hover {
    color: var(--color-pink) !important;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.2);
}

.google-map {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s ease;
}

.contact-map:hover .google-map {
    filter: grayscale(0%) contrast(1.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-black);
    padding: var(--spacing-md) 0 var(--spacing-sm);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-pink);
}

.footer-links ul {
    list-style: none;
}

.footer-links a,
.footer-contact p {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.8;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-pink);
}

.footer-contact p i {
    margin-right: 0.5rem;
    color: var(--color-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--color-gray-dark);
    font-size: 0.875rem;
}

/* ========================================
   MODALS
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: var(--spacing-lg);
    animation: modalSlideUp 0.3s ease;
}

.modal-content.glass {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--color-pink);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: var(--spacing-md);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.modal-body strong {
    color: var(--color-white);
}

/* Contact Modal Specific */
.contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--glass-bg);
    border-radius: 15px;
    margin-bottom: var(--spacing-sm);
}

.contact-method i {
    font-size: 2rem;
    color: var(--color-cyan);
}

.contact-method h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color var(--transition-normal);
    display: block;
}

.contact-method a:hover {
    color: var(--color-pink);
}

/* Contact Form */
.contact-form {
    margin-top: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 400px;
    }
}

/* ========================================
   macOS STYLE MOBILE MENU
   ======================================== */

/* Overlay Backdrop */
.nav-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tablet Menu Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Show mobile menu toggle on tablets */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        /* Center-positioned modal - USE VIEWPORT UNITS */
        position: fixed;
        top: 50vh;
        left: 50vw;
        transform: translate(-50%, -50%) scale(0.95);

        /* Glassmorphism Effect */
        background: linear-gradient(135deg,
                rgba(40, 40, 50, 0.95) 0%,
                rgba(30, 30, 40, 0.98) 100%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);

        /* Layout */
        width: 80%;
        max-width: 500px;
        max-height: 80vh;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;

        /* Premium Border & Shadow */
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);

        /* Animation */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 998;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(-50%, -50%) scale(1) !important;
        top: 50vh !important;
        left: 50vw !important;
    }

    /* Menu Items - Stagger Animation */
    .nav-menu li {
        list-style: none;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger Delays */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }

    /* Enhanced Menu Links */
    .nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 1.125rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(255, 20, 147, 0.2),
                rgba(0, 217, 255, 0.2));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-link::after {
        display: none;
        /* Remove underline effect on mobile */
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-cyan);
        transform: translateX(5px);
    }

    .nav-link:hover::before {
        opacity: 1;
    }

    /* Download Button - Special Styling */
    .nav-download {
        background: linear-gradient(135deg, #FF1493, #FF69B4) !important;
        color: white !important;
        margin-top: 1rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    }

    .nav-download:hover {
        transform: translateX(0) scale(1.02) !important;
        box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5) !important;
    }

    /* Mobile Menu Toggle Animation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 999;
    }

    .mobile-menu-toggle span {
        background: #ffffff !important;
        width: 28px !important;
        height: 3px !important;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Mobile Menu Styles - UPDATED FOR MOBILE */
@media (max-width: 768px) {
    /* Show mobile menu toggle on mobile devices */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        /* Center-positioned modal - USE VIEWPORT UNITS */
        position: fixed;
        top: 50vh;
        left: 50vw;
        transform: translate(-50%, -50%) scale(0.95);

        /* Glassmorphism Effect */
        background: linear-gradient(135deg,
                rgba(40, 40, 50, 0.95) 0%,
                rgba(30, 30, 40, 0.98) 100%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);

        /* Layout */
        width: 90%;
        max-width: 420px;
        max-height: 80vh;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;

        /* Premium Border & Shadow */
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.6),
            0 10px 30px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);

        /* Animation */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 998;
        overflow-y: auto;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(-50%, -50%) scale(1) !important;
        top: 50vh !important;
        left: 50vw !important;
    }

    /* Menu Items - Stagger Animation */
    .nav-menu li {
        list-style: none;
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger Delays */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    /* Enhanced Menu Links */
    .nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 1.125rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(255, 20, 147, 0.2),
                rgba(0, 217, 255, 0.2));
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .nav-link::after {
        display: none;
        /* Remove underline effect on mobile */
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-cyan);
        transform: translateX(5px);
    }

    .nav-link:hover::before {
        opacity: 1;
    }

    /* Download Button - Special Styling */
    .nav-download {
        background: linear-gradient(135deg, #FF1493, #FF69B4) !important;
        color: white !important;
        margin-top: 1rem;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    }

    .nav-download:hover {
        transform: translateX(0) scale(1.02) !important;
        box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5) !important;
    }

    /* Mobile Menu Toggle Animation */
    .mobile-menu-toggle {
        display: flex;
        z-index: 999;
    }

    .mobile-menu-toggle span {
        background: #ffffff !important;
        width: 28px !important;
        height: 3px !important;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Other Mobile Adjustments */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .language-switcher {
        top: 90px;
        right: 10px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ========================================
   LANDSCAPE TABLET OPTIMIZATION
   ======================================== */
@media (max-width: 1024px) and (orientation: landscape) {
    .nav-menu {
        max-width: 600px;
        max-height: 75vh;
        padding: 2rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .nav-menu li {
        width: calc(50% - 0.375rem);
        flex-shrink: 0;
    }

    .nav-menu li:last-child {
        width: 100%;
    }

    .nav-link {
        text-align: center;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav-download {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        padding: var(--spacing-md);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-pink {
    color: var(--color-pink);
}

.text-cyan {
    color: var(--color-cyan);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   INNER PAGE STYLES (Services & Blog)
   ======================================== */

.navbar-inner {
    background: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-inner .nav-link {
    color: var(--color-dark) !important;
}

.navbar-inner .nav-link:hover,
.navbar-inner .nav-link.active {
    color: var(--color-pink) !important;
}

/* Service Hero */
.service-hero {
    background: var(--gradient-ijen);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--color-white);
}

.service-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.service-hero.featured-service {
    background: linear-gradient(135deg, #FF1493 0%, #00D9FF 100%);
}

.service-hero .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Service Content */
.service-content {
    padding: 80px 0;
    background: var(--color-white);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.service-main h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--color-dark);
    margin: 2rem 0 1rem;
}

.service-main h2:first-child {
    margin-top: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-pink);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.type-card {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.type-card:hover {
    border-color: var(--color-pink);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.1);
}

.type-card h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.type-card h3 i {
    color: var(--color-cyan);
    margin-right: 10px;
}

.type-card p {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.type-card .price {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-cyan);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cta-box {
    background: var(--gradient-ijen);
    padding: 30px;
    border-radius: 16px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-box .btn {
    display: block;
    margin-bottom: 10px;
}

.info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.info-box h4 {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    margin-bottom: 10px;
}

.info-box a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.info-box a:hover {
    color: var(--color-pink);
}

/* ========================================
   BLOG STYLES
   ======================================== */

.blog-hero {
    background: var(--gradient-ijen);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--color-white);
}

.blog-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
}

.blog-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .blog-info {
    padding: 15px 20px 0;
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
}

.blog-category {
    color: var(--color-pink);
    font-weight: 600;
}

.blog-date {
    color: var(--color-gray-dark);
}

.blog-card h2 {
    padding: 10px 20px;
    font-size: 1.2rem;
}

.blog-card h2 a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--color-pink);
}

.blog-card p {
    padding: 0 20px;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

.read-more {
    display: block;
    padding: 15px 20px;
    color: var(--color-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--color-pink);
}

/* Article Page */
.blog-article {
    padding: 120px 0 60px;
    background: white;
}

.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.article-header .category {
    display: inline-block;
    background: var(--color-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

.article-meta i {
    margin-right: 5px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content .lead {
    font-size: 1.25rem;
    color: var(--color-dark);
    font-weight: 500;
}

.article-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin: 2rem 0 0.5rem;
}

.article-content ul {
    margin: 1rem 0 2rem 1.5rem;
}

.article-content ul li {
    margin-bottom: 0.5rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: var(--color-dark);
    color: white;
}

.price-table tr:hover {
    background: #f8f9fa;
}

.cta-inline {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--color-pink);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 2rem 0;
}

.cta-inline h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.cta-inline p {
    color: var(--color-gray-dark);
    margin-bottom: 1rem !important;
}

.article-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tags a,
.share a {
    display: inline-block;
    padding: 5px 12px;
    background: #f8f9fa;
    border-radius: 20px;
    color: var(--color-gray-dark);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 5px;
    transition: all 0.3s;
}

.tags a:hover,
.share a:hover {
    background: var(--color-pink);
    color: white;
}

.related-articles {
    padding: 40px 0;
    background: #f8f9fa;
}

.related-articles h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.related-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-dark);
    transition: all 0.3s;
}

.related-card:hover {
    background: var(--color-pink);
    color: white;
}

/* Responsive for inner pages */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: relative;
        top: 0;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .service-hero h1,
    .blog-hero h1 {
        font-size: 2rem;
    }

    .service-types {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   macOS STYLE POPUP GALLERY
   ======================================== */

/* Popup Overlay */
.macos-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.macos-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* macOS Window */
.macos-window {
    background: linear-gradient(180deg, rgba(40, 40, 45, 0.95) 0%, rgba(30, 30, 35, 0.98) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.macos-popup-overlay.active .macos-window {
    transform: scale(1) translateY(0);
}

/* macOS Title Bar */
.macos-titlebar {
    background: linear-gradient(180deg, rgba(60, 60, 65, 1) 0%, rgba(50, 50, 55, 1) 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Traffic Lights */
.macos-traffic-lights {
    display: flex;
    gap: 8px;
}

.macos-traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.15s ease;
}

.macos-traffic-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.macos-traffic-lights:hover .macos-traffic-light::before {
    opacity: 1;
}

.macos-traffic-light.close {
    background: linear-gradient(180deg, #FF5F56 0%, #E0443D 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.macos-traffic-light.close::before {
    content: '×';
    font-size: 10px;
    font-weight: bold;
    color: rgba(70, 0, 0, 0.8);
}

.macos-traffic-light.minimize {
    background: linear-gradient(180deg, #FFBD2E 0%, #DEA123 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.macos-traffic-light.minimize::before {
    content: '−';
    font-size: 12px;
    font-weight: bold;
    color: rgba(100, 60, 0, 0.8);
}

.macos-traffic-light.maximize {
    background: linear-gradient(180deg, #27C93F 0%, #1FAD2E 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.macos-traffic-light.maximize::before {
    content: '+';
    font-size: 10px;
    font-weight: bold;
    color: rgba(0, 70, 0, 0.8);
}

/* Window Title */
.macos-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

/* Window Content */
.macos-content {
    padding: 24px;
    max-height: calc(85vh - 60px);
    overflow-y: auto;
}

.macos-content::-webkit-scrollbar {
    width: 8px;
}

.macos-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Gallery Header */
.gallery-header {
    margin-bottom: 20px;
}

.gallery-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.gallery-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.gallery-item-overlay h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin: 0;
}

.gallery-item-overlay span {
    font-size: 0.75rem;
    color: var(--color-cyan);
}

/* Fullscreen Viewer */
.fullscreen-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fullscreen-viewer.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-image {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fullscreen-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.fullscreen-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.fullscreen-title h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

/* Navigation Arrows */
.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fullscreen-nav.prev {
    left: 30px;
}

.fullscreen-nav.next {
    right: 30px;
}

/* Portfolio Link Style */
.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-visit {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--color-cyan);
    font-weight: 500;
}

.portfolio-visit i {
    margin-left: 5px;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .macos-window {
        max-width: 100%;
        margin: 10px;
        max-height: 90vh;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .fullscreen-nav {
        width: 40px;
        height: 40px;
    }

    .fullscreen-nav.prev {
        left: 10px;
    }

    .fullscreen-nav.next {
        right: 10px;
    }
}