/* CHROME DREAMS & VELVET NIGHTS - Kiss and Makeup LA */

:root {
    --black: #0A0A0A;
    --deep-black: #000000;
    --chrome: #C0C0C0;
    --white: #FFFFFF;
    --burgundy: #8B1538;
    --deep-purple: #4a0e4e;
    --magenta: #FF00FF;
    --cyan: #00FFFF;
    --gold: #D4AF37;

    --font-display: 'Abril Fatface', serif;
    --font-serif: 'DM Serif Display', serif;
    --font-body: 'Manrope', sans-serif;
    --font-label: 'Bebas Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Holographic Cursor Canvas */
#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), transparent);
    backdrop-filter: blur(10px);
    animation: navSlide 1s ease;
}

@keyframes navSlide {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-logo {
    font-family: var(--font-label);
    font-size: 1.8rem;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--white), var(--chrome), var(--white));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--cyan));
    transition: width 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--burgundy), var(--deep-purple));
    padding: 0.75rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 4rem 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.chrome-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.15), transparent 70%);
    animation: rotate 30s linear infinite;
}

.mesh-gradient {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.2), transparent 70%);
    animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sparkle Overlay Effect */
.sparkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.sparkle-overlay::before,
.sparkle-overlay::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.1);
    animation: sparkle 3s infinite ease-in-out;
}

.sparkle-overlay::before {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle-overlay::after {
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Luxury Sparkle Animation - Subtle and Elegant */
@keyframes luxurySparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    40% {
        opacity: 0.6;
        transform: scale(1);
    }
    60% {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Galaxy Sparkle Animation - Vibrant and Dynamic */
@keyframes galaxySparkle {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(0px);
    }
    20% {
        opacity: 0.8;
        transform: scale(1.2) translateY(-3px);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateY(0px);
    }
    80% {
        opacity: 0.8;
        transform: scale(1.2) translateY(3px);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateY(0px);
    }
}

/* Disco Glitter Animation - Fast Twinkle & Rotate */
@keyframes discoGlitter {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
        filter: brightness(1);
    }
    10% {
        opacity: 1;
        transform: scale(1.5) rotate(45deg);
        filter: brightness(2);
    }
    40% {
        opacity: 0.9;
        transform: scale(1) rotate(180deg);
        filter: brightness(1.5);
    }
    70% {
        opacity: 1;
        transform: scale(1.3) rotate(270deg);
        filter: brightness(2);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
        filter: brightness(1);
    }
}

/* Glitter Sparkle Shape - Four-Pointed Star */
.glitter-sparkle {
    --sparkle-color: rgba(255, 255, 255, 0.9);
}

.glitter-sparkle::before,
.glitter-sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--sparkle-color);
    box-shadow: 0 0 10px var(--sparkle-color),
                0 0 20px var(--sparkle-color),
                0 0 30px var(--sparkle-color);
}

/* Vertical beam of sparkle */
.glitter-sparkle::before {
    width: 15%;
    height: 100%;
    transform: translate(-50%, -50%);
}

/* Horizontal beam of sparkle */
.glitter-sparkle::after {
    width: 100%;
    height: 15%;
    transform: translate(-50%, -50%);
}

/* Glitter Twinkle Animation */
@keyframes glitterTwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.9rem;
    letter-spacing: 4px;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chrome-text {
    position: relative;
    background: linear-gradient(135deg,
        #ffffff 0%,
        #e0e0e0 20%,
        #ffffff 40%,
        #c0c0c0 60%,
        #ffffff 80%,
        #e0e0e0 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: chromeShine 4s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

@keyframes chromeShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.chrome-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.5;
}

.hero-amp {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.6em;
    opacity: 0.7;
}

.hero-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-family: var(--font-label);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.divider {
    color: var(--burgundy);
    font-size: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy), var(--deep-purple));
    color: var(--white);
    border: none;
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 21, 56, 0.6);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.scroll-prompt {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-prompt span {
    font-family: var(--font-label);
    font-size: 0.8rem;
    letter-spacing: 3px;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Section Styles */
section {
    padding: 8rem 4rem;
    position: relative;
}

.section-label {
    font-family: var(--font-label);
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--burgundy);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 3rem;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
}

.section-header.centered {
    text-align: center;
}

/* Services Section */
.services {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.15), transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(138, 43, 226, 0.1), transparent 50%);
    animation: meshFlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes meshFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 50px) scale(0.95);
    }
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(255, 0, 255, 0.3) 25%,
        transparent 50%,
        rgba(0, 255, 255, 0.3) 75%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: rotateGradient 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 0, 255, 0.1),
        rgba(138, 43, 226, 0.1),
        rgba(0, 255, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 30px;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 30px 80px rgba(255, 0, 255, 0.3),
        0 30px 80px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-number {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    opacity: 0.1;
    margin-bottom: -2rem;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #ff00ff 25%,
        #00ffff 50%,
        #ff00ff 75%,
        #ffffff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicShift 4s ease infinite;
    position: relative;
    z-index: 2;
}

@keyframes holographicShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.card-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.card-details ul {
    list-style: none;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-details li:hover {
    padding-left: 10px;
    color: var(--cyan);
    border-bottom-color: rgba(0, 255, 255, 0.3);
}

.card-details li::before {
    content: '→';
    color: var(--magenta);
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-details li:hover::before {
    color: var(--cyan);
    transform: translateX(5px);
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover .card-shine {
    left: 100%;
}

/* Stats Bar */
.stats-bar {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.1), rgba(74, 14, 78, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4rem;
    display: block;
    background: linear-gradient(135deg, var(--white), var(--chrome));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-family: var(--font-label);
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.7;
    display: block;
    line-height: 1.4;
}

/* Theme Selector UI - Top Right */
.theme-selector {
    position: fixed;
    top: 6rem;
    right: 2rem;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 10, 26, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-selector.minimized {
    transform: translateX(calc(100% - 50px));
}

.theme-selector.minimized .theme-selector-label,
.theme-selector.minimized .theme-buttons {
    opacity: 0;
    pointer-events: none;
}

.selector-toggle {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 60px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 10, 26, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 0 0 8px;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.selector-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-selector.minimized .selector-toggle {
    transform: translateY(-50%) rotate(180deg);
}

.theme-selector-label {
    font-family: var(--font-label);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.theme-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.theme-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    position: relative;
}

.theme-btn:hover {
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.theme-btn.active {
    border-color: var(--magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.theme-btn.active::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.theme-color {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Makeup Palette Theme Selector */
.makeup-palette {
    position: fixed;
    top: 6rem;
    right: 2rem;
    z-index: 1000;
    width: 240px;
    perspective: 1000px;
    cursor: pointer;
}

.palette-base {
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #3A3A3A;
    position: relative;
}

.palette-label {
    font-family: var(--font-label);
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-align: center;
    color: #B8B8B8;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.palette-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    pointer-events: none;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.makeup-palette.open .palette-grid {
    pointer-events: all;
    opacity: 1;
}

.palette-color {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    background: #1A1A1A;
    border-radius: 10px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.palette-color:hover {
    transform: scale(1.1);
}

.palette-color.active {
    box-shadow:
        0 0 0 2px #FF1493,
        0 0 20px rgba(255, 20, 147, 0.5),
        inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.palette-color.active::after {
    content: '✓';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.6);
}

.color-pan {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Clear Plastic Lid */
.palette-lid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(200, 200, 200, 0.1) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform-origin: top center; /* Pivot from top edge like a real compact */
    transition:
        transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.9s ease-out;
    z-index: 10;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.makeup-palette.open .palette-lid {
    transform: rotateX(110deg); /* Opens forward from top edge - like a real compact */
    opacity: 0.8;
}

.lid-shine {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 60%;
    height: 40%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(15px);
}

.lid-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Minimize Button - Always Visible */
.palette-minimize {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20; /* Always on top */
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.6);
    transition: all 0.3s ease;
    line-height: 1;
    padding-bottom: 3px;
}

.palette-minimize:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 20, 147, 0.6);
}

/* Minimized State */
.makeup-palette.minimized {
    width: 60px;
}

.makeup-palette.minimized .palette-base,
.makeup-palette.minimized .palette-lid {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.makeup-palette.minimized .palette-minimize {
    position: static;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.6);
}

.makeup-palette.minimized .palette-minimize::after {
    content: '💄';
    position: absolute;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.makeup-palette.minimized .palette-minimize {
    text-indent: -9999px;
}

/* Design Selector UI */
/* TO RESTORE: Remove "display: none;" below */
.design-selector {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 10, 26, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: none; /* HIDDEN - Remove to restore */
}

.selector-label {
    font-family: var(--font-label);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-align: center;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.selector-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.style-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
}

.style-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.style-btn.active {
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-text {
    white-space: nowrap;
}

/* LIQUID MORPHING DESIGN STYLE */
.services[data-design-style="liquid"] .services-grid {
    gap: 4rem;
}

.services[data-design-style="liquid"]::before {
    background: none;
    animation: none;
}

.services[data-design-style="liquid"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 0, 255, 0.3), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 255, 255, 0.25), transparent 55%),
        radial-gradient(ellipse at 50% 80%, rgba(138, 43, 226, 0.2), transparent 45%);
    filter: blur(60px);
    animation: liquidFlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(-80px, 60px) scale(1.3);
        opacity: 0.8;
    }
    66% {
        transform: translate(80px, -60px) scale(0.8);
        opacity: 0.7;
    }
}

.services[data-design-style="liquid"] .service-card {
    background: radial-gradient(ellipse at top left, rgba(255, 0, 255, 0.15), transparent 70%),
                radial-gradient(ellipse at bottom right, rgba(0, 255, 255, 0.1), transparent 70%),
                rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 2px solid;
    border-image: linear-gradient(135deg, rgba(255, 0, 255, 0.4), rgba(0, 255, 255, 0.4)) 1;
    border-radius: 60px;
    box-shadow:
        0 20px 60px rgba(255, 0, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.services[data-design-style="liquid"] .service-card::before,
.services[data-design-style="liquid"] .service-card::after {
    display: none;
}

.services[data-design-style="liquid"] .service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-image: linear-gradient(135deg, rgba(255, 0, 255, 0.8), rgba(0, 255, 255, 0.8)) 1;
    box-shadow:
        0 30px 80px rgba(255, 0, 255, 0.4),
        0 30px 80px rgba(0, 255, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.services[data-design-style="liquid"] .card-content h3 {
    background: linear-gradient(135deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquidShimmer 3s ease-in-out infinite;
}

@keyframes liquidShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* BRUTALIST EDITORIAL DESIGN STYLE */
.services[data-design-style="brutalist"]::before {
    display: none;
}

.services[data-design-style="brutalist"]::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: var(--magenta);
    opacity: 0.08;
    transform: rotate(45deg);
    pointer-events: none;
}

.services[data-design-style="brutalist"] .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1200px;
}

.services[data-design-style="brutalist"] .service-card {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-left: 8px solid var(--magenta);
    border-radius: 0;
    padding: 5rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.services[data-design-style="brutalist"] .service-card::before,
.services[data-design-style="brutalist"] .service-card::after {
    display: none;
}

.services[data-design-style="brutalist"] .service-card:nth-child(2) {
    border-left-color: var(--cyan);
}

.services[data-design-style="brutalist"] .service-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
    border-left-width: 12px;
}

.services[data-design-style="brutalist"] .card-number {
    font-size: 12rem;
    opacity: 0.05;
    position: absolute;
    right: 4rem;
    top: 2rem;
    margin: 0;
}

.services[data-design-style="brutalist"] .card-content h3 {
    font-family: var(--font-label);
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -3px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--white);
    animation: none;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.services[data-design-style="brutalist"] .card-details p {
    font-size: 1.3rem;
    max-width: 600px;
    opacity: 0.9;
}

.services[data-design-style="brutalist"] .card-details li {
    border-bottom: none;
    padding: 1rem 0;
    font-size: 1.1rem;
}

.services[data-design-style="brutalist"] .card-details li::before {
    content: '■';
    font-size: 0.5rem;
}

/* KINETIC 3D DESIGN STYLE */
.services[data-design-style="kinetic"]::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 255, 0.2), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.2), transparent 40%),
        radial-gradient(circle at 40% 20%, rgba(138, 43, 226, 0.15), transparent 40%);
    animation: meshFlow 20s ease-in-out infinite;
}

.services[data-design-style="kinetic"] .service-card {
    background: linear-gradient(135deg,
        rgba(20, 20, 20, 0.9),
        rgba(30, 20, 30, 0.9)
    );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.services[data-design-style="kinetic"] .service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
        var(--magenta),
        var(--cyan),
        var(--magenta)
    );
    background-size: 200% 200%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.services[data-design-style="kinetic"] .service-card::after {
    display: none;
}

.services[data-design-style="kinetic"] .service-card:hover {
    transform: translateY(-30px) translateZ(50px) rotateX(5deg);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.services[data-design-style="kinetic"] .service-card:hover::before {
    opacity: 1;
}

.services[data-design-style="kinetic"] .card-content {
    transform-style: preserve-3d;
}

.services[data-design-style="kinetic"] .card-content h3 {
    background: linear-gradient(135deg, #ffffff, #ff00ff, #00ffff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicFlow 5s linear infinite;
    transform: translateZ(20px);
}

@keyframes holographicFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.services[data-design-style="kinetic"] .card-details {
    transform: translateZ(10px);
}

.services[data-design-style="kinetic"] .card-number {
    opacity: 0.08;
}

/* Contact Hero Title - Make it POP */
.contact-hero-title {
    font-size: 6rem !important;
    line-height: 1 !important;
    letter-spacing: -3px !important;
    margin-bottom: 3rem !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #FF00FF 50%, #00FFFF 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: heroGlow 4s ease-in-out infinite !important;
    text-shadow: none !important;
    position: relative !important;
    display: inline-block !important;
}

.contact-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF00FF, #00FFFF);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Service Area Map Section */
.service-area-section {
    max-width: 1400px;
    margin: 6rem auto 0;
    padding: 0 2rem;
}

.area-title {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--magenta), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.area-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 10, 26, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.address-search {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-input {
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.address-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.address-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.check-btn {
    align-self: center;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.check-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.5);
}

.check-btn:active {
    transform: translateY(-1px);
}

.radius-result {
    min-height: 60px;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
}

.radius-result.show {
    opacity: 1;
}

.radius-result.in-range {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.15), rgba(0, 255, 127, 0.05));
    border: 2px solid rgba(0, 255, 127, 0.4);
    color: #00ff7f;
}

.radius-result.out-of-range {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.15), rgba(255, 0, 127, 0.05));
    border: 2px solid rgba(255, 0, 127, 0.4);
    color: #ff007f;
}

.map-canvas {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .area-title {
        font-size: 3rem;
    }

    .map-container {
        padding: 2rem 1.5rem;
    }

    .map-canvas {
        height: 400px;
    }

    .address-search {
        gap: 1rem;
    }
}

/* Portfolio Section */
/* TO RESTORE: Remove "display: none;" from .portfolio below */
.portfolio {
    background: var(--deep-black);
    display: none; /* HIDDEN - Remove to restore entire portfolio section */
}

.portfolio-grid {
    max-width: 1600px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.portfolio-item {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    animation: slideInUp 0.8s ease backwards;
    animation-delay: var(--delay);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item.large {
    grid-column: span 6;
}

.portfolio-item.wide {
    grid-column: span 8;
}

.portfolio-img {
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.img-label {
    font-family: var(--font-label);
    font-size: 2rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.category {
    font-family: var(--font-label);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--burgundy);
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Instagram CTA */
.instagram-cta {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 5rem 4rem;
    text-align: center;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--burgundy), var(--deep-purple));
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--burgundy);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--black) 100%);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.img-container {
    aspect-ratio: 3/4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.3), transparent);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.cred-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--burgundy), var(--deep-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    background: var(--black);
}

.contact-header {
    max-width: 1400px;
    margin: 0 auto 5rem;
    text-align: center;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--deep-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: var(--font-label);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.info-card p {
    opacity: 0.8;
    line-height: 1.6;
}

.info-card a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--white);
}

.testimonial {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2), rgba(74, 14, 78, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--burgundy);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial span {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 2px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-field label {
    font-family: var(--font-label);
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: rgba(255, 255, 255, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--burgundy), var(--deep-purple));
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-label);
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.4);
}

.btn-submit .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover .btn-shine {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--deep-black);
    padding: 4rem 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-label);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--burgundy);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 6rem 2rem 4rem;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 7rem);
    }

    section {
        padding: 5rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-item {
        grid-column: span 6 !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        transform: rotate(-45deg) translate(1px, -1px);
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .service-card {
        padding: 2rem;
    }

    .portfolio-item {
        grid-column: span 12 !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Keep sparkles on mobile - now works with touch! */
    #cursorCanvas {
        pointer-events: none; /* Allow touches to pass through */
    }

    /* Contact page - Fix large title for mobile */
    .contact-hero-title {
        font-size: 2.5rem !important;
        letter-spacing: -1px !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.1 !important;
    }

    .area-title {
        font-size: 2rem !important;
    }

    .area-subtitle {
        font-size: 1rem !important;
    }

    /* Adjust section titles for mobile */
    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
    }

    .section-label {
        font-size: 0.7rem !important;
    }

    /* Makeup palette positioning for mobile */
    .makeup-palette {
        top: 5rem;
        right: 0.5rem;
        width: 200px;
    }

    .palette-base {
        padding: 1rem;
    }

    .palette-label {
        font-size: 0.5rem;
    }

    .palette-grid {
        gap: 0.35rem;
    }

    .lid-label {
        font-size: 0.65rem;
    }
}

/* iOS Portrait specific optimizations */
@media (max-width: 430px) and (orientation: portrait) {
    .contact-hero-title {
        font-size: 2rem !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 1rem !important;
    }

    .area-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
    }

    /* Ensure text doesn't overflow on contact form */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }

    /* Map section adjustments */
    .map-container {
        padding: 1.5rem 1rem;
    }

    .map-canvas {
        height: 300px;
    }

    .address-input {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
    }

    /* Service cards padding */
    .service-card {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.5rem !important;
    }
}

/* ========================================
   LIGHT THEME VARIATIONS (Sections below hero)
   ======================================== */

/* THEME 1: Minimalist Cream & Sage - Gradient Flow */
body[data-theme="cream-sage"] .services {
    background: linear-gradient(180deg,
        #FAF7F4 0%,      /* Light cream */
        #F5F1E8 25%,     /* Warm cream */
        #EDE8DC 50%,     /* Deeper cream */
        #D9CFC1 75%,     /* Tan */
        #C4BDB0 100%     /* Rich tan */
    );
    color: #2C3E2E;
}

body[data-theme="cream-sage"] .portfolio,
body[data-theme="cream-sage"] .about {
    background: linear-gradient(180deg,
        #C4BDB0 0%,      /* Rich tan */
        #B5AE9E 50%,     /* Deep tan */
        #A8B5A0 100%     /* Sage green */
    );
    color: #2C3E2E;
}

body[data-theme="cream-sage"] .contact {
    background: linear-gradient(180deg,
        #A8B5A0 0%,      /* Sage green */
        #8FA086 50%,     /* Deep sage */
        #7A8C6F 100%     /* Rich sage */
    );
    color: #FAF7F4;
}

body[data-theme="cream-sage"] .about .section-label,
body[data-theme="cream-sage"] .about .section-title,
body[data-theme="cream-sage"] .contact .section-label,
body[data-theme="cream-sage"] .contact .section-title {
    color: #FAF7F4;
}

body[data-theme="cream-sage"] .about p,
body[data-theme="cream-sage"] .contact p {
    color: #FAF7F4;
}

body[data-theme="cream-sage"] .contact .area-title {
    color: #FAF7F4;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="cream-sage"] .contact .area-subtitle {
    color: #F5F1E8;
}

body[data-theme="cream-sage"] .section-label {
    color: #7A8C6F;
}

body[data-theme="cream-sage"] .section-title {
    color: #2C3E2E;
}

body[data-theme="cream-sage"] .service-card {
    background: linear-gradient(135deg, #FFFFFF, #F9F7F3);
    border: 2px solid #D9CFC1;
    box-shadow: 0 10px 40px rgba(122, 140, 111, 0.15);
}

body[data-theme="cream-sage"] .service-card:hover {
    border-color: #A8B5A0;
    box-shadow: 0 20px 60px rgba(122, 140, 111, 0.25);
    transform: translateY(-10px);
}

body[data-theme="cream-sage"] .card-content h3 {
    background: linear-gradient(135deg, #2C3E2E, #7A8C6F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="cream-sage"] .card-number {
    color: #E8DED0;
    opacity: 0.3;
}

body[data-theme="cream-sage"] .card-details p,
body[data-theme="cream-sage"] .card-details li {
    color: #5A6B52;
}

body[data-theme="cream-sage"] .card-details li::before {
    color: #A8B5A0;
}

body[data-theme="cream-sage"] .stats-bar {
    background: linear-gradient(135deg, rgba(168, 181, 160, 0.15), rgba(217, 207, 193, 0.15));
    border: 1px solid #D9CFC1;
}

body[data-theme="cream-sage"] .stat-number {
    background: linear-gradient(135deg, #2C3E2E, #7A8C6F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="cream-sage"] .stat-label {
    color: #5A6B52;
}

body[data-theme="cream-sage"] .portfolio-item {
    border: 2px solid #E8DED0;
}

body[data-theme="cream-sage"] .portfolio-info h3 {
    color: #2C3E2E;
}

body[data-theme="cream-sage"] .category {
    color: #7A8C6F;
}

body[data-theme="cream-sage"] .about-content p {
    color: #5A6B52;
}

body[data-theme="cream-sage"] .contact-form input,
body[data-theme="cream-sage"] .contact-form textarea {
    background: #FFFFFF;
    border: 2px solid #D9CFC1;
    color: #2C3E2E;
}

body[data-theme="cream-sage"] .contact-form input::placeholder,
body[data-theme="cream-sage"] .contact-form textarea::placeholder {
    color: #A8B5A0;
}

body[data-theme="cream-sage"] .area-title {
    background: linear-gradient(135deg, #2C3E2E, #7A8C6F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="cream-sage"] .map-container {
    background: #FFFFFF;
    border: 2px solid #D9CFC1;
}

body[data-theme="cream-sage"] .address-input {
    background: #F9F7F3;
    border: 2px solid #D9CFC1;
    color: #2C3E2E;
}

body[data-theme="cream-sage"] .check-btn {
    background: linear-gradient(135deg, #7A8C6F, #A8B5A0);
}

/* THEME 2: Scandinavian Clean */
body[data-theme="scandinavian"] .services {
    background: linear-gradient(180deg,
        #FFFFFF 0%,      /* Pure white */
        #F8F8F8 25%,     /* Very light gray */
        #F0F0F0 50%,     /* Light gray */
        #E0E0E0 75%,     /* Medium light gray */
        #D0D0D0 100%     /* Medium gray */
    );
    color: #2E2E2E;
}

body[data-theme="scandinavian"] .portfolio,
body[data-theme="scandinavian"] .about {
    background: linear-gradient(180deg,
        #D0D0D0 0%,      /* Medium gray */
        #B8B8B8 50%,     /* Darker gray */
        #9E9E9E 100%     /* Dark gray */
    );
    color: #2E2E2E;
}

body[data-theme="scandinavian"] .contact {
    background: linear-gradient(180deg,
        #9E9E9E 0%,      /* Dark gray */
        #7E7E7E 50%,     /* Darker gray */
        #5E5E5E 100%     /* Darkest gray */
    );
    color: #FFFFFF;
}

/* Adjust text colors for darker sections */
body[data-theme="scandinavian"] .about .section-label,
body[data-theme="scandinavian"] .about .section-title,
body[data-theme="scandinavian"] .contact .section-label,
body[data-theme="scandinavian"] .contact .section-title {
    color: #FFFFFF;
}

body[data-theme="scandinavian"] .about p,
body[data-theme="scandinavian"] .contact p {
    color: #FFFFFF;
}

body[data-theme="scandinavian"] .contact .area-title {
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="scandinavian"] .contact .area-subtitle {
    color: #E0E0E0;
}

body[data-theme="scandinavian"] .section-label {
    color: #8E8E8E;
}

body[data-theme="scandinavian"] .section-title {
    color: #1A1A1A;
}

body[data-theme="scandinavian"] .service-card {
    background: #F9F9F9;
    border: 1px solid #E5E5E5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body[data-theme="scandinavian"] .service-card:hover {
    background: #FFFFFF;
    border-color: #1A1A1A;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

body[data-theme="scandinavian"] .card-content h3 {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="scandinavian"] .card-number {
    color: #F5F5F5;
    opacity: 0.5;
}

body[data-theme="scandinavian"] .card-details p,
body[data-theme="scandinavian"] .card-details li {
    color: #5E5E5E;
}

body[data-theme="scandinavian"] .card-details li {
    border-bottom-color: #E5E5E5;
}

body[data-theme="scandinavian"] .card-details li::before {
    color: #1A1A1A;
}

body[data-theme="scandinavian"] .stats-bar {
    background: #F9F9F9;
    border: 1px solid #E5E5E5;
}

body[data-theme="scandinavian"] .stat-number {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="scandinavian"] .stat-label {
    color: #8E8E8E;
}

body[data-theme="scandinavian"] .portfolio-item {
    border: 1px solid #E5E5E5;
    background: #F9F9F9;
}

body[data-theme="scandinavian"] .portfolio-info h3 {
    color: #1A1A1A;
}

body[data-theme="scandinavian"] .category {
    color: #8E8E8E;
}

body[data-theme="scandinavian"] .about-content p {
    color: #5E5E5E;
}

body[data-theme="scandinavian"] .contact-form input,
body[data-theme="scandinavian"] .contact-form textarea {
    background: #F9F9F9;
    border: 1px solid #E5E5E5;
    color: #2E2E2E;
}

body[data-theme="scandinavian"] .contact-form input:focus,
body[data-theme="scandinavian"] .contact-form textarea:focus {
    border-color: #1A1A1A;
    background: #FFFFFF;
}

body[data-theme="scandinavian"] .area-title {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="scandinavian"] .area-subtitle {
    color: #5E5E5E;
}

body[data-theme="scandinavian"] .map-container {
    background: #F9F9F9;
    border: 1px solid #E5E5E5;
}

body[data-theme="scandinavian"] .address-input {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    color: #2E2E2E;
}

body[data-theme="scandinavian"] .check-btn {
    background: #1A1A1A;
}

/* THEME 3: ENHANCED Soft Brutalism - Cutting Edge */
body[data-theme="soft-brutalist"] .services {
    background: linear-gradient(180deg,
        #F0EBE3 0%,      /* Light cream */
        #E8DFD3 25%,     /* Warm cream */
        #D8CBC0 50%,     /* Medium cream */
        #C8B7AA 75%,     /* Tan */
        #B8A394 100%     /* Rich tan */
    );
    color: #0A0A0A;
    position: relative;
}

body[data-theme="soft-brutalist"] .portfolio,
body[data-theme="soft-brutalist"] .about {
    background: linear-gradient(180deg,
        #B8A394 0%,      /* Rich tan */
        #A08978 50%,     /* Brown */
        #8E775F 100%     /* Dark brown */
    );
    color: #0A0A0A;
    position: relative;
}

body[data-theme="soft-brutalist"] .contact {
    background: linear-gradient(180deg,
        #8E775F 0%,      /* Dark brown */
        #746049 50%,     /* Darker brown */
        #5E4E39 100%     /* Very dark brown */
    );
    color: #F0EBE3;
    position: relative;
}

/* Adjust text colors for darker sections */
body[data-theme="soft-brutalist"] .about .section-label,
body[data-theme="soft-brutalist"] .about .section-title,
body[data-theme="soft-brutalist"] .contact .section-label,
body[data-theme="soft-brutalist"] .contact .section-title {
    color: #F0EBE3;
}

body[data-theme="soft-brutalist"] .about p,
body[data-theme="soft-brutalist"] .contact p {
    color: #F0EBE3;
}

body[data-theme="soft-brutalist"] .contact .area-title {
    color: #F0EBE3;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="soft-brutalist"] .contact .area-subtitle {
    color: #E8DFD3;
}

/* Geometric background shapes */
body[data-theme="soft-brutalist"] .services::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: #0A0A0A;
    transform: rotate(45deg);
    opacity: 0.03;
    z-index: 0;
}

body[data-theme="soft-brutalist"] .services::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -3%;
    width: 200px;
    height: 200px;
    border: 8px solid #0A0A0A;
    opacity: 0.05;
    z-index: 0;
}

body[data-theme="soft-brutalist"] .section-label {
    color: #0A0A0A;
}

body[data-theme="soft-brutalist"] .section-title {
    color: #0A0A0A;
}

body[data-theme="soft-brutalist"] .service-card {
    background: #FFFFFF;
    border: 5px solid #0A0A0A;
    box-shadow: 12px 12px 0px #0A0A0A;
    border-radius: 0;
    position: relative;
    overflow: visible;
}

body[data-theme="soft-brutalist"] .service-card::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: #FF4500;
    z-index: -1;
}

body[data-theme="soft-brutalist"] .service-card:nth-child(2)::before {
    background: #4169E1;
}

body[data-theme="soft-brutalist"] .service-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 18px 18px 0px #0A0A0A;
}

body[data-theme="soft-brutalist"] .card-content h3 {
    color: #0A0A0A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="soft-brutalist"] .card-number {
    color: #0A0A0A;
    opacity: 0.08;
    font-weight: 900;
}

body[data-theme="soft-brutalist"] .card-details p {
    color: #0A0A0A;
    font-weight: 600;
    background: #F0EBE3;
    padding: 1.25rem;
    border-left: 5px solid #0A0A0A;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

body[data-theme="soft-brutalist"] .card-details li {
    color: #0A0A0A;
    border-bottom: 3px solid #0A0A0A;
    font-weight: 700;
    padding: 1rem 0;
    font-size: 1.05rem;
}

body[data-theme="soft-brutalist"] .card-details li::before {
    content: '▪';
    color: #FF4500;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

body[data-theme="soft-brutalist"] .service-card:nth-child(2) .card-details li::before {
    color: #4169E1;
}

body[data-theme="soft-brutalist"] .stats-bar {
    background: #FFFFFF;
    border: 6px solid #0A0A0A;
    border-radius: 0;
    box-shadow: 10px 10px 0px #0A0A0A;
    position: relative;
}

body[data-theme="soft-brutalist"] .stats-bar::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: #FFD700;
    z-index: -1;
}

body[data-theme="soft-brutalist"] .stat-number {
    color: #0A0A0A;
    background: none;
    -webkit-text-fill-color: unset;
    font-weight: 900;
}

body[data-theme="soft-brutalist"] .stat-label {
    color: #0A0A0A;
    font-weight: 800;
}

body[data-theme="soft-brutalist"] .portfolio-item {
    border: 5px solid #0A0A0A;
    border-radius: 0;
    background: #FFFFFF;
    box-shadow: 8px 8px 0px #0A0A0A;
    position: relative;
}

body[data-theme="soft-brutalist"] .portfolio-item::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #FF4500;
    z-index: -1;
}

body[data-theme="soft-brutalist"] .portfolio-item:nth-child(2)::before {
    background: #4169E1;
}

body[data-theme="soft-brutalist"] .portfolio-item:nth-child(3)::before {
    background: #32CD32;
}

body[data-theme="soft-brutalist"] .portfolio-info h3 {
    color: #0A0A0A;
    text-transform: uppercase;
    font-weight: 900;
}

body[data-theme="soft-brutalist"] .category {
    color: #FFF;
    border: none;
    background: #0A0A0A;
    text-transform: uppercase;
    font-weight: 900;
    padding: 0.5rem 1rem;
}

body[data-theme="soft-brutalist"] .contact-form input,
body[data-theme="soft-brutalist"] .contact-form textarea {
    background: #FFFFFF;
    border: 4px solid #0A0A0A;
    color: #0A0A0A;
    border-radius: 0;
    font-weight: 600;
}

body[data-theme="soft-brutalist"] .contact-form input:focus,
body[data-theme="soft-brutalist"] .contact-form textarea:focus {
    box-shadow: 8px 8px 0px #0A0A0A;
    transform: translate(-2px, -2px);
}

/* Map section for Brutalist */
body[data-theme="soft-brutalist"] .service-area-section {
    position: relative;
}

body[data-theme="soft-brutalist"] .area-title {
    background: none;
    -webkit-text-fill-color: unset;
    color: #0A0A0A;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
}

body[data-theme="soft-brutalist"] .area-subtitle {
    color: #0A0A0A;
    font-weight: 600;
}

body[data-theme="soft-brutalist"] .map-container {
    background: #FFFFFF;
    border: 6px solid #0A0A0A;
    box-shadow: 12px 12px 0px #0A0A0A;
    border-radius: 0;
}

body[data-theme="soft-brutalist"] .address-input {
    background: #F0EBE3;
    border: 4px solid #0A0A0A;
    border-radius: 0;
    color: #0A0A0A;
    font-weight: 600;
}

body[data-theme="soft-brutalist"] .address-input:focus {
    background: #FFF;
    box-shadow: 6px 6px 0px #0A0A0A;
}

body[data-theme="soft-brutalist"] .check-btn {
    background: #0A0A0A;
    border: none;
    border-radius: 0;
    box-shadow: 8px 8px 0px #FF4500;
}

body[data-theme="soft-brutalist"] .check-btn:hover {
    box-shadow: 12px 12px 0px #FF4500;
    transform: translate(-2px, -2px);
}

body[data-theme="soft-brutalist"] .map-canvas {
    border: 4px solid #0A0A0A;
    border-radius: 0;
}

/* THEME 4: Neo-Brutalism Pastel */
body[data-theme="neo-brutalist"] .services {
    background: linear-gradient(180deg,
        #FFE5E5 0%,      /* Light pink */
        #FFD5D5 25%,     /* Soft pink */
        #FFC8C8 50%,     /* Light peach */
        #F5B5B5 75%,     /* Peach rose */
        #E5A5A5 100%     /* Medium rose */
    );
    color: #1A1A1A;
}

body[data-theme="neo-brutalist"] .portfolio,
body[data-theme="neo-brutalist"] .about {
    background: linear-gradient(180deg,
        #E5A5A5 0%,      /* Medium rose */
        #D5B5E5 50%,     /* Lavender */
        #C5A5D5 100%     /* Medium lavender */
    );
    color: #1A1A1A;
}

body[data-theme="neo-brutalist"] .contact {
    background: linear-gradient(180deg,
        #C5A5D5 0%,      /* Medium lavender */
        #A585B5 50%,     /* Deep lavender */
        #856595 100%     /* Rich purple */
    );
    color: #FFFFFF;
}

/* Adjust text colors for darker sections */
body[data-theme="neo-brutalist"] .contact .section-label,
body[data-theme="neo-brutalist"] .contact .section-title {
    color: #FFFFFF;
}

body[data-theme="neo-brutalist"] .contact p {
    color: #FFFFFF;
}

body[data-theme="neo-brutalist"] .contact .area-title {
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="neo-brutalist"] .contact .area-subtitle {
    color: #FFE5E5;
}

body[data-theme="neo-brutalist"] .section-label {
    color: #1A1A1A;
    font-weight: 800;
}

body[data-theme="neo-brutalist"] .section-title {
    color: #1A1A1A;
    font-weight: 900;
    text-transform: uppercase;
}

body[data-theme="neo-brutalist"] .service-card {
    background: #FFFFFF;
    border: 5px solid #1A1A1A;
    box-shadow: 10px 10px 0px #FFB5E8;
    border-radius: 20px;
}

body[data-theme="neo-brutalist"] .service-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px #B5FFE8;
}

body[data-theme="neo-brutalist"] .service-card:nth-child(2) {
    box-shadow: 10px 10px 0px #B5FFE8;
}

body[data-theme="neo-brutalist"] .service-card:nth-child(2):hover {
    box-shadow: 15px 15px 0px #FFB5E8;
}

body[data-theme="neo-brutalist"] .card-content h3 {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: unset;
    text-transform: uppercase;
}

body[data-theme="neo-brutalist"] .card-number {
    color: #FFE5E5;
    opacity: 0.6;
}

body[data-theme="neo-brutalist"] .card-details p,
body[data-theme="neo-brutalist"] .card-details li {
    color: #3A3A3A;
}

body[data-theme="neo-brutalist"] .card-details li {
    border-bottom: 3px solid #FFB5E8;
}

body[data-theme="neo-brutalist"] .card-details li::before {
    content: '●';
    color: #B5FFE8;
}

body[data-theme="neo-brutalist"] .stats-bar {
    background: #FFFFFF;
    border: 5px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #E5E5FF;
}

body[data-theme="neo-brutalist"] .stat-number {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="neo-brutalist"] .stat-label {
    color: #1A1A1A;
}

body[data-theme="neo-brutalist"] .portfolio-item {
    border: 4px solid #1A1A1A;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 6px 6px 0px #FFE5E5;
}

body[data-theme="neo-brutalist"] .portfolio-item:nth-child(2) {
    box-shadow: 6px 6px 0px #E5F5E5;
}

body[data-theme="neo-brutalist"] .portfolio-item:nth-child(3) {
    box-shadow: 6px 6px 0px #E5E5FF;
}

body[data-theme="neo-brutalist"] .portfolio-info h3 {
    color: #1A1A1A;
    text-transform: uppercase;
}

body[data-theme="neo-brutalist"] .category {
    color: #1A1A1A;
    border: 3px solid #1A1A1A;
    background: #FFB5E8;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

body[data-theme="neo-brutalist"] .contact-form input,
body[data-theme="neo-brutalist"] .contact-form textarea {
    background: #FFFFFF;
    border: 4px solid #1A1A1A;
    color: #1A1A1A;
    border-radius: 15px;
}

body[data-theme="neo-brutalist"] .contact-form input:focus,
body[data-theme="neo-brutalist"] .contact-form textarea:focus {
    box-shadow: 8px 8px 0px #B5FFE8;
}

body[data-theme="neo-brutalist"] .area-title {
    color: #1A1A1A;
    background: none;
    -webkit-text-fill-color: unset;
    text-transform: uppercase;
}

body[data-theme="neo-brutalist"] .map-container {
    background: #FFFFFF;
    border: 5px solid #1A1A1A;
    box-shadow: 10px 10px 0px #FFB5E8;
}

body[data-theme="neo-brutalist"] .address-input {
    background: #FFF;
    border: 4px solid #1A1A1A;
    color: #1A1A1A;
}

body[data-theme="neo-brutalist"] .check-btn {
    background: #1A1A1A;
    box-shadow: 8px 8px 0px #B5FFE8;
}

body[data-theme="neo-brutalist"] .check-btn:hover {
    box-shadow: 12px 12px 0px #B5FFE8;
}

/* THEME 5: Warm Terracotta & Cream */
body[data-theme="terracotta"] .services {
    background: linear-gradient(180deg,
        #FFF8F0 0%,      /* Light cream */
        #FFE8D6 25%,     /* Warm cream */
        #FFD8C0 50%,     /* Peachy cream */
        #F0B090 75%,     /* Light terracotta */
        #E09070 100%     /* Medium terracotta */
    );
    color: #3E2723;
}

body[data-theme="terracotta"] .portfolio,
body[data-theme="terracotta"] .about {
    background: linear-gradient(180deg,
        #E09070 0%,      /* Medium terracotta */
        #D07856 50%,     /* Rich terracotta */
        #C06545 100%     /* Deep terracotta */
    );
    color: #3E2723;
}

body[data-theme="terracotta"] .contact {
    background: linear-gradient(180deg,
        #C06545 0%,      /* Deep terracotta */
        #A05535 50%,     /* Darker terracotta */
        #804525 100%     /* Very dark terracotta */
    );
    color: #FFF8F0;
}

/* Adjust text colors for darker sections */
body[data-theme="terracotta"] .about .section-label,
body[data-theme="terracotta"] .about .section-title,
body[data-theme="terracotta"] .contact .section-label,
body[data-theme="terracotta"] .contact .section-title {
    color: #FFF8F0;
}

body[data-theme="terracotta"] .about p,
body[data-theme="terracotta"] .contact p {
    color: #FFF8F0;
}

body[data-theme="terracotta"] .contact .area-title {
    color: #FFF8F0;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="terracotta"] .contact .area-subtitle {
    color: #FFE8D6;
}

body[data-theme="terracotta"] .section-label {
    color: #E07856;
}

body[data-theme="terracotta"] .section-title {
    background: linear-gradient(135deg, #E07856, #D4624F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="terracotta"] .service-card {
    background: #FFFFFF;
    border: 2px solid #E07856;
    box-shadow: 0 15px 40px rgba(224, 120, 86, 0.2);
}

body[data-theme="terracotta"] .service-card:hover {
    border-color: #D4624F;
    box-shadow: 0 20px 50px rgba(224, 120, 86, 0.3);
    transform: translateY(-10px);
}

body[data-theme="terracotta"] .card-content h3 {
    background: linear-gradient(135deg, #E07856, #D4624F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="terracotta"] .card-details li::before {
    color: #E07856;
}

body[data-theme="terracotta"] .stats-bar {
    background: #FFFFFF;
    border: 2px solid #E07856;
}

body[data-theme="terracotta"] .map-container {
    background: #FFFFFF;
    border: 2px solid #E07856;
}

body[data-theme="terracotta"] .check-btn {
    background: linear-gradient(135deg, #E07856, #D4624F);
}

/* THEME 6: Cool Slate & Mint */
body[data-theme="slate-mint"] .services {
    background: linear-gradient(180deg,
        #F5F9F8 0%,      /* Light mint cream */
        #E8F4F1 25%,     /* Soft mint */
        #D8EEE8 50%,     /* Medium mint */
        #C0E0D5 75%,     /* Mint green */
        #A8D0C0 100%     /* Medium teal */
    );
    color: #2C3E50;
}

body[data-theme="slate-mint"] .portfolio,
body[data-theme="slate-mint"] .about {
    background: linear-gradient(180deg,
        #A8D0C0 0%,      /* Medium teal */
        #88B8A8 50%,     /* Deeper teal */
        #6A9A8A 100%     /* Slate teal */
    );
    color: #2C3E50;
}

body[data-theme="slate-mint"] .contact {
    background: linear-gradient(180deg,
        #6A9A8A 0%,      /* Slate teal */
        #4E7068 50%,     /* Dark slate */
        #395550 100%     /* Very dark slate */
    );
    color: #F5F9F8;
}

/* Adjust text colors for darker sections */
body[data-theme="slate-mint"] .about .section-label,
body[data-theme="slate-mint"] .about .section-title,
body[data-theme="slate-mint"] .contact .section-label,
body[data-theme="slate-mint"] .contact .section-title {
    color: #F5F9F8;
}

body[data-theme="slate-mint"] .about p,
body[data-theme="slate-mint"] .contact p {
    color: #F5F9F8;
}

body[data-theme="slate-mint"] .contact .area-title {
    color: #F5F9F8;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="slate-mint"] .contact .area-subtitle {
    color: #E8F4F1;
}

body[data-theme="slate-mint"] .section-label {
    color: #5D7A6D;
}

body[data-theme="slate-mint"] .section-title {
    background: linear-gradient(135deg, #2C3E50, #5D7A6D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="slate-mint"] .service-card {
    background: #FFFFFF;
    border: 2px solid #A8E6CF;
    box-shadow: 0 15px 40px rgba(168, 230, 207, 0.25);
}

body[data-theme="slate-mint"] .service-card:hover {
    border-color: #5D7A6D;
    box-shadow: 0 20px 50px rgba(93, 122, 109, 0.3);
    transform: translateY(-10px);
}

body[data-theme="slate-mint"] .card-content h3 {
    color: #2C3E50;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="slate-mint"] .card-details li::before {
    color: #A8E6CF;
}

body[data-theme="slate-mint"] .stats-bar {
    background: #FFFFFF;
    border: 2px solid #A8E6CF;
}

body[data-theme="slate-mint"] .map-container {
    background: #FFFFFF;
    border: 2px solid #A8E6CF;
}

body[data-theme="slate-mint"] .check-btn {
    background: linear-gradient(135deg, #5D7A6D, #A8E6CF);
}

/* THEME 7: Blush & Gold Luxury */
body[data-theme="blush-gold"] .services {
    background: linear-gradient(180deg,
        #FFF5F7 0%,      /* Light blush */
        #FFE8ED 25%,     /* Soft blush */
        #FFD8E3 50%,     /* Pink blush */
        #F5C0D0 75%,     /* Rose blush */
        #E8A8B8 100%     /* Medium rose */
    );
    color: #4A2C2A;
}

body[data-theme="blush-gold"] .portfolio,
body[data-theme="blush-gold"] .about {
    background: linear-gradient(180deg,
        #E8A8B8 0%,      /* Medium rose */
        #D8A090 50%,     /* Rose gold */
        #C88870 100%     /* Rich rose gold */
    );
    color: #4A2C2A;
}

body[data-theme="blush-gold"] .contact {
    background: linear-gradient(180deg,
        #C88870 0%,      /* Rich rose gold */
        #A87050 50%,     /* Deep gold */
        #886040 100%     /* Dark bronze */
    );
    color: #FFF5F7;
}

/* Adjust text colors for darker sections */
body[data-theme="blush-gold"] .about .section-label,
body[data-theme="blush-gold"] .about .section-title,
body[data-theme="blush-gold"] .contact .section-label,
body[data-theme="blush-gold"] .contact .section-title {
    color: #FFF5F7;
}

body[data-theme="blush-gold"] .about p,
body[data-theme="blush-gold"] .contact p {
    color: #FFF5F7;
}

body[data-theme="blush-gold"] .contact .area-title {
    color: #FFF5F7;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="blush-gold"] .contact .area-subtitle {
    color: #FFE8ED;
}

body[data-theme="blush-gold"] .section-label {
    color: #D4AF37;
}

body[data-theme="blush-gold"] .section-title {
    background: linear-gradient(135deg, #D4AF37, #FFD1DC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="blush-gold"] .service-card {
    background: #FFFFFF;
    border: 2px solid #FFD1DC;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

body[data-theme="blush-gold"] .service-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    transform: translateY(-10px);
}

body[data-theme="blush-gold"] .card-content h3 {
    background: linear-gradient(135deg, #D4AF37, #C49A30);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="blush-gold"] .card-details li::before {
    color: #D4AF37;
}

body[data-theme="blush-gold"] .stats-bar {
    background: #FFFFFF;
    border: 2px solid #FFD1DC;
}

body[data-theme="blush-gold"] .map-container {
    background: #FFFFFF;
    border: 2px solid #FFD1DC;
}

body[data-theme="blush-gold"] .check-btn {
    background: linear-gradient(135deg, #D4AF37, #C49A30);
}

/* THEME 8: Monochrome Bold */
body[data-theme="monochrome"] .services {
    background: linear-gradient(180deg,
        #FAFAFA 0%,      /* Nearly white */
        #F0F0F0 25%,     /* Very light gray */
        #E0E0E0 50%,     /* Light gray */
        #C8C8C8 75%,     /* Medium gray */
        #A8A8A8 100%     /* Gray */
    );
    color: #0A0A0A;
}

body[data-theme="monochrome"] .portfolio,
body[data-theme="monochrome"] .about {
    background: linear-gradient(180deg,
        #A8A8A8 0%,      /* Gray */
        #888888 50%,     /* Darker gray */
        #686868 100%     /* Dark gray */
    );
    color: #0A0A0A;
}

body[data-theme="monochrome"] .contact {
    background: linear-gradient(180deg,
        #686868 0%,      /* Dark gray */
        #404040 50%,     /* Very dark gray */
        #1A1A1A 100%     /* Almost black */
    );
    color: #FAFAFA;
}

/* Adjust text colors for darker sections */
body[data-theme="monochrome"] .about .section-label,
body[data-theme="monochrome"] .about .section-title,
body[data-theme="monochrome"] .contact .section-label,
body[data-theme="monochrome"] .contact .section-title {
    color: #FAFAFA;
}

body[data-theme="monochrome"] .about p,
body[data-theme="monochrome"] .contact p {
    color: #FAFAFA;
}

body[data-theme="monochrome"] .contact .area-title {
    color: #FAFAFA;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="monochrome"] .contact .area-subtitle {
    color: #E0E0E0;
}

body[data-theme="monochrome"] .section-label {
    color: #666;
}

body[data-theme="monochrome"] .section-title {
    color: #0A0A0A;
    font-weight: 900;
}

body[data-theme="monochrome"] .service-card {
    background: #FFFFFF;
    border: 3px solid #0A0A0A;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body[data-theme="monochrome"] .service-card:hover {
    border-color: #333;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

body[data-theme="monochrome"] .card-content h3 {
    color: #0A0A0A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="monochrome"] .card-number {
    color: #E8E8E8;
}

body[data-theme="monochrome"] .card-details p,
body[data-theme="monochrome"] .card-details li {
    color: #333;
}

body[data-theme="monochrome"] .card-details li {
    border-bottom-color: #E0E0E0;
}

body[data-theme="monochrome"] .card-details li::before {
    color: #0A0A0A;
}

body[data-theme="monochrome"] .stats-bar {
    background: #FFFFFF;
    border: 3px solid #0A0A0A;
}

body[data-theme="monochrome"] .stat-number {
    color: #0A0A0A;
    background: none;
    -webkit-text-fill-color: unset;
}

body[data-theme="monochrome"] .stat-label {
    color: #666;
}

body[data-theme="monochrome"] .portfolio-item {
    border: 3px solid #0A0A0A;
    background: #FFFFFF;
}

body[data-theme="monochrome"] .portfolio-info h3 {
    color: #0A0A0A;
}

body[data-theme="monochrome"] .category {
    color: #FFFFFF;
    background: #0A0A0A;
}

body[data-theme="monochrome"] .contact-form input,
body[data-theme="monochrome"] .contact-form textarea {
    background: #FFFFFF;
    border: 2px solid #0A0A0A;
    color: #0A0A0A;
}

body[data-theme="monochrome"] .map-container {
    background: #FFFFFF;
    border: 3px solid #0A0A0A;
}

body[data-theme="monochrome"] .address-input {
    background: #FAFAFA;
    border: 2px solid #0A0A0A;
}

body[data-theme="monochrome"] .check-btn {
    background: #0A0A0A;
}

/* THEME 9: Blush Pink Gradient - Morphing to Burgundy */
body[data-theme="blush-gradient"] .services {
    background: linear-gradient(180deg,
        #FFE4E1 0%,      /* Light blush pink */
        #FFC0CB 25%,     /* Medium blush */
        #FFB6C1 50%,     /* Light pink */
        #E89EB2 75%,     /* Deeper rose */
        #C97B94 100%     /* Rich burgundy pastel */
    );
    color: #4A1F3A;
}

body[data-theme="blush-gradient"] .portfolio,
body[data-theme="blush-gradient"] .about {
    background: linear-gradient(180deg,
        #C97B94 0%,      /* Rich burgundy pastel */
        #B36682 50%,     /* Deeper burgundy */
        #9D5270 100%    /* Deep burgundy */
    );
    color: #4A1F3A;
}

body[data-theme="blush-gradient"] .contact {
    background: linear-gradient(180deg,
        #9D5270 0%,      /* Deep burgundy */
        #873E5E 50%,     /* Richer burgundy */
        #71294C 100%     /* Very rich burgundy */
    );
    color: #FFE4E1;
}

/* Adjust text colors for darker sections */
body[data-theme="blush-gradient"] .about .section-label,
body[data-theme="blush-gradient"] .about .section-title,
body[data-theme="blush-gradient"] .contact .section-label,
body[data-theme="blush-gradient"] .contact .section-title {
    color: #FFE4E1;
}

body[data-theme="blush-gradient"] .about p,
body[data-theme="blush-gradient"] .contact p {
    color: #FFE4E1;
}

body[data-theme="blush-gradient"] .section-label {
    color: #C9356D;
}

body[data-theme="blush-gradient"] .section-title {
    background: linear-gradient(135deg, #C9356D, #8B2252);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="blush-gradient"] .service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 53, 109, 0.3);
    box-shadow: 0 15px 40px rgba(201, 53, 109, 0.2);
}

body[data-theme="blush-gradient"] .service-card:hover {
    border-color: #C9356D;
    box-shadow: 0 20px 50px rgba(201, 53, 109, 0.3);
    transform: translateY(-10px);
}

body[data-theme="blush-gradient"] .card-content h3 {
    background: linear-gradient(135deg, #C9356D, #FF69B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="blush-gradient"] .card-number {
    color: #FFB6C1;
    opacity: 0.3;
}

body[data-theme="blush-gradient"] .card-details p,
body[data-theme="blush-gradient"] .card-details li {
    color: #4A1F3A;
}

body[data-theme="blush-gradient"] .card-details li {
    border-bottom-color: rgba(201, 53, 109, 0.2);
}

body[data-theme="blush-gradient"] .card-details li::before {
    color: #C9356D;
}

body[data-theme="blush-gradient"] .stats-bar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 53, 109, 0.3);
}

body[data-theme="blush-gradient"] .stat-number {
    background: linear-gradient(135deg, #C9356D, #FF69B4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="blush-gradient"] .stat-label {
    color: #6B2D4F;
}

body[data-theme="blush-gradient"] .portfolio-item {
    border: 2px solid rgba(201, 53, 109, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

body[data-theme="blush-gradient"] .portfolio-info h3 {
    color: #4A1F3A;
}

body[data-theme="blush-gradient"] .category {
    color: #FFF;
    background: linear-gradient(135deg, #C9356D, #8B2252);
}

body[data-theme="blush-gradient"] .contact-form input,
body[data-theme="blush-gradient"] .contact-form textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(201, 53, 109, 0.3);
    color: #4A1F3A;
}

body[data-theme="blush-gradient"] .contact-form input:focus,
body[data-theme="blush-gradient"] .contact-form textarea:focus {
    border-color: #C9356D;
    background: rgba(255, 255, 255, 0.95);
}

body[data-theme="blush-gradient"] .area-title {
    background: linear-gradient(135deg, #8B2252, #C9356D);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="blush-gradient"] .area-subtitle {
    color: #8B2252;
    font-weight: 600;
}

body[data-theme="blush-gradient"] .map-container {
    background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
    border: 3px solid #FFB6C1;
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.3);
}

body[data-theme="blush-gradient"] .address-input {
    background: #FFF;
    border: 2px solid #FFC0CB;
    color: #4A1F3A;
}

body[data-theme="blush-gradient"] .address-input:focus {
    background: #FFF;
    border-color: #FFB6C1;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.3);
}

body[data-theme="blush-gradient"] .check-btn {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

body[data-theme="blush-gradient"] .check-btn:hover {
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.4);
    transform: translateY(-3px);
}

body[data-theme="blush-gradient"] .map-canvas {
    border: 2px solid #FFC0CB;
}

body[data-theme="blush-gradient"] .radius-result.in-range {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.1));
    border: 2px solid #FFB6C1;
    color: #C9356D;
}

body[data-theme="blush-gradient"] .radius-result.out-of-range {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(255, 192, 203, 0.08));
    border: 2px solid #FFB6C1;
    color: #8B2252;
}
