    /* ============================================
   🎨 ARTIST THEME - CONTACT PAGE
   Warm cream/brown palette, artistic elements
   ============================================ */

    :root {
        --ct-primary: #8B5A5A;
        --ct-primary-dark: #6B4444;
        --ct-accent: #D4A574;
        --ct-accent-dark: #B8956A;
        --ct-teal: #5A7B8B;
        --ct-dark: #2D2D2D;
        --ct-muted: #8E8E8E;
        --ct-cream: #FDF8F3;
        --ct-canvas: #FAF5EF;
        --ct-warm: #F5EDE4;

        --font-heading: 'Playfair Display', Georgia, serif;
        --font-body: 'Outfit', 'Inter', sans-serif;
        --font-script: 'Dancing Script', cursive;
    }

    .ct-page {
        font-family: var(--font-body);
        background: linear-gradient(180deg, var(--ct-cream) 0%, var(--ct-canvas) 50%, var(--ct-warm) 100%);
        color: var(--ct-dark);
        line-height: 1.7;
        min-height: 100vh;
    }

    /* ============================================
   HERO SECTION
   ============================================ */
    .ct-hero {
        position: relative;
        padding: 8rem 0 5rem;
        text-align: center;
        overflow: hidden;
    }

    /* Background Animations */
    .ct-bg-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
        animation: orbFloat 12s ease-in-out infinite;
    }

    .ct-bg-orb--1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -50px;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.25), transparent 70%);
    }

    .ct-bg-orb--2 {
        width: 250px;
        height: 250px;
        top: 30%;
        right: -80px;
        background: radial-gradient(circle, rgba(139, 90, 90, 0.2), transparent 70%);
        animation-delay: -6s;
    }

    .ct-bg-orb--3 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: 20%;
        background: radial-gradient(circle, rgba(90, 123, 139, 0.15), transparent 70%);
        animation-delay: -3s;
    }

    @keyframes orbFloat {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.6;
        }

        50% {
            transform: translate(30px, -20px) scale(1.1);
            opacity: 0.9;
        }
    }

    /* Brush Stroke Decorations */
    .ct-brush {
        position: absolute;
        height: 4px;
        border-radius: 3px;
        opacity: 0;
        animation: brushStroke 6s ease-out infinite;
    }

    .ct-brush--1 {
        width: 0;
        top: 20%;
        left: 5%;
        background: linear-gradient(90deg, transparent, var(--ct-accent), var(--ct-primary));
    }

    .ct-brush--2 {
        width: 0;
        bottom: 30%;
        right: 8%;
        background: linear-gradient(270deg, transparent, var(--ct-primary), var(--ct-accent));
        animation-delay: 3s;
    }

    @keyframes brushStroke {
        0% {
            width: 0;
            opacity: 0;
        }

        15% {
            opacity: 0.5;
        }

        50% {
            width: 180px;
            opacity: 0.3;
        }

        100% {
            width: 250px;
            opacity: 0;
        }
    }

    /* ✨ FLOATING SPARKLES */
    .ct-sparkle {
        position: absolute;
        width: 5px;
        height: 5px;
        background: var(--ct-accent);
        border-radius: 50%;
        animation: sparkleFloat 6s ease-in-out infinite;
        pointer-events: none;
    }

    .ct-sparkle--1 {
        top: 10%;
        left: 15%;
        animation-delay: 0s;
    }

    .ct-sparkle--2 {
        top: 40%;
        right: 12%;
        animation-delay: -2s;
    }

    .ct-sparkle--3 {
        bottom: 25%;
        left: 8%;
        animation-delay: -4s;
    }

    .ct-sparkle--4 {
        top: 60%;
        left: 30%;
        animation-delay: -1s;
        background: var(--ct-primary);
    }

    .ct-sparkle--5 {
        bottom: 40%;
        right: 20%;
        animation-delay: -3s;
        background: var(--ct-teal);
    }

    @keyframes sparkleFloat {

        0%,
        100% {
            transform: translateY(0) scale(1);
            opacity: 0.4;
            box-shadow: 0 0 8px rgba(212, 165, 116, 0.5);
        }

        50% {
            transform: translateY(-25px) scale(1.4);
            opacity: 0.9;
            box-shadow: 0 0 18px rgba(212, 165, 116, 0.8);
        }
    }

    /* 🔷 FLOATING GEOMETRIC SHAPES */
    .ct-geo {
        position: absolute;
        pointer-events: none;
        animation: geoFloat 15s ease-in-out infinite;
    }

    .ct-geo--diamond {
        width: 25px;
        height: 25px;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(139, 90, 90, 0.1));
        transform: rotate(45deg);
        border-radius: 3px;
    }

    .ct-geo--circle {
        width: 35px;
        height: 35px;
        border: 2px solid rgba(212, 165, 116, 0.2);
        border-radius: 50%;
    }

    .ct-geo--1 {
        top: 15%;
        right: 10%;
    }

    .ct-geo--2 {
        bottom: 30%;
        left: 5%;
        animation-delay: -5s;
    }

    .ct-geo--3 {
        top: 50%;
        right: 5%;
        animation-delay: -10s;
    }

    @keyframes geoFloat {

        0%,
        100% {
            transform: translateY(0) rotate(var(--rotate, 45deg));
            opacity: 0.5;
        }

        50% {
            transform: translateY(-20px) rotate(calc(var(--rotate, 45deg) + 10deg));
            opacity: 0.8;
        }
    }

    /* 🎨 PAINT SPLASH EFFECTS */
    .ct-splash {
        position: absolute;
        border-radius: 50% 40% 60% 30%;
        filter: blur(50px);
        opacity: 0.3;
        animation: splashPulse 8s ease-in-out infinite;
        pointer-events: none;
    }

    .ct-splash--1 {
        width: 150px;
        height: 100px;
        top: 70%;
        left: 10%;
        background: rgba(212, 165, 116, 0.25);
    }

    .ct-splash--2 {
        width: 120px;
        height: 80px;
        top: 20%;
        right: 15%;
        background: rgba(139, 90, 90, 0.2);
        animation-delay: -4s;
    }

    @keyframes splashPulse {

        0%,
        100% {
            transform: scale(1) rotate(0deg);
            opacity: 0.25;
        }

        50% {
            transform: scale(1.15) rotate(5deg);
            opacity: 0.4;
        }
    }

    /* 🌊 GRADIENT WAVE LINE */
    .ct-wave {
        position: absolute;
        width: 200%;
        height: 2px;
        left: -50%;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), rgba(139, 90, 90, 0.25), rgba(212, 165, 116, 0.3), transparent);
        animation: waveMove 12s linear infinite;
        pointer-events: none;
    }

    .ct-wave--1 {
        bottom: 10%;
        transform: rotate(-1deg);
    }

    .ct-wave--2 {
        top: 85%;
        transform: rotate(1deg);
        animation-delay: -6s;
        animation-direction: reverse;
    }

    @keyframes waveMove {
        0% {
            transform: translateX(0) rotate(var(--rotate, -1deg));
        }

        100% {
            transform: translateX(25%) rotate(var(--rotate, -1deg));
        }
    }


    /* Hero Content */
    .ct-hero-inner {
        position: relative;
        z-index: 5;
        max-width: 850px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .ct-hero-label {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-family: var(--font-script);
        font-size: 1.5rem;
        color: var(--ct-accent);
        margin-bottom: 1.25rem;
        padding: 0.5rem 1.5rem;
        background: rgba(212, 165, 116, 0.1);
        border-radius: 50px;
        border: 1px solid rgba(212, 165, 116, 0.2);
    }

    .ct-hero-label::before {
        content: '✦';
        font-size: 0.8rem;
        animation: starPulse 2s ease-in-out infinite;
    }

    @keyframes starPulse {

        0%,
        100% {
            opacity: 0.5;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.2);
        }
    }

    .ct-hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.75rem, 6vw, 4rem);
        font-weight: 700;
        color: var(--ct-dark);
        line-height: 1.15;
        margin-bottom: 1.75rem;
        position: relative;
    }

    /* Decorative Underline */
    .ct-hero-title::after {
        content: '';
        display: block;
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, var(--ct-accent), var(--ct-primary), transparent);
        border-radius: 2px;
        margin: 1.25rem auto 0;
    }

    .ct-hero-title .ct-highlight {
        font-family: var(--font-script);
        font-weight: 400;
        font-size: 1.1em;
        color: var(--ct-primary);
        display: inline-block;
        position: relative;
    }

    .ct-hero-desc {
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--ct-muted);
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.8;
    }


    /* ============================================
   MAIN CONTENT AREA
   ============================================ */
    .ct-main {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem 5rem;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }

    /* ============================================
   CONTACT INFO SIDEBAR
   ============================================ */
    .ct-sidebar {
        position: sticky;
        top: 120px;
    }

    .ct-sidebar-title {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--ct-dark);
        margin-bottom: 2rem;
    }

    .ct-info-card {
        background: #fff;
        border-radius: 16px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1.25rem;
        border: 1px solid rgba(212, 165, 116, 0.1);
        transition: all 0.4s ease;
        text-decoration: none;
        color: inherit;
    }

    .ct-info-card:hover {
        transform: translateX(8px);
        box-shadow: 0 10px 30px rgba(139, 90, 90, 0.1);
        border-color: rgba(212, 165, 116, 0.25);
    }

    .ct-info-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .ct-info-card:hover .ct-info-icon {
        transform: scale(1.1);
    }

    .ct-info-icon--phone {
        background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
        color: #4CAF50;
    }

    .ct-info-icon--email {
        background: linear-gradient(135deg, rgba(139, 90, 90, 0.1), rgba(212, 165, 116, 0.05));
        color: var(--ct-primary);
    }

    .ct-info-icon--location {
        background: linear-gradient(135deg, rgba(90, 123, 139, 0.1), rgba(90, 123, 139, 0.05));
        color: var(--ct-teal);
    }

    .ct-info-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--ct-muted);
        margin-bottom: 0.25rem;
    }

    .ct-info-value {
        font-weight: 600;
        color: var(--ct-dark);
        font-size: 1rem;
    }

    /* Map */
    .ct-map {
        margin-top: 2rem;
        border-radius: 20px;
        overflow: hidden;
        height: 220px;
        box-shadow: 0 8px 30px rgba(139, 90, 90, 0.1);
        filter: grayscale(30%);
        transition: filter 0.4s ease;
    }

    .ct-map:hover {
        filter: grayscale(0%);
    }

    .ct-map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    /* ============================================
   CONTACT FORM
   ============================================ */
    .ct-form-card {
        background: #fff;
        border-radius: 24px;
        padding: 3rem;
        box-shadow: 0 10px 40px rgba(139, 90, 90, 0.08);
        border: 1px solid rgba(212, 165, 116, 0.1);
        position: relative;
        overflow: hidden;
    }

    .ct-form-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle at top right, rgba(212, 165, 116, 0.08), transparent 70%);
        pointer-events: none;
    }

    .ct-form-title {
        font-family: var(--font-heading);
        font-size: 1.75rem;
        font-weight: 600;
        color: var(--ct-dark);
        margin-bottom: 0.5rem;
    }

    .ct-form-subtitle {
        font-size: 1rem;
        color: var(--ct-muted);
        margin-bottom: 2rem;
    }

    /* Alerts */
    .ct-alert {
        padding: 1.25rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .ct-alert--success {
        background: rgba(76, 175, 80, 0.1);
        border: 1px solid rgba(76, 175, 80, 0.2);
        color: #2E7D32;
    }

    .ct-alert--error {
        background: rgba(244, 67, 54, 0.1);
        border: 1px solid rgba(244, 67, 54, 0.2);
        color: #C62828;
    }

    .ct-alert-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .ct-alert--success .ct-alert-icon {
        background: rgba(76, 175, 80, 0.15);
    }

    .ct-alert--error .ct-alert-icon {
        background: rgba(244, 67, 54, 0.15);
    }

    /* Form Fields */
    .ct-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ct-form-group {
        position: relative;
    }

    .ct-form-group--full {
        grid-column: 1 / -1;
    }

    .ct-input {
        width: 100%;
        padding: 1rem 1.25rem;
        border: 1px solid rgba(139, 90, 90, 0.12);
        border-radius: 12px;
        font-family: var(--font-body);
        font-size: 1rem;
        background: rgba(253, 248, 243, 0.5);
        transition: all 0.3s ease;
        outline: none;
    }

    .ct-input:focus {
        border-color: var(--ct-accent);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.12);
    }

    .ct-input::placeholder {
        color: var(--ct-muted);
    }

    textarea.ct-input {
        resize: none;
        min-height: 150px;
    }

    .ct-label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--ct-dark);
        margin-bottom: 0.5rem;
    }

    /* Submit Button */
    .ct-submit {
        width: 100%;
        padding: 1.15rem 2rem;
        background: linear-gradient(135deg, var(--ct-primary), var(--ct-primary-dark));
        color: #fff !important;
        border: none;
        border-radius: 12px;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1rem;
        -webkit-text-fill-color: #fff !important;
    }

    .ct-submit span,
    .ct-submit i {
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
    }

    .ct-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(139, 90, 90, 0.3);
    }

    /* ============================================
   FAQ SECTION - CLEAN MINIMAL DESIGN
   ============================================ */
    .ct-faq {
        max-width: 900px;
        margin: 6rem auto 0;
        padding: 0 2rem 8rem;
    }

    .ct-faq-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .ct-faq-label {
        display: inline-block;
        font-family: var(--font-script);
        font-size: 1.25rem;
        color: var(--ct-accent);
        margin-bottom: 0.75rem;
    }

    .ct-faq-title {
        font-family: var(--font-heading);
        font-size: clamp(2.25rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--ct-dark);
        margin-bottom: 1rem;
    }

    .ct-faq-subtitle {
        font-size: 1.1rem;
        color: var(--ct-muted);
        max-width: 550px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* FAQ Items Container */
    .ct-faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Individual FAQ Item - Clean Border Bottom Style */
    .ct-faq-item {
        border-bottom: 1px solid rgba(139, 90, 90, 0.1);
        transition: all 0.3s ease;
    }

    .ct-faq-item:first-child {
        border-top: 1px solid rgba(139, 90, 90, 0.1);
    }

    .ct-faq-item:hover {
        background: rgba(253, 248, 243, 0.5);
    }

    .ct-faq-item.active {
        background: linear-gradient(135deg, rgba(253, 248, 243, 0.8), rgba(245, 237, 228, 0.5));
    }

    /* FAQ Trigger Button */
    .ct-faq-trigger {
        width: 100%;
        padding: 1.75rem 0;
        display: flex;
        align-items: center;
        gap: 1.25rem;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        font-family: var(--font-body);
    }

    /* Number Badge */
    .ct-faq-num {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(145deg, rgba(212, 165, 116, 0.12), rgba(139, 90, 90, 0.08));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--ct-primary);
        flex-shrink: 0;
        transition: all 0.4s ease;
    }

    .ct-faq-item:hover .ct-faq-num {
        background: linear-gradient(145deg, var(--ct-accent), var(--ct-primary));
        color: #fff;
    }

    .ct-faq-item.active .ct-faq-num {
        background: linear-gradient(145deg, var(--ct-primary), var(--ct-accent));
        color: #fff;
        transform: scale(1.1);
    }

    /* Question Text */
    .ct-faq-question {
        flex: 1;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--ct-dark);
        line-height: 1.5;
        transition: color 0.3s ease;
    }

    .ct-faq-item:hover .ct-faq-question,
    .ct-faq-item.active .ct-faq-question {
        color: var(--ct-primary);
    }

    /* Plus/Minus Icon */
    .ct-faq-icon {
        width: 28px;
        height: 28px;
        position: relative;
        flex-shrink: 0;
    }

    .ct-faq-icon::before,
    .ct-faq-icon::after {
        content: '';
        position: absolute;
        background: var(--ct-accent);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .ct-faq-icon::before {
        width: 16px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ct-faq-icon::after {
        width: 2px;
        height: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ct-faq-item.active .ct-faq-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }

    .ct-faq-item.active .ct-faq-icon::before {
        background: var(--ct-primary);
    }

    /* Answer Content */
    .ct-faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .ct-faq-item.active .ct-faq-content {
        max-height: 500px;
    }

    .ct-faq-answer {
        padding: 0 0 2rem 4.5rem;
        color: var(--ct-muted);
        line-height: 1.9;
        font-size: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ct-faq-trigger {
            padding: 1.25rem 0;
        }

        .ct-faq-answer {
            padding-left: 0;
        }

        .ct-faq-num {
            width: 36px;
            height: 36px;
            font-size: 0.85rem;
        }
    }



    /* ============================================
   REVEAL ANIMATIONS
   ============================================ */
    .ct-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ct-reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .ct-delay-1 {
        transition-delay: 0.1s;
    }

    .ct-delay-2 {
        transition-delay: 0.2s;
    }

    .ct-delay-3 {
        transition-delay: 0.3s;
    }

    /* ============================================
   RESPONSIVE
   ============================================ */
    @media (max-width: 1024px) {
        .ct-main {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .ct-sidebar {
            position: static;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .ct-sidebar-title {
            grid-column: 1 / -1;
        }

        .ct-map {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 768px) {
        .ct-hero {
            padding: 6rem 0 3rem;
        }

        .ct-sidebar {
            grid-template-columns: 1fr;
        }

        .ct-form-card {
            padding: 2rem;
        }

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

        .ct-bg-orb {
            display: none;
        }
    }
