/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Cinzel:wght@400;600;700&display=swap');

:root {
    --bg-color: #E6E0D8;
    /* Soft light beige/greige */
    --text-color: #4A4540;
    /* Darker brown/grey for text */
    --accent-color: #8C5E5E;
    /* Muted reddish/brown for accents (like in the ref) */
    --hover-color: #D46A6A;
    /* Slightly brighter for hover states */
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--bg-color);
    /* Matches body for clean look */
    /* Optional: subtle shadow if scrolling, but keeping flat for now as "clear" */
}

/* Logo Area */
.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 60px;
    /* Adjust based on preference, slightly larger than placeholder */
    width: auto;
    object-fit: contain;
    /* Optional: drop shadow to make it pop against the light background if transparent */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    outline: none;
}

/* Navigation Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--hover-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--hover-color);
}

nav a:hover::after {
    width: 100%;
}

/* Active State Example */
nav a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Main Content Area */
main {
    margin-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
    /* Centering the hero section */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
    gap: 20px;
    /* Adds space between the stacked sections */
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 50px;
    padding: 50px 0;
}

/* Responsive wrap */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
    }
}

.hero-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content-text h1 {
    font-size: 3.5rem;
    font-weight: 500;
    /* Regular but large */
    line-height: 1.1;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    /* Adding some style to match the feel of "Dreams" */
}

/* Making "The Well of Dreams" stand out optionally, or keep uniform */
/* .hero-content-text h1 span { color: var(--accent-color); } */

.hero-content-text p {
    font-size: 1rem;
    max-width: 600px;
    color: #6D665E;
    /* Slightly softer text for body */
    text-align: justify;
    /* Or left, depending on preference */
}

@media (max-width: 900px) {
    .hero-content-text h1 {
        font-size: 2.5rem;
    }

    .hero-content-text p {
        margin: 0 auto;
        text-align: center;
    }
}

/* Stats */
.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .stats-container {
        justify-content: center;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5E8C5E;
    /* Greenish tone from the reference image's fox/nature vibe */
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8C8C8C;
}

/* Hero Image */
.hero-content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    /* Optional modern feel: subtle float animation */
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Section */
.services-section {
    width: 100%;
    max-width: 1000px;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.services-header p {
    color: #8C8C8C;
    font-size: 0.95rem;
}

.services-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* Character Image - Positioned Left */
.services-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Push closer to text */
}

.services-char {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    /* Helper: flip if needed, but usually image is drawn to look L or R.
       The request said "as if she was showing something" so position is key. */
}

/* Services List - Right */
.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    /* Center text as per reference image, or left if preferred */
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.service-item p {
    font-size: 0.9rem;
    color: #6D665E;
    max-width: 400px;
    margin: 0 auto;
}

/* Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.social-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    background: linear-gradient(135deg, #BFA08E, #A68A78);
    /* Subtle gradient */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 220px;
    box-shadow: 0 5px 15px rgba(166, 138, 120, 0.3);
    overflow: hidden;
    /* For the shine effect */
}

/* Shine Effect */
.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(166, 138, 120, 0.4);
    background: linear-gradient(135deg, #cbb0a0, #bfa08e);
}

.social-btn:active {
    transform: translateY(-1px);
}

/* Decorative Line */
.separator-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D46A6A, transparent);
    margin: 10px 0;
    position: relative;
    opacity: 0.6;
}

.separator-line::after {
    content: '❤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-color);
    /* Matches bg to mask line */
    padding: 0 10px;
    color: #D46A6A;
    font-size: 1.2rem;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    max-width: 1400px;
    /* Wider for the gallery to breathe */
    padding: 40px 0 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.gallery-header p {
    color: #8C8C8C;
    font-size: 1rem;
}

.gallery-decoration {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.heart-scribble {
    width: 200px;
    height: 40px;
    overflow: visible;
}

/* Standard Gallery Layout (Robust Grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: 0.6fr 3fr 0.6fr;
    /* Center Dominant */
    gap: 20px;
    width: 100%;
    max-width: 1600px;
    /* Ultra wide */
    margin: 0 auto 50px auto;
    padding: 0 10px;
    align-items: center;
}

/* Columns */
.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.left-col,
.right-col,
.center-col {
    width: auto !important;
    /* Let Grid control width */
    flex: none;
}

/* Fix Images */
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    width: 100%;
}

/* Ensure images fill container without squashing */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CRITICAL: Prevents squashing */
    display: block;
}

/* Define heights */
.left-col .gallery-item,
.right-col .gallery-item {
    height: 300px;
    /* Fixed height for side items */
}

.center-col .gallery-item.big-item {
    height: 700px;
    /* Taller center item */
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        display: flex;
        /* Switch to flex column on mobile */
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .gallery-col {
        width: 100%;
        max-width: 500px;
    }

    .center-col .gallery-item.big-item {
        height: 400px;
        /* Smaller height on mobile */
    }
}

.gallery-footer {
    display: flex;
    justify-content: center;
}

/* Gallery Button with Elegant Pulse */
.gallery-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 60px;
    background-color: #A68A78;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(166, 138, 120, 0.4);
}

/* Subtle glow pulse */
.gallery-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
    opacity: 0;
    z-index: -1;
}

.gallery-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(166, 138, 120, 0.6);
    background-color: #9C7D6B;
    /* Slightly darker shift */
}

.gallery-btn:hover::before {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Optional: Continuous subtle pulse if not hovering, or just keep clean */
@keyframes subtle-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(166, 138, 120, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(166, 138, 120, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(166, 138, 120, 0);
    }
}

/* Add this animation only if requested, but for "better", clean hover is usually best.
   If specific active pulse is wanted: */
/* .gallery-btn { animation: subtle-pulse 2s infinite; } */


@media (max-width: 900px) {
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .left-col,
    .right-col,
    .center-col {
        width: 100%;
        max-width: 500px;
    }

    .center-col .gallery-item {
        height: 400px;
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    font-weight: 300;
}

/* Footer */
footer {
    background-color: #3E3025;
    /* Dark elegant brown */
    color: #E6E0D8;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-content p {
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-icon {
    text-decoration: none;
    color: #E6E0D8;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-icon:hover {
    color: white;
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}



@media (max-width: 900px) {
    .services-content {
        flex-direction: column;
    }

    .services-image-container {
        order: -1;
        /* Image first on mobile? or last? Usually top. */
        margin-bottom: 20px;
    }

    .services-char {
        max-height: 350px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 900px;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.pricing-section {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    width: 100%;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(166, 138, 120, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(166, 138, 120, 0.15);
    border-color: var(--accent-color);
}

/* Optional "Featured" or middle card distinction */
.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom right, #fff, #faf6f4);
}

.card-header h2 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.price-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 0.9rem;
    color: #8C8C8C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.benefits-list li {
    margin-bottom: 12px;
    color: #6D665E;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li i {
    color: var(--accent-color);
}





@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Custom Commission Banner */
.custom-commission-banner {
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(to right, #fdfbf9, #ffffff);
    border: 1px solid rgba(166, 138, 120, 0.2);
    border-radius: 20px;
    padding: 30px 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Decorative left border */
.custom-commission-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--accent-color);
}

.custom-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.custom-text p {
    color: #6D665E;
    font-size: 1rem;
}

.custom-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.discord-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #5865F2;
    /* Discord Color */
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
    white-space: nowrap;
}

.discord-contact-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

@media (max-width: 900px) {
    .custom-commission-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .custom-commission-banner::before {
        width: 100%;
        height: 5px;
        left: 0;
        top: 0;
    }
}

/* Info Grid Section */
.info-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin-top: 40px;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(166, 138, 120, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.info-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 0.9rem;
    color: #6D665E;
    line-height: 1.5;
}

.info-item .disclaimer {
    font-style: italic;
    font-size: 0.85rem;
}

/* New Styles for Pricing Refinement */
.pricing-hero .subtitle {
    font-size: 1.1rem;
    color: #6D665E;
    margin-top: 15px;
    font-weight: 300;
}

.pricing-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    text-decoration: none;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.pricing-btn:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(140, 94, 94, 0.3);
    transform: translateY(-2px);
}




.commissions-hero {
    text-align: center;
    padding: 80px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;

}

.commissions-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.commissions-hero .subtitle {
    font-size: 1.1rem;
    color: #6D665E;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* Clean, Standard Status Box */
.status-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 18px 50px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(166, 138, 120, 0.08);
    border: 1px solid rgba(166, 138, 120, 0.15);
    margin-bottom: 40px;
    gap: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.status-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(166, 138, 120, 0.15);
    border-color: rgba(166, 138, 120, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    color: #5e5752;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-item strong {
    color: var(--text-color);
}

.status-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.status-divider {
    width: 1px;
    height: 25px;
    background-color: rgba(166, 138, 120, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Outfit', sans-serif;
    /* Cleaner sans-serif for reading data */
    color: #5e5752;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Force text to hug the center divider */
.status-box .status-item:first-child {
    justify-content: flex-end;
}

.status-box .status-item:last-child {
    justify-content: flex-start;
}

.status-item strong {
    color: var(--text-color);
    font-weight: 700;
}

.status-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.status-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(166, 138, 120, 0.5), transparent);
}

/* Commission Details Grid */
.commission-details-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    /* Reduced width to match form centering */
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out;
}

.detail-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    /* Icon on top */
    align-items: center;
    /* Center everything */
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(166, 138, 120, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    /* Center text */
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: #faf9f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.detail-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.detail-content p {
    font-size: 0.95rem;
    color: #4A4540;
    margin-bottom: 3px;
    line-height: 1.4;
}

.detail-content .detail-note {
    font-size: 0.8rem;
    color: #8c8c8c;
    font-style: italic;
}

.commission-form-section {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.elegant-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(166, 138, 120, 0.1);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.elegant-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.elegant-form input[type="text"],
.elegant-form select,
.elegant-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #4A4540;
    background-color: #faf9f8;
    transition: border-color 0.3s ease;
}

.elegant-form textarea {
    resize: vertical;
    max-width: 100%;
}

.elegant-form input:focus,
.elegant-form select:focus,
.elegant-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
}

.location-inputs {
    display: flex;
    gap: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.copy-btn {
    display: block;
    width: 100%;
    background-color: var(--text-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.copy-feedback {
    text-align: center;
    color: #27ae60;
    margin-top: 15px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-feedback.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .status-box {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 20px 30px;
    }

    .status-divider {
        display: none;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Refined Commission Form */
.form-container {
    background: white;
    padding: 40px 40px 15px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(166, 138, 120, 0.08);
    /* Elegant shadow */
    border: 1px solid rgba(166, 138, 120, 0.1);
    width: 100%;
    max-width: 850px;
    margin: 60px auto 80px auto;
    text-align: left;
}

.form-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.form-container p {
    color: #6D665E;
    text-align: center;
    margin-bottom: 30px;
}

#commissionForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    /* For running line animation */
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(166, 138, 120, 0.3);
    border-radius: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #4A4540;
    transition: all 0.3s ease;
    width: 100%;
    background-color: transparent;
    box-sizing: border-box;
    max-width: 100%;
}

.form-group textarea {
    resize: none;
    overflow-y: hidden;
    /* Hide scrollbar for auto-resize */
    min-height: 50px;
    /* Ensure a good starting height */
}

/* Animated Running Line Effect */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: transparent;
    box-shadow: none;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: -10px;
    /* Pull button up */
    margin-bottom: 0;
    position: relative;
    /* For absolute feedback */
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 50px;
    background: linear-gradient(135deg, #BFA08E, #A68A78);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(166, 138, 120, 0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 138, 120, 0.4);
    background: linear-gradient(135deg, #cbb0a0, #bfa08e);
}

.copy-btn.success {
    background: #5E8C5E !important;
    /* Green success color */
    box-shadow: 0 5px 15px rgba(94, 140, 94, 0.3);
    pointer-events: none;
    /* Prevent double click */
}

.copy-feedback {
    display: none;
    /* Removed */
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }

    #commissionForm {
        grid-template-columns: 1fr;
    }
}

/* Designs Page Styling */
.designs-hero {
    text-align: center;
    padding: 80px 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(180deg, rgba(253, 251, 249, 0) 0%, rgba(166, 138, 120, 0.05) 100%);
}

.designs-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    letter-spacing: -1px;
    text-transform: uppercase;
    animation: fadeUp 0.8s ease-out;
}

.designs-hero .subtitle {
    font-size: 1.1rem;
    color: #6D665E;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.design-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 0 40px;
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 380px;
    /* Slightly taller */
    background: radial-gradient(circle at center, #ffffff 0%, #fdfbf9 100%);
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(166, 138, 120, 0.05);
    border: 1px solid rgba(166, 138, 120, 0.08);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle Shimmer Overlay */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: transform 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(166, 138, 120, 0.15);
    border-color: rgba(166, 138, 120, 0.3);
}

.category-card:hover::before {
    transform: translateX(50%);
}

.category-name {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    /* Larger */
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    /* Tighter spacing */
    z-index: 3;
    transition: all 0.4s ease;
    letter-spacing: -0.5px;
}

.category-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #9c928a;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 3;
    transition: all 0.4s ease;
}

/* "View Gallery" Indicator */
.category-card::after {
    content: 'View Gallery →';
    position: absolute;
    bottom: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.category-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover .category-name {
    transform: translateY(-20px);
    color: #8c7662;
    /* Slightly darker accent */
}

.category-card:hover .category-desc {
    transform: translateY(-20px);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .design-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .design-categories {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* Team Showcase Split */
/* Team Showcase Split - Diagonal Update */
.team-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    /* Increased height for impact */
    max-width: 1200px;
    /* Slightly wider */
    margin: 40px auto 80px auto;
    border-radius: 20px;
    overflow: hidden;
    background-image: url('images/header-art.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    /* Changed from flex for absolute positioning inside */
    box-shadow: 0 15px 40px rgba(166, 138, 120, 0.15);
}

.team-split {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    transition: all 0.5s ease;
    cursor: default;
    display: flex;
    /* For centering content within the region roughly */
}

/* Glassmorphism / Gradient Overlay */
.team-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background 0.4s ease;
    z-index: 1;
}

/* Diagonal Clip Paths */
.team-split.left {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    justify-content: flex-start;
    /* Align content to left area */
    align-items: flex-start;
    /* Align content to top area */
}

.team-split.right {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    justify-content: flex-end;
    /* Align content to right area */
    align-items: flex-end;
    /* Align content to bottom area */
}

/* Overlays */
.team-split.left::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.team-split.right::before {
    background: linear-gradient(-45deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%);
}

/* Hover Effects */
.team-split:hover::before {
    background: rgba(0, 0, 0, 0.65);
    /* Darken significantly for text pop */
}

.team-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    padding: 60px;
    /* Spacing from corners */
    transition: all 0.4s ease;
}

.team-split.left .team-content {
    padding-top: 80px;
    padding-left: 100px;
}

.team-split.right .team-content {
    padding-bottom: 80px;
    padding-right: 100px;
}

.team-split:hover .team-content {
    transform: scale(1.05);
    /* Subtle scale up on hover */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
    /* Max contrast shadow */
}

.team-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.team-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* Remove Divider Line for Diagonal layout */
.team-showcase::after {
    display: none;
}

/* Mobile: Stack them properly */
@media (max-width: 768px) {
    .team-showcase {
        height: 600px;
        display: flex;
        flex-direction: column;
    }

    .team-split {
        position: relative;
        width: 100%;
        height: 50%;
        clip-path: none;
        /* Remove diagonal on mobile */
        justify-content: center;
        align-items: center;
    }

    .team-split.left .team-content,
    .team-split.right .team-content {
        padding: 0;
        text-align: center;
    }

    .team-split.left::before {
        background: rgba(0, 0, 0, 0.3);
    }

    .team-split.right::before {
        background: rgba(0, 0, 0, 0.3);
    }
}

/* Gallery Grid Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 0 40px;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(166, 138, 120, 0.08);
    /* Elegant shadow */
    border: 1px solid rgba(166, 138, 120, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(166, 138, 120, 0.15);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.housingsnap-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: #4A4540;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-image-container:hover .housingsnap-link {
    transform: translateY(0);
}

.housingsnap-link:hover {
    background: #faf9f8;
    transform: translateY(0) scale(1.05);
}

.housingsnap-link img {
    height: 18px;
    width: auto;
}

.gallery-info {
    padding: 25px;
    text-align: center;
    background: white;
    border-top: 1px solid rgba(166, 138, 120, 0.05);
}

.gallery-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Floating Navigation Menu */
.floating-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(166, 138, 120, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(166, 138, 120, 0.2);
    position: relative;
    z-index: 1001;
}

.fab-btn i {
    font-size: 1.5rem;
    color: #4A4540;
    transition: transform 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(166, 138, 120, 0.4);
    border-color: var(--accent-color);
}

.fab-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.fab-btn.active i {
    transform: rotate(45deg);
    /* Turn hamburger/plus into X */
    color: white;
}

.fab-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    text-decoration: none;
}

.fab-label {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4A4540;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(166, 138, 120, 0.1);
}

.fab-icon-small {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #4A4540;
    border: 1px solid rgba(166, 138, 120, 0.1);
    transition: all 0.3s ease;
}

.fab-item:hover .fab-icon-small {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.fab-item:hover .fab-label {
    color: var(--accent-color);
}

.fab-menu.active .fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay */
.fab-menu.active .fab-item:nth-child(1) .fab-label {
    transition-delay: 0.05s;
}

.fab-menu.active .fab-item:nth-child(2) .fab-label {
    transition-delay: 0.1s;
}

.fab-menu.active .fab-item:nth-child(3) .fab-label {
    transition-delay: 0.15s;
}

.fab-menu.active .fab-item:nth-child(4) .fab-label {
    transition-delay: 0.2s;
}

@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
    }
}

/* Project Showcase Styling */
.project-showcase {
    max-width: 1400px;
    margin: 60px auto 100px auto;
    padding: 0 40px;
}

.project-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
}

.project-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.housingsnap-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background-color: white;
    color: #4A4540;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(166, 138, 120, 0.2);
    border: 1px solid rgba(166, 138, 120, 0.2);
    transition: all 0.3s ease;
}

.housingsnap-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(166, 138, 120, 0.3);
    border-color: var(--accent-color);
}

.housingsnap-btn-large img {
    height: 24px;
    width: auto;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Large Columns */
    gap: 30px;
}

.project-img {
    width: 100%;
    height: 100%;
    /* Fill the grid cell */
    aspect-ratio: 16/9;
    /* Enforce wide format */
    object-fit: cover;
    /* Crop to fit without distortion */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    /* Ready for lightbox later if needed */
}

.project-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
        /* Full width on mobile */
    }

    .project-showcase {
        padding: 0 20px;
        margin-top: 40px;
    }
}

/* Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Other Designs Gallery - Masonry/Creative Grid */
.other-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.other-img-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.other-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.other-img-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.other-img-item:hover img {
    transform: scale(1.05);
}

/* Make some items span differently for visual interest if manually applied, 
   but for now we'll stick to a responsive auto-grid which looks clean. */

@media (max-width: 768px) {
    .other-gallery-grid {
        padding: 20px;
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.custom-cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s;
}

.custom-cursor.hovered {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: transparent;
}

.custom-cursor-follower.hovered {
    transform: translate(-50%, -50%) scale(1.8);
    background-color: rgba(140, 94, 94, 0.1);
    /* Subtle follower fill */
    border-color: var(--hover-color);
}

/* Hide default cursor on interactive elements if desired, but keeping standard pointer is safer for UX */
/* body { cursor: none; } */
/* ONLY if full replacement is requested, usually safer to keep pointer or use specific overrides */
/* For now, we overlay the custom one. If user wants full replacement, we can add 'body { cursor: none; }' later. */

/* Hide default cursor everywhere */
* {
    cursor: none !important;
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    animation: fadeOut 0.8s forwards;
    opacity: 0.6;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0);
    }
}

/* Unlocked Content Section in Form */
.unlocked-content-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

.unlocked-content-group > label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    display: block;
}

.unlocked-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.unlocked-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #faf9f8;
    border-radius: 8px;
    border: 1px solid rgba(166, 138, 120, 0.15);
    transition: all 0.3s ease;
}

.unlocked-item:hover {
    background: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(166, 138, 120, 0.1);
}

.unlocked-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
    flex-shrink: 0;
}

.unlocked-item label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    margin: 0;
    user-select: none;
    font-weight: 400;
}

@media (max-width: 768px) {
    .unlocked-grid {
        grid-template-columns: 1fr;
    }
}