/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');

}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 146, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fb923c;
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: #fb923c;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* Modern Contact Hub Experience */
.contact-hub {
    padding: 80px 20px 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    z-index: 2;
    margin-top: -40px;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.03);
}

.hub-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hub-left {
    display: flex;
    flex-direction: column;
}

.hub-header {
    margin-bottom: 40px;
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 24px 30px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateX(10px) translateY(-2px);
    box-shadow: -5px 15px 35px rgba(251, 146, 60, 0.1);
    border-color: rgba(251, 146, 60, 0.2);
}

.method-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.method-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.method-text {
    flex-grow: 1;
}

.method-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.method-text p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.method-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.method-arrow svg {
    width: 20px;
    height: 20px;
}

.method-card:hover .method-arrow {
    background: #fb923c;
    color: white;
    transform: rotate(-45deg);
}

/* Premium Info Card */
.premium-info-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    border-radius: 30px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.2);
}

.card-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(251, 146, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 1;
}

.premium-info-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.card-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.5;
}

.p-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.p-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.p-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-icon svg {
    width: 22px;
    height: 22px;
    color: #fb923c;
}

.p-text h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.p-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.p-social-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
}

.p-social-section h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.p-social-icons {
    display: flex;
    gap: 16px;
}

.p-social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-social-icons a:hover {
    background: #fb923c;
    border-color: #fb923c;
    transform: translateY(-5px);
}

.p-social-icons svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.map-container {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Shared Styles */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.2);
    border-radius: 30px;
    color: #fb923c;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.gradient {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 146, 60, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 20px 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-hub {
        padding: 50px 20px 70px;
    }

    .method-card {
        padding: 20px;
    }

    .premium-info-card {
        padding: 40px 30px;
    }

    .map-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .premium-info-card h3 {
        font-size: 26px;
    }

    .method-icon {
        width: 50px;
        height: 50px;
        margin-right: 16px;
    }

    .method-icon svg {
        width: 24px;
        height: 24px;
    }
}