/* Contact Page Specific Styles - Kediri Tourism */

    :root {
        --primary: #2c786c;
        --primary-dark: #1a4d44;
        --primary-light: #3d9d8f;
        --secondary: #ff9800;
        --secondary-dark: #f57c00;
        --accent: #004445;
        --success: #10b981;
        --danger: #ef4444;
        --warning: #f59e0b;
        --info: #3b82f6;
        --light: #f8fafc;
        --dark: #1e293b;
        --gray-50: #f9fafb;
        --gray-100: #f3f4f6;
        --gray-200: #e5e7eb;
        --gray-300: #d1d5db;
        --gray-400: #9ca3af;
        --gray-500: #6b7280;
        --gray-600: #4b5563;
        --gray-700: #374151;
        --gray-800: #1f2937;
        --gray-900: #111827;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    }

    [data-bs-theme="dark"] {
        --light: #1e293b;
        --dark: #f8fafc;
        --gray-50: #0f172a;
        --gray-100: #1e293b;
        --gray-200: #334155;
        --gray-300: #475569;
    }

    /* Page Header */
    .page-header {
        background: linear-gradient(135deg, rgba(44, 120, 108, 0.95) 0%, rgba(0, 68, 69, 0.95) 100%),
                    url('../images/hero-bg.jpg') center/cover no-repeat;
        background-attachment: fixed;
        padding: 8rem 0 4rem;
        margin-top: 76px;
        position: relative;
        overflow: hidden;
        color: white;
    }

    .page-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(255, 152, 0, 0.1), transparent 50%);
    }

    .breadcrumb {
        background: transparent;
        margin-bottom: 1.5rem;
    }

    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
    }

    .breadcrumb-item a:hover {
        color: white;
    }

    .breadcrumb-item.active {
        color: white;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.6);
    }

    .header-stats {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 1rem;
        text-align: center;
    }

    .header-stats h3 {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin: 0;
    }

    .header-stats small {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Section Styles */
    .section-padding {
        padding: 5rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: var(--gray-900);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    [data-bs-theme="dark"] .section-title {
        color: var(--gray-100);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--gray-600);
        max-width: 600px;
        margin: 0 auto;
    }

    [data-bs-theme="dark"] .section-subtitle {
        color: var(--gray-400);
    }

    /* Contact Info Cards */
    .contact-info-card {
        background: white;
        border: none;
        border-radius: 1.5rem;
        padding: 2.5rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
        height: 100%;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .contact-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    [data-bs-theme="dark"] .contact-info-card {
        background: var(--gray-800);
    }

    .contact-info-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .contact-icon {
        color: var(--primary);
        margin-bottom: 1.5rem;
        transition: var(--transition);
    }

    .contact-info-card:hover .contact-icon {
        transform: scale(1.1);
        color: var(--primary-dark);
    }

    .contact-info-card h4 {
        color: var(--gray-900);
        margin-bottom: 1.5rem;
        font-weight: 700;
        font-size: 1.4rem;
    }

    [data-bs-theme="dark"] .contact-info-card h4 {
        color: var(--gray-100);
    }

    .contact-info-card p {
        color: var(--gray-600);
        margin-bottom: 1.5rem;
        line-height: 1.6;
        font-size: 1rem;
    }

    [data-bs-theme="dark"] .contact-info-card p {
        color: var(--gray-400);
    }

    .contact-info-card .btn {
        border-radius: 2rem;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        transition: var(--transition);
    }

    .contact-info-card .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    /* Contact Form */
    .contact-form .form-control,
    .contact-form .form-select {
        border: 2px solid var(--gray-200);
        border-radius: 1rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        transition: var(--transition);
        background: white;
        box-shadow: var(--shadow-sm);
    }

    [data-bs-theme="dark"] .contact-form .form-control,
    [data-bs-theme="dark"] .contact-form .form-select {
        background: var(--gray-800);
        border-color: var(--gray-700);
        color: var(--gray-100);
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(44, 120, 108, 0.15);
        background: white;
    }

    [data-bs-theme="dark"] .contact-form .form-control:focus,
    [data-bs-theme="dark"] .contact-form .form-select:focus {
        background: var(--gray-700);
    }

    .contact-form label {
        font-weight: 600;
        color: var(--gray-700);
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    [data-bs-theme="dark"] .contact-form label {
        color: var(--gray-300);
    }

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

    .contact-form .form-check-input:checked {
        background-color: var(--primary);
        border-color: var(--primary);
    }

    .contact-form .form-check-label {
        color: var(--gray-600);
        font-weight: 500;
    }

    [data-bs-theme="dark"] .contact-form .form-check-label {
        color: var(--gray-400);
    }

    .contact-form .btn-primary {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border: none;
        border-radius: 2rem;
        padding: 1rem 2rem;
        font-weight: 600;
        font-size: 1.1rem;
        transition: var(--transition);
    }

    .contact-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
    }

    /* Team Cards */
    .team-card {
        background: white;
        border: none;
        border-radius: 1.5rem;
        padding: 2.5rem 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
        text-align: center;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .team-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    [data-bs-theme="dark"] .team-card {
        background: var(--gray-800);
    }

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .team-avatar {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem;
    }

    .team-avatar img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        border: 4px solid var(--primary);
        transition: var(--transition);
        object-fit: cover;
        box-shadow: var(--shadow);
    }

    .team-card:hover .team-avatar img {
        transform: scale(1.05);
        border-color: var(--primary-dark);
    }

    .team-card h5 {
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: var(--gray-900);
        font-size: 1.3rem;
    }

    [data-bs-theme="dark"] .team-card h5 {
        color: var(--gray-100);
    }

    .team-card .text-primary {
        color: var(--primary) !important;
    }

    /* FAQ Accordion */
    .accordion-item {
        border: none;
        margin-bottom: 1rem;
    }

    .accordion-button {
        font-weight: 600;
        padding: 1.5rem;
        border: 2px solid var(--gray-200);
        border-radius: 1rem !important;
        transition: var(--transition);
        font-size: 1.05rem;
        background: white;
        color: var(--gray-800);
    }

    [data-bs-theme="dark"] .accordion-button {
        background: var(--gray-800);
        border-color: var(--gray-700);
        color: var(--gray-100);
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        border-color: var(--primary);
        box-shadow: var(--shadow);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.2rem rgba(44, 120, 108, 0.15);
        border-color: var(--primary);
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c786c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-body {
        padding: 1.5rem;
        background: white;
        border: 2px solid var(--gray-200);
        border-top: none;
        border-radius: 0 0 1rem 1rem;
        line-height: 1.7;
        color: var(--gray-700);
    }

    [data-bs-theme="dark"] .accordion-body {
        background: var(--gray-800);
        border-color: var(--gray-700);
        color: var(--gray-300);
    }

    /* Office Hours */
    .office-hours-card {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        border-radius: 1.5rem;
        padding: 3rem;
        color: white;
        box-shadow: var(--shadow-xl);
        position: relative;
        overflow: hidden;
    }

    .office-hours-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    .office-hours-card h3 {
        position: relative;
        z-index: 1;
    }

    .time-slot {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 1rem;
        padding: 2rem;
        position: relative;
        z-index: 1;
        transition: var(--transition);
    }

    .time-slot:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .time-slot h5 {
        color: white;
        font-weight: 700;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    .time-slot p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    /* Emergency Contacts */
    .emergency-card {
        background: white;
        border: 3px solid;
        border-radius: 1.5rem;
        padding: 2.5rem 1.5rem;
        transition: var(--transition);
        text-align: center;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    [data-bs-theme="dark"] .emergency-card {
        background: var(--gray-800);
    }

    .emergency-card:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: var(--shadow-xl);
    }

    .emergency-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .emergency-card.border-danger::before {
        background: var(--danger);
    }

    .emergency-card.border-warning::before {
        background: var(--warning);
    }

    .emergency-card.border-info::before {
        background: var(--info);
    }

    .emergency-card.border-success::before {
        background: var(--success);
    }

    .emergency-icon {
        transition: var(--transition);
        margin-bottom: 1.5rem;
    }

    .emergency-card:hover .emergency-icon {
        transform: scale(1.2) rotate(10deg);
    }

    .emergency-card h5 {
        font-weight: 800;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: var(--gray-900);
    }

    [data-bs-theme="dark"] .emergency-card h5 {
        color: var(--gray-100);
    }

    /* Alert Notification */
    .alert-notification {
        position: fixed;
        top: 100px;
        right: 20px;
        z-index: 9999;
        min-width: 300px;
        max-width: 400px;
        box-shadow: var(--shadow-xl);
        border: none;
        border-radius: 1rem;
        animation: slideInRight 0.3s ease;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
        box-shadow: var(--shadow-lg);
        cursor: pointer;
    }

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
    }

    /* Responsive Design */
    @media (max-width: 991.98px) {
        .page-header {
            padding: 6rem 0 3rem;
        }
        
        .section-padding {
            padding: 3.5rem 0;
        }
    }

    @media (max-width: 768px) {
        .page-header {
            padding: 6rem 0 3rem;
            background-attachment: scroll;
        }
        
        .section-padding {
            padding: 3rem 0;
        }
        
        .contact-info-card {
            padding: 2rem 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .team-card {
            padding: 2rem 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .team-avatar img {
            width: 120px;
            height: 120px;
        }
        
        .emergency-card {
            padding: 2rem 1rem;
            margin-bottom: 1rem;
        }
        
        .accordion-button {
            padding: 1.25rem;
            font-size: 1rem;
        }
        
        .contact-form .form-control,
        .contact-form .form-select {
            padding: 0.875rem 1.25rem;
        }
        
        .office-hours-card {
            padding: 2.5rem 2rem;
        }
        
        .time-slot {
            padding: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .page-header {
            padding: 5rem 0 2.5rem;
        }
        
        .header-stats h3 {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 1.75rem;
        }
        
        .contact-info-card {
            padding: 1.5rem 1rem;
        }
        
        .team-card {
            padding: 1.5rem 1rem;
        }
        
        .team-avatar img {
            width: 100px;
            height: 100px;
        }
        
        .emergency-card {
            padding: 1.5rem 0.75rem;
        }
        
        .office-hours-card {
            padding: 2rem 1.5rem;
        }
        
        .alert-notification {
            left: 10px;
            right: 10px;
            min-width: auto;
            max-width: none;
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
        }
    }

    /* Quick Info Section */
.quick-info-section {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

[data-bs-theme="dark"] .quick-info-section {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-color: var(--gray-700);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

[data-bs-theme="dark"] .info-card {
    background: var(--gray-800);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.1rem;
}

[data-bs-theme="dark"] .info-content h5 {
    color: var(--gray-100);
}

.info-content p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

[data-bs-theme="dark"] .info-content p {
    color: var(--gray-400);
}

/* Prayer Times & Mosques Cards */
.prayer-times-card,
.mosques-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.prayer-times-card:hover,
.mosques-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.prayer-times-card .card-header,
.mosques-card .card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 1.5rem 1.5rem 0 0 !important;
}

.prayer-times-card .card-header h5,
.mosques-card .card-header h5 {
    margin: 0;
    font-weight: 700;
}

.prayer-times-card .card-body,
.mosques-card .card-body {
    padding: 2rem;
}

/* Prayer Times Grid */
.prayer-times-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prayer-time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border-radius: 1rem;
    transition: var(--transition);
}

[data-bs-theme="dark"] .prayer-time-item {
    background: var(--gray-700);
}

.prayer-time-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

[data-bs-theme="dark"] .prayer-time-item:hover {
    background: var(--gray-600);
}

.prayer-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

[data-bs-theme="dark"] .prayer-name {
    color: var(--gray-100);
}

.prayer-time {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--primary);
    background: rgba(44, 120, 108, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    min-width: 80px;
    text-align: center;
}

/* Mosques List */
.mosques-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mosque-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 1rem;
    transition: var(--transition);
}

[data-bs-theme="dark"] .mosque-item {
    background: var(--gray-700);
}

.mosque-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

[data-bs-theme="dark"] .mosque-item:hover {
    background: var(--gray-600);
}

.mosque-info h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1rem;
}

[data-bs-theme="dark"] .mosque-info h6 {
    color: var(--gray-100);
}

.mosque-info p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

[data-bs-theme="dark"] .mosque-info p {
    color: var(--gray-400);
}

.mosque-info small {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.mosque-distance .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
}

/* Real Time Clock */
.real-time-clock {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--gray-600);
}

[data-bs-theme="dark"] .real-time-clock {
    color: var(--gray-400);
}

/* Responsive Design untuk Section Baru */
@media (max-width: 768px) {
    .quick-info-section {
        padding: 1.5rem 0;
    }
    
    .info-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .prayer-times-card .card-body,
    .mosques-card .card-body {
        padding: 1.5rem;
    }
    
    .prayer-time-item,
    .mosque-item {
        padding: 1rem;
    }
    
    .prayer-time {
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .prayer-times-card .card-body,
    .mosques-card .card-body {
        padding: 1.25rem;
    }
    
    .prayer-time-item,
    .mosque-item {
        padding: 0.875rem;
    }
    
    .mosque-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .real-time-clock {
        display: none;
    }
}