/* ===== CSS Variables & Theme System ===== */
:root {
    /* Gold colors - Aggressive Premium */
    --gold-primary: #FFD700;
    /* Brighter gold */
    --gold-dark: #B8860B;
    --gold-light: #FFE55C;
    --gold-accent: #FFA500;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --gold-gradient-vibrant: linear-gradient(135deg, #FFE55C 0%, #FFD700 50%, #B8860B 100%);
    --gold-shimmer: linear-gradient(90deg, #FFD700 0%, #FFF 25%, #FFD700 50%, #FFF 75%, #FFD700 100%);
    --gold-glow: rgba(255, 215, 0, 0.6);
    --gold-glow-strong: rgba(255, 215, 0, 0.8);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-tech: 'Courier New', monospace;
    /* Added for tech badges */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 5rem;
    /* Reduced from 8rem for better spacing */

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border radius - Tech/Cyber = sharper */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 16px;

    /* Glassmorphism - Darker/Tech */
    --glass-bg: rgba(15, 16, 20, 0.85);
    --glass-border: rgba(255, 215, 0, 0.3);
    --glass-blur: blur(12px);
}

/* Dark Theme (default) */
:root {
    --bg-primary: #0f1014;
    /* Deep Cyber Black */
    --bg-secondary: #0a0a0c;
    --bg-tertiary: #16181d;
    --bg-card: rgba(20, 20, 25, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 215, 0, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.8);
    --accent: var(--gold-primary);
    --accent-hover: var(--gold-light);
}

/* Responsive Spacing Adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        /* Reduced from 5rem */
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
        --spacing-sm: 0.75rem;
    }
}

.container {
    padding: 0 var(--spacing-sm) !important;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 90%;
    /* Scale everything down to match 90% zoom proportions */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    transition: background var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    /* Bolder */
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    /* Aggressive */
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--text-primary);
    /* Default to white, accent added if needed */
}

h3 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Gold text effect */
.gold-text {
    background: var(--gold-gradient-vibrant);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    font-weight: 800;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--gold-glow);
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: var(--spacing-md) auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Glassmorphism Effects ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 4px 30px var(--shadow-color);
}

.logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-fast);
}

.logo-dark {
    display: block;
}

.logo-light {
    display: none;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: var(--spacing-xs) 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition-fast);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width var(--transition-normal);
    box-shadow: 0 0 10px var(--gold-glow);
}

nav ul li a:hover {
    color: var(--text-primary);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--accent);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    height: 100vh;
    /* Force exact fit */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--spacing-md);
    /* Remove vertical padding to let flex center it */
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Dedicated Background Image for Blur/Filter support */
/* Dedicated Background Image for Blur/Filter support */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/gallery-2.jpg');
    background-size: cover;
    background-position: center center;
    /* Stronger contrast and slight saturation boost for "Drift" vibe */
    filter: brightness(0.4) blur(3px) contrast(1.1) saturate(1.1);
    /* Blurred & Dimmed for readability */
    transform: scale(1.1);
    will-change: transform;
    z-index: 0;
}

/* Smoke Overlay Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(20, 20, 20, 0.4) 0%, rgba(20, 20, 20, 0.1) 50%, rgba(20, 20, 20, 0.4) 100%);
    background-size: 200% 200%;
    animation: smokeShift 15s ease infinite;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes smokeShift {
    0% {
        background-position: 0% 50%;
        opacity: 0.6;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }

    100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
}

/* TV Scanline Overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    z-index: 2;
    /* Layer on top of smoke */
    pointer-events: none;
    opacity: 0.4;
}

/* Vignette */
.hero-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 85%, #000 100%);
    z-index: 1;
}

/* --- Hero Typography --- */
.hero-content-centered {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    /* Wider for impact */
    margin: 0 auto;
    padding: 0;
    margin-top: 60px;
    /* Balanced offset for header */
}

/* Tech Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(229, 168, 0, 0.4);
    box-shadow: 0 0 15px rgba(229, 168, 0, 0.15);
    border-radius: 4px;
    /* Tech look: reduced radius */
    font-family: 'Courier New', monospace;
    /* Tech vibe */
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

/* Scanning line in badge */
.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 168, 0, 0.3), transparent);
    animation: scanBadge 3s infinite;
}

@keyframes scanBadge {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Main Heading */
.hero-content-centered h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 0.95;
    /* Aggressive tight leading */
    margin-bottom: 3rem;
    /* Adjusted for better proximity */
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Metallic Gold Text with Glitch Potential */
.gold-text {
    background: linear-gradient(to bottom, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    position: relative;
    display: inline-block;
}

/* Force block display for gold-text within hero h1 */
.hero-content-centered h1 .gold-text {
    display: block !important;
}

/* Glitch Animation Keyframes */
@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    20% {
        transform: skew(-2deg);
    }

    40% {
        transform: skew(2deg);
    }

    60% {
        transform: skew(-1deg);
    }

    80% {
        transform: skew(1deg);
    }

    100% {
        transform: skew(0deg);
    }
}

.gold-text::before,
.gold-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    /* Matches bg to hide main text underneath */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
}

.gold-text::before {
    left: 2px;
    text-shadow: -1px 0 rgba(255, 255, 255, 0.4);
    /* White ghosting */
    animation: glitch-skew 2s infinite linear alternate-reverse;
    background: linear-gradient(to bottom, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    clip-path: inset(0 0 50% 0);
}

.gold-text::after {
    left: -2px;
    text-shadow: -1px 0 rgba(255, 215, 0, 0.4);
    /* Gold ghosting */
    animation: glitch-skew 3s infinite linear alternate-reverse;
    background: linear-gradient(to bottom, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    clip-path: inset(50% 0 0 0);
}

/* Subtitle - Crisp Tech Style */
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: #e0e0e0;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.5rem;
    text-align: left;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    padding: 1rem;
}

/* Trust Badges - as floating cards */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    /* Slightly smaller min-width */
    gap: 1rem;
    /* Reduced gap */
    margin: 1.5rem auto;
    /* Reduced margins */
    max-width: 700px;
    padding: 0;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    /* More compact padding */
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    /* Smaller font */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    /* Reduced */
    cursor: default;
    flex-direction: row;
    text-align: left;
    backdrop-filter: blur(20px);
}

.trust-badge:hover {
    background: rgba(229, 168, 0, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--gold-glow);
    border-color: var(--gold-light);
}

.trust-badge svg {
    flex-shrink: 0;
    stroke: var(--gold-primary);
    width: 24px;
    height: 24px;
}



/* Remove old styles that are no longer needed */
.hero-container,
.hero-text,
.hero-logo-wrapper,
.hero-logo,
.hero-image-badge {
    display: none;
}

/* Scroll indicator removed */

/* Hero responsive */
@media (max-width: 900px) {
    .hero {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance */
    }

    .hero-content-centered h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: 0;
        max-width: 100%;
    }

    .trust-badge {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-rating-badge {
        position: static;
        margin: var(--spacing-md) auto 0;
        display: inline-flex;
        padding: 1rem 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-centered h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .trust-badges {
        gap: var(--spacing-xs);
    }

    .trust-badge {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-rating-badge strong {
        font-size: 1.5rem;
    }

    .hero-rating-badge span {
        font-size: 0.75rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow), 0 0 0 0 rgba(229, 168, 0, 0.7);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--gold-glow), 0 0 0 0 rgba(229, 168, 0, 0.7);
    }

    50% {
        box-shadow: 0 4px 30px var(--gold-glow-strong), 0 0 0 8px rgba(229, 168, 0, 0);
    }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px var(--gold-glow-strong);
    color: #000;
    background-position: right center;
    animation: none;
}



.btn-outline {
    background: rgba(229, 168, 0, 0.05);
    border: 2px solid var(--accent);
    color: var(--accent);
    margin-left: var(--spacing-sm);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    color: #000;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px var(--gold-glow);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ===== Cards ===== */
.card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing-md) * 1.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-color);
}

/* Top accent line */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    box-shadow: 0 0 15px var(--gold-glow);
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
    border-color: var(--accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #000;
}

/* ===== Grids ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--bg-primary);
}

.testimonial-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.testimonial-card .stars {
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 10px var(--gold-glow);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--accent);
}

/* ===== Services Section ===== */
.services-preview {
    background: var(--bg-secondary);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Modern Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

/* Enhanced Service Card */
.service-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px var(--shadow-color);
}

/* Top accent line */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
    box-shadow: 0 0 15px var(--gold-glow);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
    border-color: var(--accent);
}

/* Featured Card Enhancement */
.service-card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(229, 168, 0, 0.05) 0%, var(--bg-card) 100%);
}

.service-card-featured::after {
    opacity: 1;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--gold-glow);
    animation: pulse-glow 2s infinite;
}

/* Service Card Header */
.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.card-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 30px var(--gold-glow);
    transition: all var(--transition-normal);
}

.service-card:hover .card-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px var(--gold-glow-strong);
}

.card-icon-modern svg {
    width: 36px;
    height: 36px;
    stroke: #000;
}

.service-card-header h3 {
    margin: 0;
    padding-top: 0.5rem;
    color: var(--text-primary);
    font-size: 1.35rem;
    line-height: 1.3;
}

/* Service Description */
.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    flex-grow: 0;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: 0 0 var(--spacing-md) 0;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(229, 168, 0, 0.1);
    transition: all var(--transition-fast);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:hover {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.service-features li svg {
    flex-shrink: 0;
    stroke: var(--gold-primary);
    margin-top: 0.15rem;
    transition: transform var(--transition-fast);
}

.service-features li:hover svg {
    transform: scale(1.2);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 0;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    gap: 1rem;
    color: var(--accent-hover);
}

.service-link svg {
    transition: transform var(--transition-fast);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Services Bottom CTA */
.services-bottom {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.services-callout {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .service-card {
        padding: var(--spacing-md);
    }

    .card-icon-modern {
        width: 60px;
        height: 60px;
    }

    .card-icon-modern svg {
        width: 30px;
        height: 30px;
    }

    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

.show-more-btn {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===== Services Page ===== */
.service-category {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.service-category h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.service-category h3 .icon {
    background: var(--gold-gradient);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.service-category h3 .icon svg {
    width: 24px;
    height: 24px;
    stroke: #000;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xs);
}

.service-list li {
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.service-list li:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.service-list li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
}

/* ===== Pricing ===== */
.price-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-normal);
}

.price-block:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.price-block-header {
    background: var(--gold-gradient);
    color: #000;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.price-block-header svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    flex-shrink: 0;
}

.price-list {
    list-style: none;
}

.price-list li {
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.price-list li:hover {
    background: var(--bg-secondary);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list .price {
    font-weight: 700;
    color: var(--accent);
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery overlay */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    max-width: 80%;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Image loading states */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded,
img[loading="eager"] {
    opacity: 1;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===== About Page ===== */
.about-hero {
    padding-top: 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.features-grid {
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    height: 100%;
    /* Symmetry Fix */
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #000;
}

/* ===== Footer ===== */
footer {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-content h3 {
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-content ul li a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-content ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-media {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 25px var(--gold-glow);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-md);
        transition: left var(--transition-normal);
    }

    nav ul.active {
        left: 0;
    }

    .hero-logo {
        width: 180px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 0.9rem;
    }
}

/* ===== Utility Classes ===== */
.bg-secondary {
    background: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.page-header {
    background: var(--bg-secondary);
    padding-top: 120px;
    position: relative;
    /* Visual Polish */
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center 25%;
    background-blend-mode: overlay;
    box-shadow: inset 0 -50px 50px var(--bg-primary);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.contact-card {
    text-align: center;
}

.contact-card .card-icon {
    margin: 0 auto var(--spacing-sm);
}

.cta-section {
    background: var(--bg-secondary);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-section .container {
    text-align: center;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.about-image img:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.price-note {
    text-align: center;
    color: var(--text-muted);
    margin-top: var(--spacing-lg);
}

/* ===== Contact Section ===== */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-form-wrapper {
    order: 2;
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.map-wrapper {
    width: 100%;
    margin-bottom: var(--spacing-lg);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: var(--glass-blur);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.contact-header h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.contact-item .icon-box {
    width: 44px;
    height: 44px;
    background: rgba(229, 168, 0, 0.1);
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.contact-item:hover .icon-box {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotate(10deg);
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.contact-form h3 {
    margin-bottom: var(--spacing-md);
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.checkbox-label span {
    font-weight: normal;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    min-height: 1.25rem;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: center;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.btn-loading {
    display: none;
}

.btn-loading.active {
    display: inline-block;
}

.form-message {
    display: none;
}

.form-message.active {
    display: block;
}

.map-iframe {
    border: 0;
}

.map-wrapper {
    margin-top: 0;
}

.map-wrapper h3 {
    margin-bottom: var(--spacing-md);
    color: var(--accent);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 30px var(--shadow-color);
    margin-bottom: var(--spacing-sm);
    border: 2px solid var(--border-color);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Dark Mode Map */
}

.map-note {
    text-align: center;
    margin-top: var(--spacing-sm);
}

.map-note a {
    color: var(--accent);
    font-weight: 600;
}

.map-note a:hover {
    color: var(--accent-hover);
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--gold-glow);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    stroke: #000;
}

.scroll-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    padding: var(--spacing-sm) 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    margin: 0 var(--spacing-xs);
    color: var(--text-muted);
}

.breadcrumbs .current {
    color: var(--accent);
    font-weight: 600;
}

@media (min-width: 768px) {
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
        align-items: stretch;
    }

    .contact-info {
        margin-bottom: 0;
    }

    .map-wrapper {
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }

    .map-wrapper .map-container {
        flex: 1;
    }

    .map-container iframe {
        height: 100%;
        min-height: 500px;
    }
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Header Scroll State ===== */
header.scrolled {
    background: rgba(26, 26, 26, 0.98);
}

/* ===== Bento Grid Layout ===== */
.services-page {
    background: var(--bg-primary);
    padding-bottom: var(--spacing-xl);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--spacing-md);
}

/* Bento Card Base */
.bento-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card-inner {
    padding: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Bento Card Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Featured Card */
.bento-card-featured {
    background: linear-gradient(135deg, rgba(229, 168, 0, 0.08) 0%, var(--bg-card) 100%);
    border-color: var(--accent);
}

.bento-card-featured::before {
    opacity: 1;
}

/* Bento Icon */
.bento-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 10px 40px var(--gold-glow);
    transition: all var(--transition-normal);
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px var(--gold-glow-strong);
}

.bento-icon svg {
    stroke: #000;
}

.bento-icon.small {
    width: 60px;
    height: 60px;
}

/* Bento Badge */
.bento-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gold-gradient);
    color: #000;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px var(--gold-glow);
}

.bento-badge.secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

/* Bento Content */
.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.bento-large h3 {
    font-size: 2rem;
}

.bento-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Bento Features List */
.bento-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
    flex-grow: 1;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(229, 168, 0, 0.1);
    transition: all var(--transition-fast);
}

.bento-features li:last-child {
    border-bottom: none;
}

.bento-features li:hover {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.bento-features li svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

/* Compact Features */
.bento-features.compact li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.bento-features.compact li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Mini Features */
.bento-features.mini {
    font-size: 0.9rem;
}

.bento-features.mini li {
    padding: 0.4rem 0;
}

.bento-features.mini li::before {
    content: '•';
    color: var(--gold-primary);
    margin-right: 0.5rem;
}

/* Bento CTA */
.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    padding: 1rem 0;
    transition: all var(--transition-fast);
}

.bento-cta:hover {
    gap: 1.5rem;
    color: var(--accent-hover);
}

.bento-cta svg {
    transition: transform var(--transition-fast);
}

.bento-cta:hover svg {
    transform: translateX(5px);
}

/* Bento Grid Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card-inner {
        padding: var(--spacing-md);
    }

    .bento-icon {
        width: 60px;
        height: 60px;
    }

    .bento-icon.small {
        width: 50px;
        height: 50px;
    }

    .bento-large h3 {
        font-size: 1.5rem;
    }

    .bento-badge {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
}

/* ===== Pricing Page Premium Styles ===== */
.pricing-page {
    background: var(--bg-primary);
    padding-bottom: var(--spacing-xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Pricing Card - Holo Tech */
.pricing-card {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

/* Tech corners */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 30px 30px 0;
    border-style: solid;
    border-color: transparent var(--gold-primary) transparent transparent;
    opacity: 0.5;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* Featured Pricing Card */
.pricing-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.pricing-card-featured::before {
    opacity: 1;
}

/* Compact Pricing Card */
.pricing-card-compact .pricing-card-header {
    padding: var(--spacing-md);
}

.pricing-card-compact .pricing-list {
    padding: 0 var(--spacing-md) var(--spacing-md);
}

/* Pricing Card Header */
.pricing-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card-header h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--text-primary);
}

/* Pricing Icon */
.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px var(--gold-glow);
    transition: all var(--transition-normal);
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 35px var(--gold-glow-strong);
}

.pricing-icon svg {
    stroke: #000;
}

.pricing-icon.small {
    width: 50px;
    height: 50px;
}

/* Pricing Badge */
.pricing-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.pricing-badge.secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
}

/* Pricing List */
.pricing-list {
    padding: var(--spacing-md) var(--spacing-lg);
}

/* Pricing Item */
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(229, 168, 0, 0.1);
    transition: all var(--transition-fast);
    gap: 1rem;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item:hover {
    padding-left: 0.5rem;
    background: rgba(229, 168, 0, 0.03);
    margin: 0 -0.5rem;
    padding-right: 0.5rem;
    border-radius: var(--radius-sm);
}

.pricing-item.highlight {
    background: rgba(229, 168, 0, 0.08);
    padding: 1rem;
    margin: 0.5rem -1rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--accent);
}

.pricing-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex: 1;
}

.pricing-item:hover .pricing-name {
    color: var(--text-primary);
}

.pricing-value {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    text-align: right;
}

.pricing-value.individual {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    font-style: italic;
}

/* Price Note */
.price-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-card-featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        grid-column: span 1;
    }

    .pricing-card-header {
        padding: var(--spacing-md);
    }

    .pricing-list {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .pricing-icon {
        width: 50px;
        height: 50px;
    }

    .pricing-icon.small {
        width: 40px;
        height: 40px;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pricing-value {
        text-align: left;
    }
}

/* ===== SIMPLIFIED LAYOUTS (CLEAN DESIGN) ===== */

/* --- Simple Services Grid --- */
.clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* --- Tech Cards (Evolution of Clean Card) --- */
.clean-card {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: var(--spacing-md);
    border-radius: 4px;
    /* Tech look */
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.clean-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold-primary);
    transition: height 0.4s ease;
}

.clean-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.1);
}

.clean-card:hover::before {
    height: 100%;
}

.clean-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.clean-card:hover .clean-icon {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
}

.clean-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.clean-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.clean-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* --- Simple Pricing Layout --- */
.pricing-simple-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Centers orphan items */
    gap: var(--spacing-lg);
}

.pricing-simple-layout>* {
    flex: 0 1 calc(50% - var(--spacing-lg));
    /* 2 per row max */
    max-width: calc(50% - var(--spacing-lg));
    min-width: 320px;
    /* Minimum width before stacking */
}

.pricing-category {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    border: 1px solid var(--border-color);
}

/* Page Header - Compact Style */
.page-header {
    padding: 100px 0 40px;
    /* Reduced padding */
    min-height: 25vh;
    /* Much smaller - content appears higher */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

/* Background Pattern - Technical Blueprint Style */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/drift_wireframe_bg.png');
    background-size: 400px;
    /* Dense, technical pattern */
    background-repeat: repeat;
    background-position: center center;
    filter: brightness(0.5) opacity(0.4);
    /* Subtle but visible */
    z-index: 0;
    background-attachment: fixed;
    /* Parallax depth */
    animation: blueprintPan 90s linear infinite;
}

@keyframes blueprintPan {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 400px 400px;
    }
}

/* Specific Subpage Backgrounds */
.page-header-uslugi::before {
    background-image: url('../images/pattern_services.png');
}

.page-header-cennik::before {
    background-image: url('../images/pattern_pricing.png');
}

.page-header-onas::before {
    background-image: url('../images/pattern_about.png');
}

.page-header-galeria::before {
    background-image: url('../images/pattern_gallery.png');
}

/* Atmospheric Overlay - Vignette & Smoke */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 12, 0.7) 100%),
        /* Vignette */
        linear-gradient(to bottom, transparent 0%, rgba(10, 10, 12, 0.5) 70%, var(--bg-primary) 100%);
    /* Fade to content */
    z-index: 1;
    pointer-events: none;
}

/* Content Container Styling */
.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--spacing-md);
}

/* Page Header Title Styling */
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Page Header Subtitle/Description */
.page-header p,
.page-header .page-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb Styling in Headers */
.page-header .breadcrumb {
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-category h3 {
    color: var(--accent);
    margin-bottom: var(--spacing-md);
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.simple-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Align text vertically */
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(229, 168, 0, 0.25);
    /* Gold divider */
    transition: background 0.3s ease;
}

.price-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-name {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-price {
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    margin-left: 1rem;
}

.service-price.accent {
    color: var(--accent);
}

/* Responsive for Simplified Layouts */
@media (max-width: 992px) {
    .pricing-simple-layout {
        grid-template-columns: 1fr;
        /* Stack vertically on tablets/mobile */
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .clean-grid {
        grid-template-columns: 1fr;
        /* Stack cards on mobile */
    }
}

/* ===== Aggressive Footer ===== */
footer {
    background: #000;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
    text-shadow: 0 0 10px var(--gold-glow);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links a:hover {
        padding-left: 0;
        transform: none;
    }
}