/* Extracted page styles — contact-14969830.css (v110) */
/* Modern Breadcrumbs */
        .breadcrumbs-modern {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, #ffffff, #f8f5f2);
            border-radius: 50px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 1.5rem;
        }

        .breadcrumbs-modern a,
        .breadcrumbs-modern span {
            font-size: 0.85rem;
            text-decoration: none;
            color: #78716C;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .breadcrumbs-modern a:hover {
            background: rgba(139, 92, 78, 0.1);
            color: #8B5C4E;
        }

        .breadcrumbs-modern .separator {
            color: #D4D4D4;
            padding: 0 0.25rem;
            font-size: 0.75rem;
        }

        .breadcrumbs-modern .current {
            background: linear-gradient(135deg, #8B5C4E, #8B5C4E);
            color: white;
        }

        /* Hero Banner */
        .contact-hero {
            background: linear-gradient(135deg, #4A1F40, #6B2D5B);
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .contact-hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #E7E5E4;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            border-color: #D4A855;
        }

        .contact-card__icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #D4A855, #B8942E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
        }

        .contact-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            color: #1A1A2E;
        }

        .contact-card p {
            color: #78716C;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .contact-card a {
            color: #8B5C4E;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact-card a:hover {
            color: #D4A855;
            text-decoration: underline;
        }

        /* Contact Form */
        .contact-form-section {
            margin-top: 3rem;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #E7E5E4;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .form-header h2 {
            margin-bottom: 0.5rem;
            color: #1A1A2E;
        }

        .form-header p {
            color: #78716C;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-hero h1 {
                font-size: 1.75rem;
            }

            .contact-form-section {
                margin: 2rem 0;
                padding: 1.5rem;
            }
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1A1A2E;
            font-size: 0.95rem;
        }

        .form-label .required {
            color: #E53E3E;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #E7E5E4;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #FAFAF9;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #D4A855;
            background: white;
            box-shadow: 0 0 0 4px rgba(212, 168, 85, 0.15);
        }

        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background: #F5EBE0;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .form-checkbox input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            accent-color: #D4A855;
        }

        .form-checkbox label {
            font-size: 0.9rem;
            color: #44403C;
            line-height: 1.5;
        }

        .form-checkbox a {
            color: #8B5C4E;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #D4A855, #B8942E);
            color: #1A1A2E;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 168, 85, 0.4);
            background: linear-gradient(135deg, #E4B865, #C49A4A);
        }

        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(26, 26, 46, 0.3);
            border-top-color: #1A1A2E;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Form Messages */
        .form-message {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: none;
        }

        .form-message.success {
            background: #E8F5E9;
            color: #2E7D32;
            border: 1px solid #A5D6A7;
            display: block;
        }

        .form-message.error {
            background: #FFEBEE;
            color: #C62828;
            border: 1px solid #EF9A9A;
            display: block;
        }

        /* Response Time Notice */
        .response-notice {
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, #F5EBE0, #FEF3C7);
            border-radius: 16px;
            text-align: center;
            border: 2px solid #D4A855;
        }

        .response-notice h3 {
            margin-bottom: 0.5rem;
            color: #1A1A2E;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .response-notice h3 svg {
            color: #D4A855;
        }

        .response-notice p {
            color: #78716C;
            margin: 0;
        }

        /* Honeypot */
        .hp-field {
            position: absolute;
            left: -9999px;
        }
