:root {
    /* Colors - PaintedMango Theme */
    --bg-color: #FFFDF5;
    /* Warm Cream */
    --card-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --text-primary: #2D2D2D;
    /* Charcoal */
    --text-secondary: #5D5D5D;

    --brand-mango: #FF9E00;
    --brand-teal: #00897B;
    --brand-coral: #FF7043;
    --brand-green: #8BC34A;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transition */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utilities */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.highlight {
    color: var(--brand-mango);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 158, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-mango), var(--brand-coral));
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
}

/* Cursor Customization */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-mango);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--brand-teal);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 245, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo .dot {
    color: var(--brand-mango);
    font-size: 3rem;
    line-height: 0;
    position: relative;
    top: 5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.nav-links li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--brand-teal);
    transition: width 0.3s ease;
}

.nav-links li a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    z-index: 1;
}

.blob-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.blob {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: float 8s ease-in-out infinite;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.blob-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.blob-2 {
    top: 10%;
    left: -10%;
    animation-delay: 2s;
    transform: scale(0.8);
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 10%;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 158, 0, 0.1);
    border-radius: 50%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Work Section */
.work-section {
    padding: var(--spacing-xl) 10%;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 137, 123, 0.05) 100%);
    border-radius: 0 0 50px 50px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.work-item {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-preview {
    height: 350px;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.work-item:hover .work-preview {
    transform: scale(1.03) rotate(1deg);
}

/* Restaurant - Dark elegant with gold accent */
.fruit-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #C9A227 100%);
    position: relative;
}

.fruit-1::after {
    content: '🍷';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

/* Clothing - Minimalist cream/fashion tones */
.fruit-2 {
    background: linear-gradient(135deg, #F5F5F0 0%, #E8D5C4 50%, #D4A373 100%);
    position: relative;
}

.fruit-2::after {
    content: '👔';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

/* Fitness - Bold dark with neon green */
.fruit-3 {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #ADFF2F 100%);
    position: relative;
}

.fruit-3::after {
    content: '💪';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.work-info h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

.work-info p {
    color: var(--text-secondary);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 10%;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 700px;
    padding: 4rem;
    text-align: center;
    background: white;
}

.contact-container h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-container p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-color);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    background: white;
    border-color: var(--brand-teal);
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.1);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 3rem 10%;
    text-align: center;
    color: var(--text-secondary);
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 350px;
        margin-top: 3rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }
}

/* Existing inputs are styled, adding textarea and radio support */
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--brand-mango);
    background: white;
}

.preference-group {
    text-align: left;
    margin-top: 1rem;
}

.preference-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--brand-teal);
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked {
    background: var(--brand-teal);
    box-shadow: inset 0 0 0 3px white;
}