/* CONTACT US PAGE - NEW DESIGN (scoped with cu- prefix) */

/* Hero Section */
.cu-hero {
    position: relative;
    background: linear-gradient(rgba(139, 26, 26, 0.6), rgba(107, 20, 20, 0.7)),
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&h=600&fit=crop') center/cover no-repeat fixed;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}
.cu-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.3) 0%, transparent 50%, rgba(107, 20, 20, 0.3) 100%);
}
.cu-hero-content {
    position: relative;
    z-index: 2;
    animation: cuFadeInUp 1s ease;
}
.cu-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}
.cu-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}
.cu-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.3));
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Breadcrumb */
.cu-breadcrumb-section {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}
.cu-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}
.cu-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
}
.cu-breadcrumb li a {
    color: #8B1A1A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.cu-breadcrumb li a:hover { color: #A52A2A; }
.cu-breadcrumb li:not(:last-child)::after { content: '/'; color: #ccc; }
.cu-breadcrumb li.cu-active { color: #555; font-weight: 500; }

/* Section Header */
.cu-section-header {
    text-align: center;
    margin-bottom: 45px;
}
.cu-section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B1A1A, #A52A2A, #6B1414);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.cu-title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B1A1A, #A52A2A);
    margin: 0 auto;
    border-radius: 2px;
}

/* Contact Info Section */
.cu-contact-info-section {
    padding: 80px 0 60px;
    background: white;
    font-family: 'Poppins', sans-serif;
}
.cu-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cu-contact-info-card {
    text-align: center;
    padding: 45px 30px;
    border-radius: 16px;
    background: #f8f9fa;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.cu-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1A1A, #A52A2A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.cu-contact-info-card:hover::before { transform: scaleX(1); }
.cu-contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 26, 26, 0.1);
    border-color: rgba(139, 26, 26, 0.1);
}
.cu-contact-info-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.08), rgba(165, 42, 42, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}
.cu-contact-info-card:hover .cu-contact-info-icon {
    background: linear-gradient(135deg, #8B1A1A, #A52A2A);
    transform: scale(1.05);
}
.cu-contact-info-icon svg {
    width: 30px;
    height: 30px;
    fill: #8B1A1A;
    transition: fill 0.3s ease;
}
.cu-contact-info-card:hover .cu-contact-info-icon svg { fill: white; }
.cu-contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.cu-contact-info-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}
.cu-contact-info-text a {
    color: #8B1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}
.cu-contact-info-text a:hover { color: #A52A2A; }

/* Contact Form Section */
.cu-contact-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    font-family: 'Poppins', sans-serif;
}
.cu-contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.cu-form-card {
    background: white;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 20px 60px rgba(139, 26, 26, 0.08), 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(139, 26, 26, 0.05);
    position: relative;
    overflow: hidden;
}
.cu-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8B1A1A, #A52A2A, #6B1414);
}
.cu-form-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.cu-form-card-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}
.cu-form-group {
    margin-bottom: 22px;
}
.cu-form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
}
.cu-form-label span { color: #8B1A1A; }
.cu-form-input,
.cu-form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
}
.cu-form-textarea {
    min-height: 140px;
    resize: vertical;
}
.cu-form-input:focus,
.cu-form-textarea:focus {
    outline: none;
    border-color: #8B1A1A;
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.08);
}
.cu-form-input::placeholder,
.cu-form-textarea::placeholder { color: #aaa; }
.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cu-form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.cu-submit-btn {
    flex: 1;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B1A1A, #A52A2A);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.cu-submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.cu-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 26, 26, 0.35);
}
.cu-submit-btn:hover::before { left: 100%; }
.cu-submit-btn:active { transform: translateY(0); }
.cu-submit-btn svg { width: 18px; height: 18px; }
.cu-reset-btn {
    padding: 15px 25px;
    background: transparent;
    color: #8B1A1A;
    border: 2px solid #8B1A1A;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cu-reset-btn:hover {
    background: rgba(139, 26, 26, 0.05);
    transform: translateY(-2px);
}

/* Flash Messages */
.cu-flash-success {
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: none;
    background: #d4edda;
    color: #155724;
    font-family: 'Poppins', sans-serif;
}
.cu-flash-error {
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: none;
    background: #f8d7da;
    color: #721c24;
    font-family: 'Poppins', sans-serif;
}

/* Map Side Card */
.cu-map-side-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.cu-map-container {
    width: 100%;
    height: 300px;
    border: none;
}
.cu-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.cu-map-info {
    padding: 30px;
}
.cu-map-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cu-map-info-title svg {
    width: 20px;
    height: 20px;
    fill: #8B1A1A;
}
.cu-map-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cu-map-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
    color: #555;
}
.cu-map-info-list li:last-child { border-bottom: none; }
.cu-map-info-list li svg {
    width: 18px;
    height: 18px;
    fill: #A52A2A;
    flex-shrink: 0;
    margin-top: 2px;
}
.cu-map-info-list li strong {
    color: #333;
    font-weight: 500;
}

/* Map Full Section */
.cu-map-section {
    padding: 0;
    background: white;
}
.cu-map-full {
    width: 100%;
    height: 400px;
    position: relative;
}
.cu-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}
.cu-map-full:hover iframe { filter: grayscale(0%); }

/* Social Section */
.cu-social-section {
    padding: 60px 0;
    background: white;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.cu-social-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}
.cu-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cu-social-link-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cu-social-link-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
}
.cu-social-link-btn.cu-facebook { background: #1877F2; }
.cu-social-link-btn.cu-twitter { background: #1DA1F2; }
.cu-social-link-btn.cu-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cu-social-link-btn.cu-youtube { background: #FF0000; }
.cu-social-link-btn.cu-whatsapp { background: #25D366; }
.cu-social-link-btn svg { width: 24px; height: 24px; }

/* Animations */
@keyframes cuFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes cuFadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .cu-contact-form-wrapper { grid-template-columns: 1fr; }
    .cu-contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .cu-hero-title { font-size: 2.2rem; }
    .cu-hero-subtitle { font-size: 1rem; }
    .cu-hero { padding: 70px 0; background-attachment: scroll; }
    .cu-form-card { padding: 35px 25px; }
    .cu-form-row { grid-template-columns: 1fr; }
    .cu-form-actions { flex-direction: column; }
    .cu-section-title { font-size: 1.6rem; }
    .cu-map-full { height: 300px; }
    .cu-social-links { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .cu-hero-title { font-size: 1.8rem; }
    .cu-form-card { padding: 30px 20px; border-radius: 15px; }
    .cu-contact-info-section,
    .cu-contact-form-section { padding: 50px 0; }
}
