/* Contact Page - Valentine Theme */
/* Remove space theme and apply Valentine styling */

/* Contact Hero Section */
.contact-hero {
    min-height: 60vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, 
        #fff0f5 0%, 
        #ffe4e9 20%,
        #fff5f8 40%,
        #ffeef2 60%,
        #ffe0e6 80%,
        #fff0f5 100%
    );
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 192, 203, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 156, 0.25) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.contact-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.contact-hearts .heart,
.contact-hearts .sparkle {
    position: absolute;
    top: -50px;
    font-size: 1.2rem;
    animation: heartfall linear infinite;
    opacity: 0.5;
}

.contact-hearts .heart {
    color: rgba(255, 107, 156, 0.7);
    text-shadow: 0 0 8px rgba(255, 107, 156, 0.6);
}

.contact-hearts .sparkle {
    color: rgba(255, 192, 203, 0.9);
    text-shadow: 0 0 6px rgba(255, 182, 193, 0.7);
}

.contact-hearts .heart:nth-child(1), .contact-hearts .sparkle:nth-child(1) { left: 5%; animation-duration: 15s; animation-delay: 0s; }
.contact-hearts .heart:nth-child(2), .contact-hearts .sparkle:nth-child(2) { left: 15%; animation-duration: 18s; animation-delay: 2s; }
.contact-hearts .heart:nth-child(3), .contact-hearts .sparkle:nth-child(3) { left: 25%; animation-duration: 14s; animation-delay: 1s; }
.contact-hearts .heart:nth-child(4), .contact-hearts .sparkle:nth-child(4) { left: 35%; animation-duration: 16s; animation-delay: 3s; }
.contact-hearts .heart:nth-child(5), .contact-hearts .sparkle:nth-child(5) { left: 45%; animation-duration: 17s; animation-delay: 0.5s; }
.contact-hearts .heart:nth-child(6), .contact-hearts .sparkle:nth-child(6) { left: 55%; animation-duration: 15s; animation-delay: 2.5s; }
.contact-hearts .heart:nth-child(7), .contact-hearts .sparkle:nth-child(7) { left: 65%; animation-duration: 19s; animation-delay: 1.5s; }
.contact-hearts .heart:nth-child(8), .contact-hearts .sparkle:nth-child(8) { left: 75%; animation-duration: 16s; animation-delay: 0.8s; }
.contact-hearts .heart:nth-child(9), .contact-hearts .sparkle:nth-child(9) { left: 85%; animation-duration: 18s; animation-delay: 2.2s; }
.contact-hearts .heart:nth-child(10), .contact-hearts .sparkle:nth-child(10) { left: 95%; animation-duration: 14s; animation-delay: 1.2s; }

@keyframes heartfall {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
}
    50% {
        transform: translateY(50vh) translateX(20px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) translateX(-20px) scale(0.9);
        opacity: 0.2;
    }
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #c2185b;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 3px 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #c2185b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 
        0 2px 6px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(255, 255, 255, 0.6);
}

.hero-message {
    font-size: 1.1rem;
    color: #3a3a3a;
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-message i {
    color: #ff6b9c;
    margin-left: 0.5rem;
    animation: heartPulse 2s ease-in-out infinite;
}

.hero-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 156, 0.2);
    border-color: rgba(255, 107, 156, 0.5);
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Contact Methods Section */
.contact-methods {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, 
        #fff5f8 0%, 
        #fff0f5 50%,
        #fff5f8 100%
    );
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9c 0%, #ff8ba7 50%, #ffb6c1 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 156, 0.15);
    border-color: rgba(255, 107, 156, 0.4);
}

.contact-card h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #fff5f8 0%, #ffeef2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid rgba(255, 182, 193, 0.3);
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9c 0%, #ff8ba7 50%, #ffb6c1 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.whatsapp-card .card-icon {
    color: #25D366;
}

.call-card .card-icon {
    color: #c2185b;
}

.social-card .card-icon {
    color: #ff6b9c;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(255, 107, 156, 0.6);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.call-button {
    background: linear-gradient(135deg, #c2185b 0%, #ff6b9c 50%, #ff8ba7 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3);
}

.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0099FF 100%);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25F4EE 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, 
        #fff0f5 0%, 
        #fff5f8 50%,
        #fff0f5 100%
    );
    position: relative;
}

.faq-title,
.location-title,
.review-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #c2185b;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 
        0 2px 6px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(255, 255, 255, 0.6);
}

.faq-title i,
.location-title i,
.review-title i {
    color: #ff6b9c;
    margin-left: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 182, 193, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #ff6b9c 0%, #ff8ba7 100%);
    transition: height 0.3s ease;
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 15px 30px rgba(255, 107, 156, 0.15);
    border-color: rgba(255, 107, 156, 0.4);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item h3 i {
    color: #ff6b9c;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-item:hover h3 i {
    transform: scale(1.2) rotate(15deg);
}

.faq-item p {
    color: #666666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.faq-list li i {
    color: #ff6b9c;
    font-size: 0.9rem;
}

/* Location Section */
.location-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, 
        #fff5f8 0%, 
        #fff0f5 50%,
        #fff5f8 100%
    );
    position: relative;
}

.map-container {
    margin: 30px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.address-card,
.hours-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.2);
}

.address-card:hover,
.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 156, 0.15);
    border-color: rgba(255, 107, 156, 0.4);
}

.address-card i,
.hours-card i {
    color: #ff6b9c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.address-card h3,
.hours-card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.address-text,
.hours-text {
    color: #666666;
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Review Section */
.review-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, 
        #fff0f5 0%, 
        #fff5f8 50%,
        #fff0f5 100%
    );
    position: relative;
}

.review-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 156, 0.15);
    border-color: rgba(255, 107, 156, 0.4);
}

.rating-preview {
    margin-bottom: 2rem;
}

.stars {
    color: #ff6b9c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rating-text {
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #c2185b 0%, #ff6b9c 50%, #ff8ba7 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.3);
    position: relative;
    overflow: hidden;
}

.review-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.review-button:hover::before {
    left: 100%;
}

.review-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 24, 91, 0.4);
}

.review-button i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
}

    .hero-message {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
}

    .contact-card {
        padding: 2rem;
}

    .faq-grid {
        grid-template-columns: 1fr;
}

    .location-info {
        grid-template-columns: 1fr;
}

    .map-container iframe {
        height: 300px;
    }

    .address-card,
    .hours-card {
        padding: 2rem;
    }

    .review-card {
        padding: 2rem;
}
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Contact Refresh */
.contact-hero {
    min-height: auto;
    padding: 7.5rem 2rem 4.5rem;
    background:
        radial-gradient(circle at top left, rgba(255, 206, 220, 0.6), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8), transparent 18%),
        linear-gradient(180deg, #fff9fb 0%, #fff2f6 55%, #fff7fa 100%);
}

.contact-hearts .heart,
.contact-hearts .sparkle {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 1.6rem;
    align-items: end;
}

.contact-hero-copy {
    text-align: left;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(244, 209, 221, 0.92);
    color: #bb5b7e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero-title {
    max-width: 12ch;
    color: #2f2430;
    text-shadow: none;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.contact-subtitle {
    max-width: 52ch;
    color: #6f6570;
    font-size: 1.05rem;
    font-weight: 500;
    text-shadow: none;
    margin-bottom: 1rem;
}

.hero-message {
    max-width: 56ch;
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(243, 209, 221, 0.92);
    box-shadow: 0 18px 38px rgba(234, 188, 204, 0.14);
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.contact-button-secondary {
    background: rgba(255, 255, 255, 0.94);
    color: #4e3d4f;
    border: 1px solid rgba(241, 208, 221, 0.94);
    box-shadow: 0 12px 24px rgba(228, 180, 197, 0.14);
}

.contact-hero-panel {
    display: grid;
    gap: 0.85rem;
}

.contact-panel-card {
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(243, 209, 221, 0.94);
    box-shadow: 0 18px 34px rgba(232, 182, 199, 0.14);
    text-align: left;
}

.contact-panel-card span {
    display: block;
    margin-bottom: 0.35rem;
    color: #b65a7c;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-panel-card strong {
    color: #352936;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-methods,
.faq-section,
.location-section,
.review-section {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    background: linear-gradient(180deg, #fff8fb 0%, #fff3f7 100%);
}

.contact-section-heading {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-section-kicker {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: #bb5b7e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-section-heading h2 {
    margin: 0 0 0.8rem;
    color: #2f2430;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.contact-section-heading p {
    color: #746a75;
    line-height: 1.75;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.contact-card {
    border-radius: 28px;
    padding: 2.1rem;
    text-align: left;
    box-shadow: 0 18px 42px rgba(231, 185, 201, 0.15);
}

.contact-card-tag {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 241, 246, 0.96);
    border: 1px solid rgba(242, 208, 221, 0.94);
    color: #b85c7f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.card-icon {
    width: 4.8rem;
    height: 4.8rem;
    margin: 0 0 1.35rem;
}

.contact-card h3 {
    color: #2f2430;
    margin-bottom: 0.75rem;
}

.contact-card p {
    margin-bottom: 1rem;
    color: #6f6570;
}

.contact-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.contact-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 245, 248, 0.96);
    border: 1px solid rgba(243, 209, 221, 0.94);
    color: #8e697b;
    font-size: 0.78rem;
    font-weight: 600;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 960px;
    margin: 1.4rem auto 0;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(243, 209, 221, 0.94);
    box-shadow: 0 16px 32px rgba(231, 185, 201, 0.12);
}

.contact-note i {
    color: #cf6c92;
    font-size: 1.2rem;
}

.contact-note p {
    margin: 0;
    color: #6f6570;
    line-height: 1.7;
}

.faq-title,
.location-title,
.review-title {
    color: #2f2430;
    font-family: 'Playfair Display', serif;
    text-shadow: none;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
}

.faq-item,
.address-card,
.hours-card,
.review-card {
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(231, 185, 201, 0.14);
}

.review-subtitle {
    color: #746a75;
}

@media (max-width: 900px) {
    .contact-hero-shell,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-copy,
    .contact-panel-card,
    .contact-card {
        text-align: left;
    }
}

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

    .contact-hero-title {
        max-width: none;
        font-size: 2.2rem;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-hero-actions .contact-button {
        width: 100%;
        justify-content: center;
    }

    .contact-note {
        align-items: flex-start;
    }
}
