/* Estilos específicos para la página de contacto */
.page-header {
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1) 0%, 
        rgba(139, 92, 246, 0.15) 25%,
        rgba(168, 85, 247, 0.1) 50%,
        rgba(236, 72, 153, 0.05) 75%,
        rgba(34, 197, 94, 0.08) 100%
    );
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.breadcrumbs a {
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumbs a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.breadcrumbs a:hover::after {
    width: 100%;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: #94a3b8;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        #6366f1 0%, 
        #8b5cf6 25%, 
        #a855f7 50%, 
        #ec4899 75%, 
        #f59e0b 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards, gradientShift 4s ease-in-out infinite;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-description {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    font-weight: 400;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    z-index: 1;
}

/* Contact Stats/Metrics */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: -20px auto 80px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

.stat-card:not(.services-page) {
    background: var(--container-background);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--background-dark);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card:not(.services-page)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.02) 0%, 
        rgba(139, 92, 246, 0.03) 50%, 
        rgba(236, 72, 153, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-card:not(.services-page):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card:not(.services-page):hover::before {
    opacity: 1;
}

.stat-card:not(.services-page) i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.stat-card:not(.services-page):hover i {
    transform: scale(1.1) rotateY(5deg);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* Media Queries */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .page-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .contact-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 20px auto 60px;
        padding: 0 1rem;
    }

    .stat-card:not(.services-page) {
        padding: 2rem 1.5rem;
        min-width: auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card:not(.services-page) i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-description {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    .contact-stats {
        margin: 30px auto 40px;
        gap: 1rem;
    }

    .stat-card:not(.services-page) {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-card:not(.services-page) i {
        font-size: 1.8rem;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: var(--background);
    border: 1px solid var(--background-dark);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    background: var(--background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--background-dark);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--method-color, #6366f1), var(--method-color-light, #8b5cf6));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method.whatsapp {
    --method-color: #25d366;
    --method-color-light: #4fc477;
}

.contact-method.email {
    --method-color: #6366f1;
    --method-color-light: #8b5cf6;
}

.contact-method.instagram {
    --method-color: #e4405f;
    --method-color-light: #f56565;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(var(--method-color), 0.15);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--method-color), var(--method-color-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotateY(5deg);
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-details {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(var(--method-color), 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--method-color);
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.availability {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--background);
    border: 1px solid var(--background-dark);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.form-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    color: #22c55e;
    font-size: 1.2rem;
    min-width: 20px;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Form Wrapper */
.form-wrapper {
    background: var(--container-background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--background-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--container-background);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.form-input:hover {
    border-color: #cbd5e1;
}

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

/* Project Types */
.project-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.project-type-card {
    position: relative;
    cursor: pointer;
}

.project-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.card-content {
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--container-background);
    height: 100%;
}

.project-type-card:hover .card-content {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.project-type-card input:checked + .card-content {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.card-content i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
    display: block;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #e4405f, #f56565);
    color: white;
    box-shadow: 0 4px 14px rgba(228, 64, 95, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 2rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-types {
        grid-template-columns: 1fr;
    }
    
    .form-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section,
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-method,
    .form-wrapper {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.8rem;
    }
    
    .form-info h2 {
        font-size: 1.8rem;
    }
}

/* Response Time */
.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.response-time i {
    color: #22c55e;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-weight: 500;
    max-width: 400px;
    margin: 0 auto;
}

.cta-guarantee i {
    color: #22c55e;
    font-size: 1.2rem;
}

/* CTA Responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-guarantee {
        margin: 0 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--background);
    border: 1px solid var(--background-dark);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.location-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--container-background);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #6366f1;
    border: 1px solid var(--background-dark);
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.detail-item i {
    font-size: 1.5rem;
    color: #6366f1;
    margin-top: 0.25rem;
    min-width: 24px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-content strong {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.detail-content span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Availability Card */
.availability-card {
    background: var(--container-background);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--background-dark);
    position: sticky;
    top: 100px;
}

.availability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-status {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-indicator.online span {
    color: #22c55e;
    font-weight: 600;
    font-size: 1.1rem;
}

.team-status p {
    color: #64748b;
    line-height: 1.6;
}

.next-available h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.availability-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-item.available {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.timeline-item.limited {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.timeline-item.busy {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.timeline-date {
    font-weight: 600;
    color: #1e293b;
}

.timeline-status {
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-item.available .timeline-status {
    color: #22c55e;
}

.timeline-item.limited .timeline-status {
    color: #f59e0b;
}

.timeline-item.busy .timeline-status {
    color: #ef4444;
}

.next-available small {
    color: #64748b;
    font-style: italic;
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
}

/* Quick FAQ Section */
.quick-faq {
    padding: 80px 0;
    background: var(--background);
    border: 1px solid var(--background-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: var(--container-background);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--background-dark);
    transition: all 0.4s cubic-bezier(0.4, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(99, 102, 241, 0.15);
}

.faq-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-icon {
    transform: scale(1.1) rotateY(5deg);
}

.faq-icon i {
    font-size: 2rem;
    color: white;
}

.faq-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Location and FAQ Responsive */
@media (max-width: 768px) {
    .location-section,
    .quick-faq {
        padding: 60px 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info h2,
    .section-title {
        font-size: 2rem;
    }
    
    .availability-card {
        position: static;
        padding: 2rem;
    }
    
    .quick-faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .location-info h2,
    .section-title {
        font-size: 1.8rem;
    }
    
    .availability-card,
    .faq-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .faq-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-icon i {
        font-size: 1.8rem;
    }
    
    .detail-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .detail-item i {
        font-size: 1.3rem;
    }
}
