/* Contact Page Styles */
:root {
    --indigo-600: #4f46e5;
    --purple-600: #7c3aed;
    --pink-600: #ec4899;
    --sky-400: #38bdf8;
    --emerald-500: #10b981;
    --teal-600: #0d9488;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
    color: #0f172a;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    padding: 8rem 1rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-blur-elements {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    overflow: hidden;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blur-circle-1 {
    top: 2.5rem;
    left: 5%;
    width: 18rem;
    height: 18rem;
    background: white;
}

.blur-circle-2 {
    bottom: 2.5rem;
    right: 5%;
    width: 24rem;
    height: 24rem;
    background: #38bdf8;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 72rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    font-size: 1rem;
    color: #bae6fd;
}

.badge-text {
    color: #bae6fd;
    font-weight: 600;
    font-size: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 5rem 1rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Method Card */
.contact-method-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-method-card:nth-child(1) { animation-delay: 0.1s; }
.contact-method-card:nth-child(2) { animation-delay: 0.2s; }
.contact-method-card:nth-child(3) { animation-delay: 0.3s; }

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.method-header {
    position: relative;
    padding: 2rem;
    color: white;
    overflow: hidden;
}

.method-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 8rem;
    height: 8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.method-header::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -25%;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.method-header-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.method-header-content {
    position: relative;
    z-index: 2;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1);
}

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.method-body {
    padding: 1.5rem;
}

.method-details {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.method-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.method-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.method-action:hover {
    color: #4338ca;
}

.method-action i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.method-action:hover i {
    transform: translateX(4px);
}

/* Social & Office Section */
.social-office-section {
    padding: 0 1rem 5rem;
}

.social-office-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .social-office-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Social Card */
.social-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #c7d2fe;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-header-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-header-icon i {
    font-size: 1.5rem;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.social-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.social-link:hover {
    transform: translateX(4px);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-link:hover .social-link-icon {
    background: rgba(255, 255, 255, 0.2);
}

.social-link-icon i {
    font-size: 1.25rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.social-link:hover .social-link-icon i {
    color: white;
}

.social-link-info {
    flex: 1;
}

.social-link-name {
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.social-link:hover .social-link-name {
    color: white;
}

.social-link-handle {
    font-size: 0.875rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.social-link:hover .social-link-handle {
    color: rgba(255, 255, 255, 0.9);
}

/* Office Card */
.office-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #a7f3d0;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.office-header-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #10b981, #0d9488);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.office-header-icon i {
    font-size: 1.5rem;
}

.office-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.office-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.office-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.office-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(to right, #f8fafc, #e0e7ff);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.office-day {
    font-weight: 600;
    color: #1e293b;
}

.office-time {
    color: #4f46e5;
    font-weight: 700;
}

.office-note {
    padding: 1rem;
    background: linear-gradient(to right, #e0e7ff, #c7d2fe);
    border-radius: 0.75rem;
    border: 1px solid #c7d2fe;
    font-size: 0.875rem;
    color: #1e293b;
    line-height: 1.5;
}

.office-note strong {
    color: #4f46e5;
}

/* Map Section */
.map-section {
    padding: 0 1rem 5rem;
}

.map-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #c7d2fe;
}

.map-header {
    background: linear-gradient(to right, #4f46e5, #7c3aed);
    padding: 1.5rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-header i {
    font-size: 1.75rem;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.map-content {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    padding: 2rem;
}

.map-marker {
    font-size: 4rem;
    color: #4f46e5;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.map-placeholder-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.map-placeholder-location {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4f46e5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: #4338ca;
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}

.map-button i {
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #4f46e5, #7c3aed, #ec4899);
    padding: 5rem 1rem;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 72rem;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #c7d2fe;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: white;
    color: #4f46e5;
}

.btn-cta-primary:hover {
    background: #f8fafc;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Quick Contact Section */
.quick-contact-section {
    background: white;
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.quick-contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .quick-contact-grid {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-contact-item:hover {
    color: #4f46e5;
}

.quick-contact-item i {
    font-size: 1rem;
}

.quick-contact-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.quick-contact-divider {
    display: none;
}

@media (min-width: 768px) {
    .quick-contact-divider {
        display: block;
        width: 1px;
        height: 1.5rem;
        background: #cbd5e1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .map-placeholder-title {
        font-size: 1.5rem;
    }
    
    .map-placeholder-location {
        font-size: 1rem;
    }
}

/* Body padding for fixed navbar */
body {
    padding-top: 64px;
}

@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
}