/* ==============================================
   MACREAMY STUDIOS - COMMON STYLES
   ============================================== */

/* CSS RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS VARIABLES */
:root {
    --primary-black: #0c0c0c;
    --primary-gold: #caaa55;
    --white: #ffffff;
    --grey: #666666;
    --grey-light: #666666;
    --dark-grey: #1a1a1a;
}

/* BODY STYLES */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: "kern" 1, "liga" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--primary-black);
    color: var(--white);
    overflow-x: hidden;
}

/* NAVIGATION STYLES */
nav, .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container a{
    text-decoration: none;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(65%) sepia(80%) saturate(400%) hue-rotate(10deg) brightness(105%) contrast(105%);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--primary-gold);
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(100%) saturate(500%) hue-rotate(10deg) brightness(120%) contrast(110%);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* SECTION STYLES */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTON STYLES */
.btn {
    line-height: 20px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%), 
                url('../images/IMG_8118.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23f39c12" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f39c12" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="500" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.0rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--primary-gold);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px var(--primary-gold); }
    to { text-shadow: 0 0 50px var(--primary-gold), 0 0 60px var(--primary-gold); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TYPING TEXT */
.typing-text {
    min-height: 1.8rem;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    font-weight: 300;
    display: inline-block;
    position: relative;
}

.typing-text::after {
    content: '|';
    color: var(--primary-gold);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* FOOTER STYLES */
footer, .footer {
    background: var(--dark-grey);
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--grey);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: scale(1.1);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    color: var(--grey);
    font-size: 0.9rem;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* FORM STYLES */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--dark-grey);
    color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 920px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links a:hover {
        background: rgba(243, 156, 18, 0.1);
    }

    .mobile-menu {
        display: flex;
        padding: 12px;
        z-index: 1000;
        min-height: 48px;
        min-width: 48px;
    }

    .hero {
        padding: 0 1rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .typing-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1.2rem;
        min-height: 48px;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .typing-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section {
        padding: 2rem 1rem;
    }
}

/* TOUCH TARGETS FOR MOBILE */
@media (max-width: 920px) {
    .btn, .social-link, .nav-links a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu {
        padding: 12px;
        min-height: 48px;
        min-width: 48px;
    }
}

/* UTILITIES */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* PAGE-SPECIFIC STYLES */

/* INDEX.HTML - PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.studio-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--primary-gold);
    margin-bottom: 1rem;
    opacity: 0;
    animation: logoFadeIn 1s ease 0.5s forwards;
    letter-spacing: 2px;
}

.audio-loader {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.audio-bar {
    width: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: audioWave 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.audio-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.audio-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.audio-bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.audio-bar:nth-child(5) { height: 15px; animation-delay: 0.4s; }
.audio-bar:nth-child(6) { height: 30px; animation-delay: 0.5s; }
.audio-bar:nth-child(7) { height: 25px; animation-delay: 0.6s; }
.audio-bar:nth-child(8) { height: 35px; animation-delay: 0.7s; }
.audio-bar:nth-child(9) { height: 20px; animation-delay: 0.8s; }

@keyframes audioWave {
    0%, 100% { 
        transform: scaleY(1); 
        opacity: 0.7;
    }
    50% { 
        transform: scaleY(0.3); 
        opacity: 1;
    }
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-text {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--primary-gold);
}

.preview-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.preview-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.preview-card p {
    color: var(--grey);
    line-height: 1.6;
}

/* ABOUT.HTML - PAGE HEADER */
.page-header {
    min-height: 360px;
    height: 40vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23f39c12" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f39c12" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="150" fill="url(%23a)"/><circle cx="700" cy="400" r="200" fill="url(%23a)"/><circle cx="200" cy="600" r="100" fill="url(%23a)"/></svg>');
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-header-content {
    text-align: center;
    z-index: 2;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.0rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--primary-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.page-subtitle {
    font-size: 1.5rem;
    color: var(--grey);
    animation: fadeInUp 1s ease 0.3s both;
}

/* MAIN CONTENT */
.main-content {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* STORY SECTION */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
}

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(243, 156, 18, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
    padding: 30px;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(243, 156, 18, 0.15) 0%,
        transparent 50%,
        rgba(243, 156, 18, 0.1) 100%);
    z-index: 2;
    border-radius: 20px;
    pointer-events: none;
}

.story-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 40%,
        rgba(243, 156, 18, 0.1) 50%,
        transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
    border-radius: 20px;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.story-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 15px 35px rgba(243, 156, 18, 0.2);
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* TEAM SECTION */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--primary-gold);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    border: 2px dashed rgba(243, 156, 18, 0.3);
    margin: 0 auto 1rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.member-role {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.modal-content {
    background: var(--dark-grey);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    flex-shrink: 0;
}

.modal-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    border: 2px dashed rgba(243, 156, 18, 0.3);
    flex-shrink: 0;
}

.modal-text-content {
    flex-grow: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--white);
}

.modal-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.modal-subtitle {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-section {
    margin-bottom: 1.5rem;
}

.modal-section h3 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.modal-section ul {
    list-style: none;
    padding-left: 1rem;
}

.modal-section ul li {
    color: var(--grey);
    margin-bottom: 0.5rem;
    position: relative;
}

.modal-section ul li::before {
    content: '•';
    color: var(--primary-gold);
    position: absolute;
    left: -1rem;
}

/* LOCATION SECTION */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.location-info h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-info p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold), transparent);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(1) contrast(1.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1);
}

/* STATS SECTION */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--grey);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SERVICES.HTML - SERVICE CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--primary-gold);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.service-card p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--grey);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

/* PROCESS SECTION */
.process {
    background: var(--dark-grey);
    padding: 5rem 2rem;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-gold), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-step p {
    color: var(--grey);
    line-height: 1.6;
}

/* SUPPORT.HTML - SUPPORT CARDS */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.support-card:hover::before {
    transform: scale(1);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
    border-color: var(--primary-gold);
}

.support-card i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.support-card p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.support-card .btn {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.support-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* FAQ SECTION */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--grey);
    line-height: 1.6;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* CONTACT FORM */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.submit-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

/* SUCCESS MESSAGE */
.success-message {
    display: none;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #2ecc71;
    text-align: center;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CONTACTS.HTML - CONTACT PAGE STYLES */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Hero Section - Contact Page */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23f39c12" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.0rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--primary-gold);
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--grey-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CONTACTS.HTML - CONTACT CONTAINER */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 8px;
    background: rgba(12, 12, 12, 0.8);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contact-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(12, 12, 12, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-item div h4 {
    color: var(--primary-gold);
    margin-bottom: 0.2rem;
}

.contact-item div p {
    color: var(--grey-light);
}

/* MAP SECTION */
.map-section {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 156, 18, 0.2);
    margin-top: 2rem;
}

/* MEDIA.HTML - MEDIA GRIDS */
.media-category {
    margin-bottom: 5rem;
}

.category-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-description {
    text-align: center;
    color: var(--grey);
    margin-bottom: 3rem;
    font-style: italic;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.media-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.media-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.media-item:hover::before {
    left: 100%;
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--primary-gold);
}

.media-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.media-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.media-embed iframe {
    width: 100%;
    border: none;
    border-radius: 15px;
}

/* SPOTIFY EMBEDS */
.spotify-embed iframe {
    height: 352px;
}

/* YOUTUBE EMBEDS */
.youtube-embed iframe {
    height: 250px;
}

/* SONGS GRID */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.song-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.song-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.song-item:hover::before {
    left: 100%;
}

.song-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--primary-gold);
}

.song-embed {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.song-embed iframe {
    width: 100%;
    height: 152px;
    border: none;
    border-radius: 15px;
}

/* YOUTUBE SONG EMBEDS */
.song-embed.youtube-embed iframe {
    height: 200px;
}

/* STUDIO IMAGES SECTION */
.studio-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    align-items: start;
}

.studio-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    border: 2px solid rgba(243, 156, 18, 0.2);
    transition: all 0.3s ease;
}

.studio-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.3);
    border-color: var(--primary-gold);
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.studio-image:hover img {
    transform: scale(1.1);
}

.studio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.studio-image:hover::before {
    opacity: 1;
}

.studio-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.7);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-image:hover .studio-image-caption {
    opacity: 1;
}

/* FEATURED SECTION */
.featured-section {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.featured-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-gold);
}

.featured-text {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* STATS SECTION MEDIA */
.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(243, 156, 18, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

/* CTA SECTION */
.cta-section {
    background: rgba(243, 156, 18, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(243, 156, 18, 0.2);
    margin-top: 4rem;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8 rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-text {
    color: var(--grey);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* CONTACTS PAGE - SPECIFIC STYLES */
.contacts-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.contacts-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%);
    position: relative;
    overflow: hidden;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23f39c12" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contacts-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.contacts-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.0rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--primary-gold);
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contacts-hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--grey-light);
}

.contacts-typing-text {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-typing-text::after {
    content: '|';
    animation: contactsBlink 1s infinite;
    margin-left: 2px;
}

@keyframes contactsBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.contacts-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contacts-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--primary-gold);
}

.contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contacts-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contacts-form-group {
    margin-bottom: 1.5rem;
}

.contacts-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.contacts-form-group input,
.contacts-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(243, 156, 18, 0.3);
    border-radius: 8px;
    background: rgba(12, 12, 12, 0.8);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contacts-form-group input:focus,
.contacts-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

.contacts-form-group textarea {
    height: 120px;
    resize: vertical;
}

.contacts-submit-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.contacts-submit-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
}

.contacts-info {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contacts-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.contacts-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(12, 12, 12, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contacts-item:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: translateX(5px);
}

.contacts-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contacts-item div h4 {
    color: var(--primary-gold);
    margin-bottom: 0.2rem;
}

.contacts-item div p {
    color: var(--grey-light);
}

.contacts-map-section {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 156, 18, 0.2);
    margin-top: 2rem;
}

.contacts-map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contacts-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.3s ease;
}

.contacts-map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.contacts-footer {
    background: rgba(12, 12, 12, 0.95);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
}

.contacts-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contacts-footer-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contacts-footer-section p {
    color: var(--grey-light);
    margin-bottom: 1rem;
}

.contacts-footer-section ul {
    list-style: none;
}

.contacts-footer-section ul li {
    margin-bottom: 0.5rem;
}

.contacts-footer-section ul li a {
    color: var(--grey-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contacts-footer-section ul li a:hover {
    color: var(--primary-gold);
}

.contacts-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.contacts-social-links a {
    color: var(--grey-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contacts-social-links a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.contacts-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
    color: var(--grey-light);
}

/* CONTACTS PAGE - RESPONSIVE STYLES */
@media (max-width: 920px) {
    .contacts-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contacts-hero h1 {
        font-size: 2rem;
    }

    .contacts-hero p {
        font-size: 1.2rem;
    }

    .contacts-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contacts-section {
        padding: 3rem 1rem;
    }

    .contacts-section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contacts-hero h1 {
        font-size: 1.6rem;
    }

    .contacts-section-title {
        font-size: 2rem;
    }
}

/* CARD STYLES */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
    border-color: var(--primary-gold);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.card p {
    color: var(--grey);
    line-height: 1.6;
}

.card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}