/* Contact Page Styles - moved from contact.php */
/* All CSS below was moved from the <style> block in contact.php */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        .dubbing-studio-page {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333333;
            background: #ffffff;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 180, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 245, 245, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 180, 0, 0.03) 0%, transparent 50%);
            min-height: 100vh;
            overflow-x: hidden;
        } 

/* Premium visual refinements for mobile */
@media (max-width: 768px) {
    .dubbing-hero-section,
    .dubbing-info-card,
    .dubbing-map-section,
    .dubbing-features-section,
    .dubbing-careers-section,
    .dubbing-location-card,
    .dubbing-careers-card,
    .dubbing-careers-cta {
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 180, 0, 0.1);
    }
    
    .dubbing-feature-card:hover,
    .dubbing-careers-card:hover {
        transform: translateY(-5px);
    }
    
    /* Improve font rendering */
    .dubbing-hero-title,
    .dubbing-section-title,
    .dubbing-careers-title,
    .dubbing-info-header h3 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* --- Animation Base Styles --- */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-in-up"] {
    transform: translateY(40px);
}

[data-animate="fade-in-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-in-right"] {
    transform: translateX(40px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* --- Redesigned Contact Section --- */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB400, #F5A500);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 180, 0, 0.4);
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p, .contact-details a {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-details a:hover {
    color: #FFB400;
}

.social-links {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-links h4 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FFB400;
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 180, 0, 0.4);
}


/* --- Premium Redesigned Map Section --- */
.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(255, 255, 255, 0.98) 50%, 
        rgba(248, 249, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 180, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(248, 249, 250, 0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #333333 0%, #FFB400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFB400, transparent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(51, 51, 51, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.map-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 40px rgba(255, 180, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 500px;
    background: #ffffff;
    border: 1px solid rgba(255, 180, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 180, 0, 0.3) 20%, 
        rgba(255, 180, 0, 0.8) 50%, 
        rgba(255, 180, 0, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.map-container:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.18),
        0 15px 60px rgba(255, 180, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.1) contrast(1.05);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: saturate(1.2) contrast(1.1);
}

.map-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.6s ease;
    backdrop-filter: blur(20px);
}

.map-loader .loader-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFB400 0%, #F5A500 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(255, 180, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: premium-pulse 2.5s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

.map-loader .loader-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: premium-shine 3s infinite;
}

.map-loader p {
    color: rgba(51, 51, 51, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

@keyframes premium-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 
            0 20px 40px rgba(255, 180, 0, 0.4),
            0 0 0 0 rgba(255, 180, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 
            0 25px 50px rgba(255, 180, 0, 0.5),
            0 0 0 20px rgba(255, 180, 0, 0),
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes premium-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.location-details-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.08),
        0 10px 40px rgba(255, 180, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 180, 0, 0.15);
    height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.location-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 180, 0, 0.3) 20%, 
        rgba(255, 180, 0, 0.8) 50%, 
        rgba(255, 180, 0, 0.3) 80%, 
        transparent 100%);
    z-index: 1;
}

.location-details-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.12),
        0 15px 60px rgba(255, 180, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 180, 0, 0.1);
    position: relative;
}

.location-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FFB400, #F5A500);
    border-radius: 1px;
}

.location-header i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB400 0%, #F5A500 100%);
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 
        0 15px 30px rgba(255, 180, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.location-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
}

.location-info {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.location-info strong {
    display: block;
    margin-bottom: 0.8rem;
    color: #FFB400;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-info p, .location-info a {
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.location-info a:hover {
    color: #FFB400;
    text-decoration: underline;
    text-decoration-color: rgba(255, 180, 0, 0.5);
    text-underline-offset: 3px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFB400 0%, #F5A500 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 
        0 15px 30px rgba(255, 180, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: auto;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.directions-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.directions-btn:hover::before {
    left: 100%;
}

.directions-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(255, 180, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.directions-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.directions-btn:hover i {
    transform: translateX(3px);
}

/* --- Premium Responsive Design for New Sections --- */
@media (max-width: 1200px) {
    .map-layout {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .map-container, .location-details-card {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .map-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .map-container, .location-details-card {
        height: auto;
        min-height: 400px;
    }
    
    .map-container:hover {
        transform: translateY(-5px) rotateX(0deg) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .contact-section, .map-section {
        padding: 3rem 0;
    }
    
    .contact-info-card, .location-details-card {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 24px;
    }
    
    .contact-header h2, .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h2::after {
        width: 60px;
        height: 3px;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 0.95rem;
    }
    
    .map-container {
        border-radius: 24px;
        min-height: 350px;
    }
    
    .location-details-card {
        border-radius: 24px;
        min-height: 350px;
    }
    
    .location-header i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        border-radius: 16px;
    }
    
    .location-header h3 {
        font-size: 1.5rem;
    }
    
    .location-info strong {
        font-size: 1rem;
    }
    
    .directions-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .map-loader .loader-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-section, .map-section {
        padding: 2rem 0;
    }
    
    .contact-info-card, .location-details-card {
        padding: 1.5rem;
        border-radius: 20px;
        margin: 0 0.5rem;
    }
    
    .contact-header, .section-header {
        margin-bottom: 2rem;
    }
    
    .contact-header h2, .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-header p, .section-header p {
        font-size: 1rem;
    }
    
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .map-layout {
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .map-container {
        border-radius: 20px;
        min-height: 300px;
    }
    
    .location-details-card {
        border-radius: 20px;
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .location-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .location-header::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .location-header i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-radius: 14px;
    }
    
    .location-header h3 {
        font-size: 1.4rem;
    }
    
    .location-info {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .location-info strong {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .location-info p, .location-info a {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .directions-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    .map-loader .loader-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-loader p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header h2::after {
        width: 30px;
        height: 2px;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .contact-info-card, .location-details-card {
        padding: 1.25rem;
        border-radius: 16px;
        margin: 0 0.25rem;
    }
    
    .map-layout {
        gap: 1.5rem;
        padding: 0 0.25rem;
    }
    
    .map-container {
        border-radius: 16px;
        min-height: 250px;
    }
    
    .location-details-card {
        border-radius: 16px;
        padding: 1.5rem 1.25rem;
    }
    
    .location-header {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .location-header i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    
    .location-header h3 {
        font-size: 1.2rem;
    }
    
    .location-info {
        margin-bottom: 1.25rem;
    }
    
    .location-info strong {
        font-size: 0.9rem;
    }
    
    .location-info p, .location-info a {
        font-size: 0.85rem;
    }
    
    .directions-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
        gap: 0.6rem;
        border-radius: 35px;
    }
    
    .map-loader .loader-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .map-loader p {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .contact-info-card, .location-details-card {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .contact-header h2, .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p, .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-container {
        min-height: 220px;
        border-radius: 14px;
    }
    
    .location-details-card {
        border-radius: 14px;
        padding: 1.25rem 1rem;
    }
    
    .location-header h3 {
        font-size: 1.1rem;
    }
    
    .location-info strong {
        font-size: 0.85rem;
    }
    
    .location-info p, .location-info a {
        font-size: 0.8rem;
    }
    
    .directions-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        border-radius: 30px;
    }
}

/* --- Premium Touch Interactions for Mobile --- */
@media (hover: none) {
    .map-container:hover {
        transform: none;
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.12),
            0 10px 40px rgba(255, 180, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    
    .location-details-card:hover {
        transform: none;
    }
    
    .map-container:active {
        transform: scale(0.98);
    }
    
    .location-details-card:active {
        transform: scale(0.98);
    }
    
    .directions-btn:active {
        transform: scale(0.95);
    }
    
    .contact-item:hover {
        transform: none;
        background: none;
    }
    
    .contact-item:active {
        background: rgba(255, 180, 0, 0.05);
    }
}

/* --- Enhanced Accessibility for Touch Devices --- */
@media (max-width: 768px) {
    .directions-btn,
    .social-icon,
    .contact-icon,
    .location-header i {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
} 