/* Contact Page Custom Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #e53e3e 100%);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(229, 62, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 10;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form-header {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    padding: 2rem;
    text-align: center;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-form-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: #1e40af;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #1e40af;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: #1e40af;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    margin-top: 0.125rem;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.form-checkbox a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon.phone {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.contact-icon.email {
    background: linear-gradient(135deg, #e53e3e, #dc2626);
}

.contact-icon.address {
    background: linear-gradient(135deg, #059669, #047857);
}

.contact-icon.clock {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.contact-info-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #1e40af;
}

/* Social Media */
.social-media {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.social-media h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0ea5e9);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #0a66c2);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #f77737);
}

/* Map Section */
.map-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(229, 62, 62, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.map-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.map-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e40af, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.location-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .location-cards {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.location-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #1e40af, #e53e3e);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover::before {
    opacity: 1;
}

.location-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.location-header {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location-header.karakoy {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #3b82f6 100%);
}

.location-header.ikitelli {
    background: linear-gradient(135deg, #e53e3e 0%, #dc2626 50%, #f97316 100%);
}

.location-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 3s ease-in-out infinite;
}

.location-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.location-card:hover .location-header::after {
    transform: translateX(100%);
}

.location-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.location-content {
    padding: 2.5rem;
    position: relative;
}

.location-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-name::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1e40af, #e53e3e);
    border-radius: 2px;
}

.location-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #6b7280;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-detail:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.location-detail i {
    width: 1.25rem;
    color: #e53e3e;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.location-detail:hover i {
    transform: scale(1.2);
}

/* Map Container Styles */
.map-container {
    margin: 1.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.location-map {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.location-map::after {
    content: 'Harita yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Hide loading state when map is loaded */
.location-map.loaded::before,
.location-map.loaded::after {
    display: none;
}

/* Map Actions */
.map-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.google-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.google-maps-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.google-maps-btn:hover::before {
    left: 100%;
}

.google-maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.google-maps-btn:active {
    transform: translateY(0);
}

.google-maps-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.google-maps-btn:hover i {
    transform: scale(1.1);
}

/* Leaflet Map Custom Styles */
.location-map .leaflet-container {
    border-radius: 16px;
    height: 100%;
    width: 100%;
}

.location-map .leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.location-map .leaflet-popup-tip {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-map .leaflet-control-zoom {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.location-map .leaflet-control-zoom a {
    background: white;
    color: #374151;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-map .leaflet-control-zoom a:hover {
    background: #f3f4f6;
    color: #1e40af;
}

/* Custom marker styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker div {
    transition: all 0.3s ease;
}

.custom-marker:hover div {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(229, 62, 62, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.faq-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e40af, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1e40af, #e53e3e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 2rem 2rem 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #1e40af;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
}

.faq-item:hover .faq-question::after {
    background: rgba(30, 64, 175, 0.2);
    transform: rotate(45deg);
}

.faq-item:hover .faq-question {
    color: #1e40af;
}

.faq-answer {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
    }
    
    .contact-form-body {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .map-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .map-header,
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .map-title,
    .faq-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .map-subtitle,
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .location-cards {
        gap: 2rem;
    }
    
    .location-header {
        height: 180px;
    }
    
    .location-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .location-title {
        font-size: 1.5rem;
    }
    
    .location-content {
        padding: 1.5rem;
    }
    
    .location-name {
        font-size: 1.25rem;
    }
    
    .location-description {
        font-size: 0.95rem;
    }
    
    .location-detail {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .location-map {
        height: 180px;
    }
    
    .google-maps-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1.5rem 1.5rem 1rem;
        font-size: 1.125rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-question::after {
        width: 20px;
        height: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content {
        padding: 0 1rem;
    }
    
    .contact-form-header {
        padding: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .location-header {
        height: 160px;
    }
    
    .location-icon {
        font-size: 2.5rem;
    }
    
    .location-title {
        font-size: 1.25rem;
    }
    
    .location-content {
        padding: 1.25rem;
    }
    
    .location-name {
        font-size: 1.125rem;
    }
    
    .location-map {
        height: 160px;
    }
    
    .google-maps-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.contact-form-container,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:nth-child(2) { animation-delay: 0.1s; }
.contact-card:nth-child(3) { animation-delay: 0.2s; }
.contact-card:nth-child(4) { animation-delay: 0.3s; }
.contact-card:nth-child(5) { animation-delay: 0.4s; }

.location-card {
    animation: slideInLeft 0.8s ease-out;
}

.location-card:nth-child(2) { 
    animation: slideInRight 0.8s ease-out;
    animation-delay: 0.2s;
}

.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }

/* Hover animations */
.location-card:hover .location-icon {
    animation: pulse 1s ease-in-out infinite;
}

.faq-item:hover .faq-question::after {
    animation: pulse 0.6s ease-in-out;
}
