/*
========================================
  ENHANCED CONTACT & ABOUT PAGE STYLES
  Es Cokelat Seroja - Premium Edition
========================================
*/

/* ===== CONTACT PAGE ENHANCEMENTS ===== */

/* Contact Hero Section - Enhanced */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef8f3 0%, #ffffff 50%, #fef8f3 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 66, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Contact Left - Info Cards */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef8f3 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(74, 40, 16, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #fbbf24);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 40, 16, 0.15);
    border-color: var(--bg-light);
}

.info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card p {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Opening Hours Styling */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 66, 38, 0.1);
    transition: all 0.3s ease;
}

.opening-hours li:last-child {
    border-bottom: none;
}

.opening-hours li:hover {
    padding-left: 0.75rem;
    background: rgba(245, 158, 11, 0.05);
    margin: 0 -0.75rem;
    padding-right: 0.75rem;
    border-radius: 8px;
}

.opening-hours li span:first-child {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.opening-hours li span:last-child {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opening-hours li span:last-child::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* WhatsApp Button - Enhanced */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.0625rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    margin-top: 1rem;
    min-height: 48px; /* Touch-friendly */
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-whatsapp:hover::before {
    width: 300%;
    height: 300%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: var(--bg-white);
}

.btn-whatsapp::after {
    content: '💬';
    position: absolute;
    right: 1.5rem;
    font-size: 1.25rem;
    transition: transform 0.4s ease;
}

.btn-whatsapp:hover::after {
    transform: scale(1.2) rotate(15deg);
}

/* Contact Right - Form */
.contact-right {
    position: relative;
}

.contact-form-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(74, 40, 16, 0.1);
    border: 2px solid var(--bg-light);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    position: relative;
}

.contact-form-card > p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    position: relative;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Form Group */
.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    min-height: 48px; /* Touch-friendly */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(107, 66, 38, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(107, 66, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    min-height: 56px; /* Touch-friendly */
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300%;
    height: 300%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 66, 38, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.maps-full {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 40, 16, 0.15);
    margin-top: 3rem;
    border: 8px solid var(--bg-white);
    transition: all 0.4s ease;
}

.maps-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.maps-full iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== ABOUT PAGE ENHANCEMENTS ===== */

/* Vision & Mission Section */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef8f3 0%, #ffffff 100%);
    position: relative;
}

.vision-card,
.mission-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(74, 40, 16, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.vision-card:hover::before,
.mission-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(74, 40, 16, 0.15);
    border-color: var(--bg-light);
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.vision-card h3::before {
    content: '🎯';
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.mission-card h3::before {
    content: '🚀';
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.vision-card p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin: 0;
}

.mission-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-card ul li {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-left: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.mission-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mission-card ul li:hover {
    padding-left: 3rem;
    color: var(--primary-color);
}

.mission-card ul li:hover::before {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(107, 66, 38, 0.3);
}

.mission-card ul li:last-child {
    margin-bottom: 0;
}

/* Team Section Enhancements */
.team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 40, 16, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 66, 38, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(74, 40, 16, 0.15);
    border-color: var(--accent-color);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding-top: 100%;
}

.team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image {
    transform: scale(1.15);
}

.team-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-image-wrapper::after {
    opacity: 1;
}

.team-info {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-role {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-desc {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* CTA About Enhancements */
.cta-about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 25s ease-in-out infinite;
}

.cta-about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-cta-primary,
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 56px; /* Touch-friendly */
    text-decoration: none;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta-primary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
    color: var(--text-dark);
}

.btn-cta-outline {
    border: 3px solid var(--bg-white);
    color: var(--bg-white);
    background: transparent;
}

.btn-cta-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-white);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-cta-outline:hover::before {
    width: 100%;
}

.btn-cta-outline:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-info {
        padding: 60px 0;
    }
    
    .contact-left {
        margin-bottom: 3rem;
    }
    
    .location-section {
        padding: 80px 0;
    }
    
    .maps-full {
        height: 400px;
    }
    
    .vision-mission {
        padding: 80px 0;
    }
    
    .team-section {
        padding: 80px 0;
    }
    
    .cta-about {
        padding: 80px 0;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* Contact Page Mobile */
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-info {
        padding: 50px 0;
    }
    
    .info-card {
        padding: 2rem 1.5rem;
    }
    
    .info-card h4 {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-card p {
        font-size: 1rem;
    }
    
    .opening-hours li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.875rem 0;
    }
    
    .opening-hours li:hover {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .opening-hours li span:first-child {
        font-size: 0.9375rem;
    }
    
    .opening-hours li span:last-child {
        font-size: 0.9375rem;
        margin-left: 1.5rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-card > p {
        font-size: 0.9375rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .location-section {
        padding: 60px 0;
    }
    
    .maps-full {
        height: 350px;
        border-width: 4px;
    }
    
    /* About Page Mobile */
    .vision-mission {
        padding: 60px 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vision-card h3::before,
    .mission-card h3::before {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .vision-card p {
        font-size: 1rem;
    }
    
    .mission-card ul li {
        font-size: 1rem;
        padding-left: 2.25rem;
    }
    
    .mission-card ul li::before {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-info {
        padding: 2rem 1.5rem;
    }
    
    .team-name {
        font-size: 1.375rem;
    }
    
    .team-role {
        font-size: 1rem;
    }
    
    .team-desc {
        font-size: 0.9375rem;
    }
    
    .cta-about {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .contact-hero {
        padding: 50px 0 30px;
    }
    
    .contact-info {
        padding: 40px 0;
    }
    
    .info-card {
        padding: 1.75rem 1.25rem;
    }
    
    .info-card h4 {
        font-size: 1.125rem;
    }
    
    .info-card p {
        font-size: 0.9375rem;
    }
    
    .opening-hours li {
        padding: 0.75rem 0;
    }
    
    .opening-hours li span:first-child,
    .opening-hours li span:last-child {
        font-size: 0.875rem;
    }
    
    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .contact-form-card {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.375rem;
    }
    
    .contact-form-card > p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-submit {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .location-section {
        padding: 50px 0;
    }
    
    .maps-full {
        height: 300px;
        margin-top: 2rem;
    }
    
    /* About Page Small Mobile */
    .vision-mission {
        padding: 50px 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 1.75rem 1.25rem;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.375rem;
    }
    
    .vision-card h3::before,
    .mission-card h3::before {
        font-size: 1.75rem;
    }
    
    .vision-card p {
        font-size: 0.9375rem;
    }
    
    .mission-card ul li {
        font-size: 0.9375rem;
        padding-left: 2rem;
        margin-bottom: 1rem;
    }
    
    .mission-card ul li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8125rem;
    }
    
    .team-section {
        padding: 50px 0;
    }
    
    .team-info {
        padding: 1.75rem 1.25rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-role {
        font-size: 0.9375rem;
    }
    
    .team-desc {
        font-size: 0.875rem;
    }
    
    .cta-about {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .info-card {
        padding: 1.5rem 1rem;
    }
    
    .info-card h4 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.875rem;
    }
    
    .opening-hours li {
        padding: 0.625rem 0;
    }
    
    .opening-hours li span:first-child,
    .opening-hours li span:last-child {
        font-size: 0.8125rem;
    }
    
    .btn-whatsapp {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .contact-form-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .btn-submit {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .maps-full {
        height: 280px;
    }
    
    .vision-card,
    .mission-card {
        padding: 1.5rem 1rem;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.25rem;
    }
    
    .vision-card h3::before,
    .mission-card h3::before {
        font-size: 1.5rem;
    }
    
    .vision-card p,
    .mission-card ul li {
        font-size: 0.875rem;
    }
    
    .mission-card ul li {
        padding-left: 1.75rem;
    }
    
    .mission-card ul li::before {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .team-info {
        padding: 1.5rem 1rem;
    }
    
    .team-name {
        font-size: 1.125rem;
    }
    
    .team-role {
        font-size: 0.875rem;
    }
    
    .team-desc {
        font-size: 0.8125rem;
    }
    
    .cta-title {
        font-size: 1.375rem;
    }
    
    .cta-subtitle {
        font-size: 0.9375rem;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

/* Focus Visible for Keyboard Navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Reduce Motion for Users Who Prefer It */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .info-card,
    .contact-form-card,
    .vision-card,
    .mission-card,
    .team-card {
        border: 2px solid var(--text-dark);
    }
    
    .btn-whatsapp,
    .btn-submit,
    .btn-cta-primary,
    .btn-cta-outline {
        border: 2px solid currentColor;
    }
}

/* Print Styles */
@media print {
    .contact-hero::before,
    .contact-hero::after,
    .cta-about::before,
    .cta-about::after {
        display: none;
    }
    
    .btn-whatsapp,
    .btn-submit,
    .btn-cta-primary,
    .btn-cta-outline {
        border: 2px solid var(--text-dark);
        color: var(--text-dark) !important;
        background: transparent !important;
    }
}