/* Contact Page Premium Styles */

.contact-page {
    background: var(--bg-deep);
}

/* --- Contact Hub Section --- */
.section-padding {
    padding: var(--section-padding);
}

.contact-hub-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 1.3fr;
    gap: 40px;
    align-items: start;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-standard);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    border-color: rgba(99, 140, 255, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.contact-form-container {
    padding: 45px 50px;
    background: var(--bg-body);
    color: var(--bg-footer);
}

.contact-form-container .section-title {
    color: var(--bg-deep);
}

.hub-header {
    margin-bottom: 45px;
}

.hub-header .section-title {
    font-family: var(--font-primary);
    font-size: 28px;
    margin-top: 0;
}

.hub-header p {
    color: var(--bg-deep);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
    max-width: 500px;
}

/* --- Premium Form Styling --- */
.hub-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.hub-contact-form .form-group {
    margin-bottom: 25px;
}

.hub-contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-deep);
    margin-bottom: 12px;
    font-family: var(--font-text);
}

.hub-contact-form input,
.hub-contact-form select,
.hub-contact-form textarea {
    width: 100%;
    background: var(--bg-body);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 18px 25px;
    border-radius: 12px;
    color: var(--bg-deep);
    font-family: var(--font-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hub-contact-form input:focus,
.hub-contact-form select:focus,
.hub-contact-form textarea:focus {
    background: var(--bg-body);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(99, 140, 255, 0.1);
    outline: none;
}

.hub-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.hub-contact-form option {
    background: var(--bg-body);
    color: var(--bg-deep);
}

.trip-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-checkbox input {
    display: none;
}

.pill-checkbox span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    color: var(--bg-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pill-checkbox input:checked+span {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.response-text {
    font-size: 0.8rem;
    color: var(--bg-deep);
    line-height: 1.5;
    opacity: 0.8;
}

.response-text strong {
    color: var(--bg-footer);
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    padding: 14px 30px;
    background: var(--bg-deep);
    color: #ffffff;
    border: 1px solid var(--bg-deep);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* --- Sidebar Quick Connect --- */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 45px;
}

.quick-card {
    padding: 0;
}

.card-content.full-width {
    width: 100%;
}

.sidebar-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
}

.sidebar-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.method-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.method-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-text);
}

.method-info a,
.method-info span {
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.method-info a:hover {
    color: var(--accent-primary);
}

.mini-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-text);
    margin-bottom: 25px;
}

.sidebar-social-circles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.sidebar-social-circles a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-primary);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.sidebar-social-circles a:hover {
    background: var(--accent-primary);

    color: var(--bg-deep);
    transform: translateY(-3px);
}

.mini-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    gap: 20px;
}

/* --- Supplementary Section --- */
.no-top {
    padding-top: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 10px;
}

.supp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.supp-card {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.supp-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-primary);
    opacity: 0.6;
}

.supp-card h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.supp-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-footer a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.card-footer a i {
    color: var(--accent-primary);
}

.card-footer a:hover {
    color: var(--accent-primary);
}

.link-btn {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.link-btn:hover {
    letter-spacing: 2px;
    color: white;
}

/* --- Map Section --- */
.map-section {
    position: relative;
    height: 450px;
    padding: 0;
    margin-bottom: 0;
}

.map-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.map-tag {
    display: inline-block;
    background: var(--bg-deep);
    color: white;
    padding: 15px 30px;
    font-family: var(--font-text);
    letter-spacing: 3px;
    font-weight: 700;
    border-radius: 0 0 20px 20px;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.google-map-container {
    height: 100%;
}

.google-map-container iframe {
    width: 100%;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Staggered durations */
.contact-form-container {
    animation-delay: 0.2s;
}

.contact-sidebar .quick-card:nth-child(1) {
    animation-delay: 0.4s;
}

.contact-sidebar .quick-card:nth-child(2) {
    animation-delay: 0.6s;
}

.contact-sidebar .quick-card:nth-child(3) {
    animation-delay: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-hub-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-top: 0;
    }

    .supp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .supp-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hub-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .hub-header .section-title {
        font-size: 24px;
    }

    .contact-form-container {
        padding: 30px;
    }
}