  
        :root {
            --warm-dark: #2d241e;
            --warm-ink: #1a1310;
            --warm-cream: #fbf9f6;
            --warm-sand: #f4ede0;
            --warm-parchment: #ede4d4;
            --gold: #c9a84c;
            --gold-light: #e3cb76;
            --champagne: #decfaa;
            --clay: #b65a3f;
            --clay-light: #c9705a;
            --muted: #9e8e7e;
            --ink-soft: #5c524f;
            --border-warm: rgba(182, 90, 63, 0.12);
            --border-gold: rgba(201, 168, 76, 0.15);
            --shadow-soft: 0 10px 30px rgba(45, 36, 30, 0.03);
            --shadow-hover: 0 20px 45px rgba(45, 36, 30, 0.08);
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Hero Header / Breadcrumb */
        .breadcumb-section {
            position: relative;
            /*background-image: url(https://zenzula-stories-unfold.lovable.app/assets/about-workshop-DrhWxdZD.jpg);*/
            padding-top: clamp(100px, 12vw, 160px);
            padding-bottom: clamp(100px, 12vw, 160px);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        .breadcumb-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(28, 22, 19, 0.65);
            z-index: -1;
        }
        .hero-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(34px, 4.5vw, 54px);
            line-height: 1.25;
            font-weight: 300;
            letter-spacing: -0.01em;
            color: #ffffff;
            margin: 0 auto;
            max-width: 900px;
        }

        /* Contact Section Content */
        .contact-us-section {
            background-color: var(--warm-cream);
            padding-top: clamp(60px, 8vw, 100px);
            padding-bottom: 40px;
        }

        /* Left Side: Premium Form Card */
        .contact-form-card {
            background: #ffffff;
            border: 1px solid var(--border-warm);
            border-radius: 16px;
            padding: clamp(24px, 4vw, 44px);
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            height: 100%;
        }
        .contact-form-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .contact-section-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(26px, 3.5vw, 36px);
            font-weight: 300;
            color: var(--warm-dark);
            margin-bottom: 8px;
        }
        .contact-section-desc {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px;
            color: var(--ink-soft);
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Floating Label Custom Inputs */
        .form-floating-custom {
            position: relative;
            margin-bottom: 24px;
        }
        .form-floating-custom input, 
        .form-floating-custom textarea {
            width: 100%;
            height: 54px;
            padding: 20px 16px 6px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14.5px;
            color: var(--warm-dark);
            background: var(--warm-cream);
            border: 1px solid var(--border-warm);
            border-radius: 8px;
            outline: none;
            transition: var(--transition-smooth);
        }
        .form-floating-custom textarea {
            height: 140px;
            padding: 24px 16px 10px;
            resize: none;
        }
        .form-floating-custom label {
            position: absolute;
            top: 50%;
            left: 16px;
            transform: translateY(-50%);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14.5px;
            color: var(--muted);
            pointer-events: none;
            transition: var(--transition-smooth);
        }
        .form-floating-custom textarea ~ label {
            top: 20px;
            transform: none;
        }
        .form-floating-custom input:focus ~ label,
        .form-floating-custom input:not(:placeholder-shown) ~ label,
        .form-floating-custom textarea:focus ~ label,
        .form-floating-custom textarea:not(:placeholder-shown) ~ label {
            top: 8px;
            transform: none;
            font-size: 10px;
            font-weight: 700;
            color: var(--clay);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .form-floating-custom input:focus, 
        .form-floating-custom textarea:focus {
            border-color: var(--gold);
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
        }

        /* Validation States */
        .form-floating-custom.has-error input, 
        .form-floating-custom.has-error textarea {
            border-color: var(--clay) !important;
            background: rgba(182, 90, 63, 0.02) !important;
        }
        .form-floating-custom.has-error label {
            color: var(--clay) !important;
        }
        .form-error-msg {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            color: var(--clay);
            margin-top: 5px;
            display: none;
            font-weight: 500;
        }
        .form-floating-custom.has-error .form-error-msg {
            display: block;
        }

        /* Submit Button custom loader */
        .submit-btn-custom {
            width: 100%;
            height: 52px;
            background: var(--warm-dark);
            color: #ffffff;
            border: 1px solid var(--warm-dark);
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            outline: none;
        }
        .submit-btn-custom:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: #1c1613;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
        }
        .submit-btn-custom .btn-spinner {
            display: none;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.35);
            border-radius: 50%;
            border-top-color: #ffffff;
            animation: btn-spin 0.8s linear infinite;
        }
        .submit-btn-custom.loading {
            pointer-events: none;
            background: var(--muted) !important;
            border-color: var(--muted) !important;
        }
        .submit-btn-custom.loading .btn-spinner {
            display: inline-block;
        }
        .submit-btn-custom.loading .btn-text {
            display: none;
        }
        @keyframes btn-spin {
            to { transform: rotate(360deg); }
        }

        /* Success State Alert */
        .contact-success-alert {
            display: none;
            background: rgba(37, 211, 102, 0.08);
            border: 1px solid rgba(37, 211, 102, 0.18);
            border-radius: 8px;
            padding: 16px 20px;
            margin-bottom: 24px;
            align-items: center;
            gap: 12px;
        }
        .contact-success-alert.show {
            display: flex;
            animation: slide-down-alert 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .contact-success-icon {
            color: #25d366;
            font-size: 20px;
        }
        .contact-success-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px;
            color: #128c7e;
            font-weight: 500;
        }
        @keyframes slide-down-alert {
            from { opacity: 0; transform: translateY(-12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Right Side: Premium Glassmorphism Card */
        .contact-info-card-custom {
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-gold);
            border-radius: 16px;
            padding: clamp(24px, 4vw, 44px);
            box-shadow: var(--shadow-soft);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition-smooth);
        }
        .contact-info-card-custom:hover {
            box-shadow: var(--shadow-hover);
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 26px;
        }
        .contact-info-icon-wrap {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--warm-cream);
            color: var(--clay);
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .contact-info-text {
            display: flex;
            flex-direction: column;
        }
        .contact-info-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--muted);
        }
        .contact-info-value {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 20px;
            color: var(--warm-dark);
            margin-top: 4px;
            line-height: 1.4;
            font-weight: 500;
        }
        .contact-info-value a {
            color: inherit;
            text-decoration: none !important;
            transition: color 0.3s ease;
        }
        .contact-info-value a:hover {
            color: var(--clay);
        }
        .contact-info-hours {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px;
            color: var(--ink-soft);
            margin-top: 2px;
            font-weight: 300;
            line-height: 1.5;
        }

        /* Follow Us & Social Connect Section */
        .social-connect-section {
            margin-top: 20px;
            padding-top: 24px;
            border-top: 1px solid var(--border-warm);
        }
        .social-connect-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--warm-dark);
            margin-bottom: 16px;
        }
        .social-connect-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .social-icon-btn-custom {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--warm-cream);
            color: var(--ink-soft);
            border: 1px solid var(--border-warm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            transition: var(--transition-smooth);
            text-decoration: none !important;
        }
        .social-icon-btn-custom:hover {
            color: #ffffff;
            transform: translateY(-3px);
        }
        .social-icon-btn-custom.social-facebook:hover { background: #1877f2; border-color: #1877f2; }
        .social-icon-btn-custom.social-instagram:hover { background: #e1306c; border-color: #e1306c; }
        .social-icon-btn-custom.social-linkedin:hover { background: #0077b5; border-color: #0077b5; }
        .social-icon-btn-custom.social-twitter:hover { background: #1da1f2; border-color: #1da1f2; }
        .social-icon-btn-custom.social-youtube:hover { background: #ff0000; border-color: #ff0000; }
        .social-icon-btn-custom.social-whatsapp:hover { background: #25d366; border-color: #25d366; }

        /* Bottom: Google Maps Section */
        .map-section-custom {
            padding-top: 20px;
            padding-bottom: clamp(60px, 8vw, 100px);
            background: var(--warm-cream);
        }
        .map-wrapper-custom {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-warm);
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }
        .map-wrapper-custom:hover {
            box-shadow: var(--shadow-hover);
        }
        .map-wrapper-custom iframe {
            width: 100%;
            height: 450px;
            display: block;
            border: none;
        }

        /* Mobile Sticky CTA Trigger */
        .mobile-contact-sticky-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 99999;
            transform: translateY(150px);
            transition: var(--transition-smooth);
        }
        .mobile-contact-sticky-cta.visible {
            transform: translateY(0);
        }
        @media (min-width: 768px) {
            .mobile-contact-sticky-cta {
                display: none !important;
            }
        }
        .sticky-cta-btn-custom {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--clay);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 10px 25px rgba(182, 90, 63, 0.35);
            border: none;
            cursor: pointer;
            outline: none;
            transition: var(--transition-smooth);
        }
        .sticky-cta-btn-custom:hover {
            background: var(--gold);
            color: #1c1613;
            box-shadow: 0 10px 25px rgba(201, 168, 76, 0.35);
        }
    