/* CASCADE-LAYER: intentionally-unlayered — page composition. See .planning/phases/01-foundation-activation/01-CONTEXT.md D-01. */
/* stylelint-disable media-feature-name-disallowed-list -- Phase 6: max-width media queries retained; mobile-first conversion deferred (D-08). Strict-value/!important/order cleaned. */

/*
 * Contact Page Styles
 * Styles for the contact page template
 * 
 * @package RhuarcsPetSupplies
 */

/* Contact Page Styles */

/* FIXED: Ensure contact page doesn't interfere with header */
body.page-template-page-contact {
    overflow-x: hidden;
}

body.page-template-page-contact .main-content {
    position: relative;
    z-index: 0; /* Ensure main content is below header */
}

/* Contact page sections stay below header z-index */
body.page-template-page-contact .contact-hero-section,
body.page-template-page-contact .contact-info-section,
body.page-template-page-contact .contact-form-container {
    position: relative;
    z-index: 0;
}

/* The .contact-hero-section padding was re-folded into css/components/hero.css
   .hero--contact (@layer components) in Phase 6 (D-03), once the aggressive
   *{margin:0;padding:0} reset moved into @layer reset. The descendant rules below
   (.hero-content / h1 / .hero-description) stay here — they style page-specific
   child elements, not the hero box itself. */
.contact-hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-section .hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, var(--text-5xl));
    margin-bottom: var(--space-6);
    font-weight: var(--font-bold);
    color: var(--text-on-purple);
    text-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    letter-spacing: var(--tracking-tight);
}

.contact-hero-section .hero-description {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: rgb(255 255 255 / 90%);
    margin-bottom: var(--space-8);
}

/* Hero decoration classes consolidated in utilities.css */

.contact-info-section {
    position: relative;
    z-index: 0; /* Ensure section is below header */
    padding: var(--space-16) 0;
    background: var(--cream-200);
    margin-top: 0; /* Prevent negative margins that could cause overlap */
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    background: linear-gradient(180deg, rgb(155 63 160 / 10%) 0%, transparent 100%);
    pointer-events: none; /* FIXED: Prevent this pseudo-element from blocking clicks */
}

.contact-info-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    gap: var(--space-6);
}

.contact-method-card {
    position: relative;
    z-index: 1; /* Ensure proper stacking */
    padding: var(--space-6);
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    border-left: 4px solid var(--purple-700);
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-700), var(--purple-600), var(--purple-500), #FF6B6B, #4ECDC4);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
    pointer-events: none; /* FIXED: Prevent blocking clicks */
}

/* @keyframes shimmer removed - available in utilities.css */

.contact-method-card:hover {
    box-shadow: var(--shadow-purple-md);
    transform: translateY(-6px);
    border-color: var(--purple-200);
}

/* Per-method decorative icon accents — bespoke category hues, no palette token is byte-identical (zero-diff). */
/* stylelint-disable scale-unlimited/declaration-strict-value -- decorative category accent colors; no palette token is byte-identical; literal preserves zero-diff */
.contact-method-card:nth-child(1) .contact-icon { color: #FF6B6B; } /* Phone - Red */
.contact-method-card:nth-child(2) .contact-icon { color: #4ECDC4; } /* Email - Teal */
.contact-method-card:nth-child(3) .contact-icon { color: #45B7D1; } /* Location - Blue */
.contact-method-card:nth-child(4) .contact-icon { color: #96CEB4; } /* Hours - Green */
.contact-method-card:nth-child(5) .contact-icon { color: #FFEAA7; } /* Social - Yellow */
.contact-method-card:nth-child(6) .contact-icon { color: #DDA0DD; } /* FAQ - Purple */
/* stylelint-enable scale-unlimited/declaration-strict-value */

.contact-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

.contact-method-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgb(0 0 0 / 20%));
}

.contact-method-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--purple-700);
    margin-bottom: var(--space-2);
}

.contact-detail {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    transition: color 0.3s ease;
}

.contact-method-card:hover .contact-detail {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- near-black hover ink; no token is byte-identical; literal preserves zero-diff */
    color: #1a202c;
}

.contact-detail a {
    position: relative;
    color: var(--purple-700);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-detail a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-700), var(--purple-600));
    transition: width 0.3s ease;
}

.contact-detail a:hover::after {
    width: 100%;
}

.contact-detail a:hover {
    color: var(--purple-600);
    transform: translateY(-1px);
}

.contact-note {
    margin: 0;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    color: var(--neutral-600);
    transition: color 0.3s ease;
    font-style: italic;
}

.contact-method-card:hover .contact-note {
    color: var(--neutral-700);
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
    background: linear-gradient(90deg, rgb(150 206 180 / 10%), rgb(150 206 180 / 5%));
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 8px;
    border-left: 3px solid #96CEB4; /* page-specific decorative green */
    transition: all 0.3s ease;
}

.hours-row:hover {
    background: linear-gradient(90deg, rgb(150 206 180 / 20%), rgb(150 206 180 / 10%));
    transform: translateX(5px);
}

.day {
    font-weight: 600;
    color: var(--text-primary);
}

.time {
    font-weight: 700;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative status green; no palette token is byte-identical; literal preserves zero-diff */
    color: #96CEB4; /* page-specific decorative green */
    text-shadow: 0 1px 2px rgb(0 0 0 / 10%);
}

/* Trading Hours Component (centralized) */
.trading-hours {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.95rem;
}

.trading-hours__status {
    display: flex;
    align-items: center;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    gap: 10px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    padding: 12px 16px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: 600;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 10px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    margin-bottom: 15px;
}

.trading-hours__status--open {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative status-text green; no palette token is byte-identical; literal preserves zero-diff */
    color: #155724;
    background: linear-gradient(135deg, rgb(40 167 69 / 15%) 0%, rgb(40 167 69 / 8%) 100%);
    border: 1px solid rgb(40 167 69 / 20%);
}

.trading-hours__status--closed {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative status-text red; no palette token is byte-identical; literal preserves zero-diff */
    color: #721c24;
    background: linear-gradient(135deg, rgb(220 53 69 / 15%) 0%, rgb(220 53 69 / 8%) 100%);
    border: 1px solid rgb(220 53 69 / 20%);
}

.trading-hours__status .status-indicator {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.trading-hours__status--open .status-indicator {
    background: var(--success);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke glow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 0 8px rgb(40 167 69 / 50%);
}

.trading-hours__status--closed .status-indicator {
    background: #dc3545; /* decorative status indicator red */
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke glow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 0 8px rgb(220 53 69 / 50%);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

.trading-hours__list {
    display: flex;
    flex-direction: column;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    gap: 6px;
}

.trading-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid spacing — no --space-* token is byte-identical; literal preserves zero-diff */
    padding: 8px 12px;
    background: linear-gradient(90deg, rgb(150 206 180 / 10%), rgb(150 206 180 / 5%));
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 8px;
    border-left: 3px solid #96CEB4; /* page-specific decorative green */
    transition: all 0.3s ease;
}

.trading-hours__row:hover {
    background: linear-gradient(90deg, rgb(150 206 180 / 20%), rgb(150 206 180 / 10%));
    transform: translateX(4px);
}

.trading-hours__row--closed {
    background: linear-gradient(90deg, rgb(108 117 125 / 10%), rgb(108 117 125 / 5%));
    border-left-color: var(--neutral-500);
    opacity: 0.8;
}

.trading-hours__row--closed:hover {
    background: linear-gradient(90deg, rgb(108 117 125 / 15%), rgb(108 117 125 / 8%));
}

.trading-hours__day {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trading-hours__time {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: 700;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative status green; no palette token is byte-identical; literal preserves zero-diff */
    color: #96CEB4; /* page-specific decorative green */
}

.trading-hours__row--closed .trading-hours__time {
    color: var(--neutral-500);
}

/* Trading hours card special styling */
.trading-hours-card .trading-hours {
    margin-top: var(--space-2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}


/* CONS-04 / D-10: 44px tap-target floor on the IG/FB icon links (the <a>
   rendered ~24x25 — just the SVG). inline-flex centres the 2rem .social-icon
   inside a >=44x44 hit area; sanctioned hit-area growth (boundingBox gate
   measures the <a>, so the anchor's own box must reach 44 — a ::before overlay
   would not enlarge the measured box). */
.social-link-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    min-block-size: 44px;
    min-inline-size: 44px;
}

.social-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
}

.faq-card {
    border-left: 4px solid #DDA0DD;
    background: linear-gradient(135deg, rgb(221 160 221 / 10%) 0%, rgb(221 160 221 / 5%) 100%);
}

.faq-card:hover {
    background: linear-gradient(135deg, rgb(221 160 221 / 20%) 0%, rgb(221 160 221 / 10%) 100%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative orchid accent; no palette token is byte-identical; literal preserves zero-diff */
    border-left-color: #BA55D3;
}

.faq-link {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #DDA0DD, #BA55D3);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 25px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 2px 10px rgb(221 160 221 / 30%);
    transition: all 0.3s ease;
    margin-top: var(--space-4);
    text-decoration: none;
}

.faq-link:hover {
    background: linear-gradient(135deg, #BA55D3, #9932CC);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 4px 20px rgb(221 160 221 / 40%);
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form-container {
    position: sticky;
    top: 2rem;
    z-index: 1; /* Lower than header z-index (1002) to prevent overlapping */
}

/* FIXED: Ensure proper stacking context and prevent header overlap */
@media (width >= 769px) {
    .contact-form-container {
        top: 6rem; /* Add more space from top to avoid header */
        z-index: 10; /* Still lower than header but above other content */
        max-height: calc(100vh - 8rem); /* Prevent extending beyond viewport */
    }
}

.contact-form-card {
    position: relative;
    z-index: 1; /* Ensure it doesn't interfere with header */
    padding: var(--space-8);
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD);
    animation: rainbow-slide 4s ease-in-out infinite;
    background-size: 300% 100%;
    pointer-events: none; /* FIXED: Prevent blocking clicks */
}

@keyframes rainbow-slide {
    0%, 100% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
}

.contact-form-card h2 {
    position: relative;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--purple-700);
    margin-bottom: var(--space-4);
}

.contact-form-card h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-700), var(--purple-600));
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-scale radius — no --radius-* token is byte-identical; literal preserves zero-diff */
    border-radius: 2px;
}

.form-description {
    line-height: 1.6;
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    padding: var(--space-4);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.95rem;
    background: linear-gradient(135deg, rgb(255 255 255 / 90%) 0%, rgb(248 249 250 / 80%) 100%);
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: linear-gradient(135deg, rgb(255 255 255 / 100%) 0%, rgb(248 249 250 / 95%) 100%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound focus-ring + shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 0 0 4px rgb(92 31 113 / 15%), 0 4px 20px rgb(92 31 113 / 10%);
    transform: translateY(-1px);
    outline: none;
    border-color: var(--purple-700);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--purple-600);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 2px 10px rgb(123 43 133 / 10%);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.8rem;
    color: var(--neutral-600);
    text-align: right;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.checkbox-label input[type="checkbox"] {
    /* CONS-04 / D-10: 44px tap-target floor on the newsletter checkbox (rendered
       12x12 natively). The boundingBox gate measures the input element itself, so
       the control's own box must reach >=44 — a transparent ::before overlay does
       NOT enlarge the measured box. This grows the checkbox to a 44x44 tap area
       (sanctioned hit-area delta); accent-color keeps the brand-purple tick. */
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    min-block-size: 44px;
    min-inline-size: 44px;
    margin: 0;
    accent-color: var(--purple-700);
}

.contact-submit-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-10);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    border: none;
    border-radius: var(--radius-full);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 4px 20px rgb(255 107 107 / 30%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 30%), transparent);
    transition: left 0.6s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #FF5252 0%, #26C6DA 50%, #2196F3 100%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- compound bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 8px 30px rgb(255 107 107 / 40%), 0 16px 60px rgb(78 205 196 / 20%);
    transform: translateY(-3px) scale(1.05);
}

.contact-submit-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.contact-submit-btn:disabled {
    background: linear-gradient(135deg, #9E9E9E, #757575);
    box-shadow: none;
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}

.contact-submit-btn .btn-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

.form-status {
    position: relative;
    display: none;
    padding: var(--space-5);
    font-weight: 600;
    border-radius: var(--radius-md);
    margin-top: var(--space-6);
    overflow: hidden;
}

.form-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentcolor;
}

.form-status.success {
    display: block;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative success-text green; no palette token is byte-identical; literal preserves zero-diff */
    color: #2E7D32;
    background: linear-gradient(135deg, rgb(76 175 80 / 10%) 0%, rgb(129 199 132 / 5%) 100%);
    border: 1px solid rgb(76 175 80 / 30%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 4px 20px rgb(76 175 80 / 10%);
}

.form-status.error {
    display: block;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative error-text red; no palette token is byte-identical; literal preserves zero-diff */
    color: #C62828;
    background: linear-gradient(135deg, rgb(244 67 54 / 10%) 0%, rgb(229 115 115 / 5%) 100%);
    border: 1px solid rgb(244 67 54 / 30%);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry/tint — no --shadow-* token is byte-identical; literal preserves zero-diff */
    box-shadow: 0 4px 20px rgb(244 67 54 / 10%);
}

/* Responsive Design */
@media (width <= 768px) {
    .contact-hero-content h1 {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 2.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .contact-form-container {
        position: static;
    }

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

    .contact-method-card {
        padding: var(--space-6);
    }

    .contact-form-card {
        padding: var(--space-8);
    }
}

@media (width <= 480px) {
    .contact-hero-section {
        padding: var(--space-12) 0 var(--space-8);
    }

    .contact-hero-content h1 {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 2rem;
    }

    .contact-hero-section .hero-description {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale-extension size — no --text-* token is byte-identical; literal preserves zero-diff */
        font-size: 1.1rem;
    }

    .contact-info-section {
        padding: var(--space-12) 0;
    }

    .contact-method-card {
        padding: var(--space-5);
    }

    .contact-form-card {
        padding: var(--space-6);
    }
}