/* Brand Gradient Definition */
:root {
    --brand-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #b8860b 100%);
    --brand-gradient-hover: linear-gradient(135deg, #ffef94 0%, #d4af37 50%, #b8860b 100%);
    --brand-primary: #ffd700;
    --brand-secondary: #ffed4e;
    --brand-accent: #b8860b;
    --background-dark: #1a1a1a;
    --background-medium: #2d2d2d;
    --background-deep: #0f0f0f;
    --background-near-black: #1e1e1e;
    --silver: #c0c0c0;
    --medium-gray: #808080;
    --light-gray: #a9a9a9;
    --pale-gold: #fff3a0;
    --soft-gold: #ffef94;
    --muted-gold: #d4af37;
    --medium-dark-gray: #333333;
}

/* Elegant Animated Background */
.elegant-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
    background: #1a1a1a;
}

.diagonal-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.diagonal-line {
    position: absolute;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(212, 175, 55, 0.1) 20%,
        rgba(244, 231, 151, 0.3) 50%,
        rgba(212, 175, 55, 0.1) 80%,
        transparent 100%);
    transform: rotate(45deg);
    opacity: 0;
    animation: elegantDiagonalMove 20s linear infinite;
}

.diagonal-line:nth-child(1) {
    left: -10%;
    animation-delay: 0s;
}

.diagonal-line:nth-child(2) {
    left: -5%;
    animation-delay: -3s;
}

.diagonal-line:nth-child(3) {
    left: 0%;
    animation-delay: -6s;
}

.diagonal-line:nth-child(4) {
    left: 5%;
    animation-delay: -9s;
}

.diagonal-line:nth-child(5) {
    left: 10%;
    animation-delay: -12s;
}

.diagonal-line:nth-child(6) {
    left: 15%;
    animation-delay: -15s;
}

.breathing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.02) 0%, 
        transparent 70%);
    animation: elegantBreathe 8s ease-in-out infinite;
}

@keyframes elegantDiagonalMove {
    0% {
        transform: translateX(-100vw) translateY(-100vh) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100vw) translateY(100vh) rotate(45deg);
        opacity: 0;
    }
}

@keyframes elegantBreathe {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}







@keyframes borderGlow {
    0%, 100% { 
        background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
    }
    50% { 
        background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);
    }
}

/* GAT Studios Section */
.gat-studios-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.gat-studios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.gat-studios-section .page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gat-studios-section .content-text {
    text-align: center;
}

.gat-studios-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gat-studios-section .section-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--silver);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.studio-cta {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.studio-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.studio-cta p {
    color: var(--silver);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.studio-link-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--brand-gradient);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    font-size: 1.1rem;
}

.studio-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

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

@media (max-width: 768px) {
    .gat-studios-section {
        padding: 3rem 0;
    }
    
    .gat-studios-section .page-content {
        padding: 0 1.5rem;
    }
    
    .gat-studios-section .section-title {
        font-size: 2rem;
    }
    
    .gat-studios-section .section-description {
        font-size: 1.1rem;
    }
    
    .studio-cta {
        padding: 1.5rem;
    }
    
    .studio-cta h3 {
        font-size: 1.5rem;
    }
}

/* Enhanced Button Styles */
.continue-btn, .submit-btn {
    background: var(--brand-gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.continue-btn:hover, .submit-btn:hover {
    background: var(--brand-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

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

.continue-btn:hover::before, .submit-btn:hover::before {
    left: 100%;
}

/* Enhanced Choice Cards - 3D animations defined later */

/* Enhanced Header */
.logo-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 600;
}

/* Enhanced Form Inputs */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Tagline */
.tagline {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.tagline-content h3 {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Advanced Visual Effects */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

@keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title {
    animation: gradientShift 3s ease infinite;
    background: var(--brand-gradient);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 3D card animations defined later in the file */

.tagline {
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scroll on all elements */
*, *::before, *::after {
    max-width: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background-deep) url('images/Background_Gatmanagement.jpg') center center/cover no-repeat fixed;
    color: var(--pale-gold);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* All overlays removed to showcase new background image */

/* Modern 3D Effects */
.container {
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Enhanced Card Hover Effects */
.choice-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 50%, 
        transparent 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

.choice-card:hover::before {
    opacity: 1;
}

.choice-card.nav-highlighted {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.choice-card.nav-highlighted::before {
    opacity: 0.8;
}

/* Text 3D Effects */
.main-title {
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 0 rgba(255, 255, 255, 0.05),
        0 3px 5px rgba(0, 0, 0, 0.3),
        0 5px 10px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.question-text {
    text-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 3px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo a:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.logo-image {
    height: 60px;
    width: auto;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: none;
}

.logo-image:hover {
    filter: brightness(1.1) contrast(1.1);
    cursor: pointer;
}

.nav-contact {
    font-family: 'Montserrat', sans-serif;
    background: var(--brand-gradient);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    letter-spacing: 0.5px;
}

.nav-contact:hover {
    background: var(--brand-gradient-hover);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1001;
}

.nav-btn {
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
}

.nav-btn.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.nav-btn.instagram-link {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.nav-btn.instagram-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--brand-secondary);
    color: var(--brand-secondary);
    transform: translateY(-2px);
}

/* Expandable Form Header Styling */
.contact-form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Position initially lower to align with feature boxes */
    margin-top: 4rem;
    transform: translateY(80px);
}

.form-header {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
}

.form-header:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

.form-header::after {
    content: "Click to expand";
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 0.85rem;
    color: var(--brand-primary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.form-header.expanded::after {
    content: "Form expanded";
    opacity: 0.6;
}

.contact-form-section.expanded {
    /* Move up to align with heading text when expanded */
    transform: translateY(-120px);
}

.page-contact-form {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
}

/* Main Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: 100vh;
    align-items: center;
    padding: 4rem;
    max-width: 100%;
    overflow: hidden;
}

.left-column {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.right-column {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

/* Main Header */
.main-header {
    max-width: 100%;
    text-align: left;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.main-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
}

.hero-main-title-effect {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(184,134,11,1) 50%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradient-scroll 3s linear infinite;
}

/* Main Content */
.main-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Interactive Hero */
.interactive-hero {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.hero-step {
    display: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Welcome Step */
.welcome-text {
    margin-bottom: 3rem;
}

/* Simple Question Animation */
.flowing-question {
    margin-bottom: 3rem;
    overflow: hidden;
}

.question-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    line-height: 1.4;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    background-size: auto;
    animation: none;
}

@keyframes gradient-scroll {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: -200% 50%;
    }
}

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

@keyframes cardLoadIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9) rotateX(15deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Choice Grid - Simple 3D Cards */
.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.choice-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.choice-card:nth-child(1) { 
    grid-column: 1 / -1;
    animation: cardLoadIn 0.6s ease-out 0.2s forwards, card3D1 6s ease-in-out 1s infinite;
}
.choice-card:nth-child(2) { 
    animation: cardLoadIn 0.6s ease-out 0.6s forwards, card3D2 6s ease-in-out 1s infinite;
}
.choice-card:nth-child(3) { 
    animation: cardLoadIn 0.6s ease-out 0.8s forwards, card3D3 6s ease-in-out 1s infinite;
}


/* Enhanced 3D Card Animations */
@keyframes card3D1 {
    0%, 75% { 
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    12.5% { 
        transform: translateY(-10px) translateZ(30px) rotateX(10deg) rotateY(-5deg);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
    }
    25% { 
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

@keyframes card3D2 {
    0%, 75% { 
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    25%, 50% { transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg); }
    37.5% { 
        transform: translateY(-10px) translateZ(30px) rotateX(10deg) rotateY(5deg);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
    }
}

@keyframes card3D3 {
    0%, 75% { 
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50%, 75% { transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg); }
    62.5% { 
        transform: translateY(-10px) translateZ(30px) rotateX(10deg) rotateY(-5deg);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
    }
}



.choice-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-20px) translateZ(50px) rotateX(15deg) rotateY(10deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
}

.choice-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.choice-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.4;
}

/* Step Titles */
.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.step-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Forms */
.project-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    z-index: 100;
}

.form-row:nth-child(1) { animation-delay: 0.6s; }
.form-row:nth-child(2) { animation-delay: 0.8s; }
.form-row:nth-child(3) { animation-delay: 1s; }
.form-row:nth-child(4) { animation-delay: 1.2s; }

.form-row {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Mobile responsive - stack form fields vertically on small screens */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    color: var(--pale-gold);
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(45, 45, 45, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--light-gray);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -0.8rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--brand-primary);
    background: var(--background-deep);
    padding: 0 0.5rem;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0;
    background: rgba(255, 215, 0, 0.05);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow {
    opacity: 1;
}

/* Buttons */
.continue-btn,
.submit-btn {
    position: relative;
    background: var(--brand-gradient);
    border: 1px solid var(--brand-accent);
    border-radius: 12px;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    color: var(--background-deep);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-top: 1rem;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.continue-btn:hover,
.submit-btn:hover {
    background: var(--brand-gradient-hover);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
}

/* Success Step */
.success-content {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    border: 2px solid var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-success 2s infinite ease-in-out;
}

.checkmark {
    width: 40px;
    height: 20px;
    border-left: 3px solid var(--brand-primary);
    border-bottom: 3px solid var(--brand-primary);
    transform: rotate(-45deg);
    animation: checkmark 0.8s ease-out 1s forwards;
    opacity: 0;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--pale-gold);
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    margin: 2rem 0;
}

.success-message .success-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.success-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.success-message p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
        border-color: var(--brand-primary);
    }
    50% {
        transform: scale(1.1);
        border-color: var(--brand-secondary);
    }
}

@keyframes checkmark {
    to {
        opacity: 1;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-section p,
.footer-section a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-content a {
    color: var(--pale-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-content a:hover {
    color: var(--brand-primary);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.footer-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-gradient);
    transition: width 0.3s ease;
}

.footer-content a:hover::after {
    width: 100%;
}

.office-locations {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 0.5rem;
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--soft-gold);
    text-shadow: 0 0 8px rgba(255, 239, 148, 0.4);
    transform: translateX(5px);
}

.contact-info .contact-item {
    margin-bottom: 0.5rem;
}

.contact-info .contact-item:hover {
    background: rgba(255, 239, 148, 0.05);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--soft-gold);
    min-width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--brand-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .main-header {
        left: 2rem;
        bottom: 8rem;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo-image {
        height: 45px;
    }

    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }

    /* Hide desktop navigation on mobile */
    .main-nav {
        display: none;
    }

    /* Mobile nav dropdown positioning */
    .mobile-nav-dropdown {
        right: -300px;
        transform: none;
        z-index: 1002;
    }

    .mobile-nav-dropdown.active {
        right: 0;
    }

    /* Main content spacing */
    .main-content {
        padding: 4rem 1.5rem 2rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Main header positioning */
    .main-header {
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 2rem;
        padding: 0;
        text-align: center;
    }

    .main-title, .hero-main-title-effect,
    .page-title.hero-main-title-effect,
    .contact-title.hero-main-title-effect,
    .actor-name.hero-main-title-effect {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .main-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }

    /* Interactive hero adjustments */
    .interactive-hero {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .welcome-text {
        margin-bottom: 2rem;
        text-align: center;
    }

    .step-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
        text-align: center !important;
    }

    .step-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }

    .question-text {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }

    /* Choice grid mobile optimization */
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .choice-card {
        padding: 1.5rem 1.2rem;
        margin-bottom: 0.5rem;
    }

    .choice-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .choice-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Form improvements */
    .project-form,
    .contact-form {
        max-width: 100%;
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.9rem;
        top: 1rem;
        left: 1rem;
    }

    .continue-btn,
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    /* Success step mobile */
    .success-content {
        padding: 1rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .success-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .success-message {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Footer mobile */
    .footer {
        padding: 1.5rem 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-content p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .office-locations {
        font-size: 0.65rem !important;
        margin-top: 0.3rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }

    /* 3D elements mobile optimization */
    .floating-cube {
        width: 15px;
        height: 15px;
    }

    .floating-sphere {
        width: 12px;
        height: 12px;
    }

    .depth-layer-1,
    .depth-layer-2 {
        display: none; /* Hide on mobile for better performance */
    }

    /* Keep 3D animations on mobile but with reduced intensity */
    .choice-card:hover {
        transform: translateY(-15px) translateZ(40px) rotateX(12deg) rotateY(8deg);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .header {
        padding: 1.2rem 1rem 0.8rem;
    }

    .logo-image {
        height: 40px;
    }

    .burger-menu {
        width: 30px;
        height: 30px;
    }

    .burger-line {
        width: 20px;
        height: 1.5px;
    }

    /* Smaller mobile nav dropdown */
    .mobile-nav-dropdown {
        width: 260px;
    }

    .mobile-nav-content {
        padding: 80px 20px 20px;
    }

    .mobile-nav-item {
        padding: 15px 16px;
        font-size: 1rem;
    }

    .mobile-nav-icon {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 3rem 1rem 1.5rem;
    }

    .main-title, .hero-main-title-effect,
    .page-title.hero-main-title-effect,
    .contact-title.hero-main-title-effect,
    .actor-name.hero-main-title-effect {
        font-size: 1.6rem !important;
        line-height: 1.1 !important;
    }

    .main-subtitle {
        font-size: 0.85rem !important;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-subtitle {
        font-size: 0.9rem;
    }

    .question-text {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .choice-card {
        padding: 1.2rem 1rem;
    }

    .choice-card h3 {
        font-size: 0.95rem;
    }

    .choice-card p {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.85rem;
        top: 0.9rem;
        left: 0.9rem;
        max-width: calc(100% - 1.8rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .form-group input:focus + label,
    .form-group input:valid + label,
    .form-group textarea:focus + label,
    .form-group textarea:valid + label {
        font-size: 0.7rem;
        max-width: calc(100% - 1.6rem);
    }

    .continue-btn,
    .submit-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .success-title {
        font-size: 1.7rem;
    }

    .success-message {
        font-size: 0.9rem;
    }

    .footer {
        padding: 1rem;
    }
    
    .footer-content p {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }
    
    .office-locations {
        font-size: 0.6rem !important;
        margin-top: 0.2rem;
    }
    
    .footer-bottom p {
        font-size: 0.6rem;
    }

    /* Hide floating elements on very small screens */
    .floating-3d-elements {
        display: none;
    }
}

@media (max-width: 360px) {
    /* Very small devices */
    .main-title {
        font-size: 1.6rem;
    }

    .main-subtitle {
        font-size: 0.8rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .choice-card {
        padding: 1rem 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .continue-btn,
    .submit-btn {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .main-content {
        padding: 2rem 1.5rem 1rem;
        min-height: auto;
    }

    .main-header {
        margin-bottom: 1.5rem;
    }

    .main-title,
    .page-title.hero-main-title-effect,
    .contact-title.hero-main-title-effect,
    .actor-name.hero-main-title-effect {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .main-subtitle {
        font-size: 0.9rem;
    }

    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .choice-card {
        padding: 1rem 0.8rem;
    }

    .choice-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .choice-card p {
        font-size: 0.7rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .choice-card:hover {
        transform: translateY(-15px) translateZ(40px) rotateX(12deg) rotateY(8deg);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
    }

    .nav-contact:hover {
        transform: none;
    }

    .continue-btn:hover,
    .submit-btn:hover {
        transform: none;
    }

    /* Add active states for touch */
    .choice-card:active {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-10px) translateZ(30px) rotateX(8deg) rotateY(5deg) scale(0.98);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.1);
    }

    .nav-contact:active {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(0.95);
    }

    .continue-btn:active,
    .submit-btn:active {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(0.95);
    }

    .nav-btn:active {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }
}

/* Contact Page Styles */
.contact-main {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--pale-gold);
    background: linear-gradient(135deg, var(--pale-gold), var(--soft-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--pale-gold);
}

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

.form-group select {
    width: 100%;
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    color: var(--pale-gold);
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-top: 1.8rem; /* Added padding to prevent overlay */
}

.form-group select:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: rgba(45, 45, 45, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-group select + label {
    top: 0.5rem; /* Adjusted initial label position for select */
    left: 1rem;
    font-size: 0.8rem;
    color: var(--light-gray);
    background: transparent;
    padding: 0 0.5rem;
}

.form-group.focused select + label,
.form-group.filled select + label {
    top: 0.5rem; /* Keep label at the same position when focused/filled */
    left: 1rem;
    font-size: 0.8rem;
    color: var(--brand-primary);
    background: transparent;
    padding: 0 0.5rem;
}

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

/* Contact Information Section Styles */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.contact-details h3,
.services-overview h3,
.office-locations-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.contact-item,
.service-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover,
.service-item:hover {
    background: rgba(45, 45, 45, 0.4);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}



.contact-text,
.service-text {
    flex: 1;
}

.contact-text strong,
.service-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-text p,
.service-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--silver);
    margin: 0;
    line-height: 1.4;
}

.office-locations-info {
    margin-top: 1rem;
}

.location-item {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    background: rgba(45, 45, 45, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.location-item:hover {
    background: rgba(45, 45, 45, 0.3);
    border-color: rgba(255, 215, 0, 0.15);
}



.location-item span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--silver);
    font-weight: 500;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--pale-gold);
}

.info-item p {
    color: var(--light-gray);
    line-height: 1.6;
}

.info-item a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.nav-home {
    background: var(--brand-gradient);
    border: 1px solid var(--brand-accent);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    color: var(--background-deep);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.nav-home:hover {
    background: var(--brand-gradient-hover);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-main {
        padding: 2rem 1rem 4rem;
        min-height: auto;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-section {
        padding: 2rem 1.5rem;
        gap: 2rem;
        margin-top: 0;
    }
    
    .submit-btn {
        margin-top: 2rem;
        margin-bottom: 1rem;
        width: 100%;
        padding: 1rem;
    }
    
    .contact-details h3,
    .services-overview h3,
    .office-locations-info h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-item,
    .service-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    

    
    .contact-text strong,
    .service-text strong {
        font-size: 0.9rem;
    }
    
    .contact-text p,
    .service-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 1.5rem 1rem 5rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
        margin-top: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-section {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .contact-details h3,
    .services-overview h3,
    .office-locations-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-item,
    .service-item {
        padding: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .location-item {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .submit-btn {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.2rem;
        font-size: 1rem;
    }
}

/* Additional Visual Enhancements */
.logo-image {
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Enhanced gold accent lines */
.floating-line {
    background: linear-gradient(90deg, transparent, var(--brand-primary), var(--brand-secondary), transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Improved backdrop blur effects */
.choice-card,
.nav-btn,
.nav-contact,
.nav-home,
.form-group input,
.form-group textarea,
.form-group select {
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
}

/* Page Layout Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--light-gray);
    line-height: 1.6;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text {
    max-width: 100%;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(15px) saturate(1.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 50%, 
        transparent 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.2), 
        transparent);
    transition: left 0.6s ease;
    z-index: 2;
    opacity: 0;
}

.feature-card:hover::after {
    left: 100%;
    opacity: 1;
    animation: shimmer 0.8s ease-out;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-20px) translateZ(50px) rotateX(15deg) rotateY(10deg) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5), 
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 2px 0 rgba(255, 215, 0, 0.2);
    border: 2px solid var(--brand-primary);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover h3 {
    color: var(--brand-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section {
    background: rgba(45, 45, 45, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Enhanced 3D animations for feature cards */
@keyframes featureFloat1 {
    0%, 100% { 
        transform: translateY(0) translateZ(0) rotateX(0deg);
    }
    50% { 
        transform: translateY(-8px) translateZ(15px) rotateX(3deg);
    }
}

@keyframes featureFloat2 {
    0%, 100% { 
        transform: translateY(0) translateZ(0) rotateY(0deg);
    }
    50% { 
        transform: translateY(-5px) translateZ(10px) rotateY(2deg);
    }
}

.feature-card:nth-child(1) {
    animation: featureFloat1 8s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation: featureFloat2 9s ease-in-out infinite;
}

.feature-card:nth-child(3) {
    animation: featureFloat1 10s ease-in-out infinite reverse;
}

.feature-card:nth-child(4) {
    animation: featureFloat2 7s ease-in-out infinite reverse;
}

/* Additional responsive updates for new layout */
@media (max-width: 1200px) {
    .choice-card:nth-child(2) {
        grid-column: 1 / 3;
    }
    
    .content-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Two-column layout becomes single column on mobile */
    .content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 1.5rem !important;
        min-height: auto !important;
        max-width: 100vw !important;
        overflow: visible !important;
    }

    .left-column,
    .right-column {
        min-height: auto !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Main header adjustments */
    .main-header {
        text-align: center !important;
        margin-bottom: 2rem;
        max-width: 100% !important;
    }
    
    /* Choice grid mobile reset */
    .choice-card:nth-child(1),
    .choice-card:nth-child(2),
    .choice-card:nth-child(3) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    
    /* Page content mobile adjustments */
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
}

/* Burger Menu Styles */
.burger-menu {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-line {
    display: block;
    height: 2px;
    width: 25px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
}

.burger-menu:hover .burger-line {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
}

/* Hide burger menu on larger screens, show on mobile */
.burger-menu {
    display: none;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
}

@media (min-width: 769px) {
    .burger-menu {
        display: none;
    }
}

/* Mobile Navigation Dropdown - Luxury Fullscreen Design */
.mobile-nav-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1a1a1a;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s 0.4s;
    z-index: 1001;
    overflow: hidden;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.mobile-nav-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 237, 78, 0.1) 25%, 
        rgba(184, 134, 11, 0.08) 50%, 
        rgba(255, 215, 0, 0.05) 75%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.mobile-nav-dropdown.active {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s;
}



.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 40px;
}

.mobile-nav-brand {
    margin-bottom: 60px;
}

.mobile-logo-image {
    height: 60px;
    width: auto;
}

.mobile-nav-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffd700;
    letter-spacing: 3px;
    margin: 0;
}

.mobile-nav-brand p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    margin: 8px 0 0 0;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0.9;
}

.mobile-nav-item {
    display: block;
    padding: 12px 0;
    margin: 8px 0;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}


.mobile-nav-item::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-item:hover::before,
.mobile-nav-item:active::before {
    width: 100%;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
    color: #ffd700;
}

.mobile-nav-text {
    transition: all 0.3s ease;
}

.mobile-nav-instagram {
    text-align: center;
    margin: 20px 0;
}

.mobile-nav-instagram .mobile-nav-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav-instagram svg {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mobile-nav-instagram:hover svg {
    opacity: 1;
    color: #ffd700;
    transform: scale(1.2);
}

.mobile-nav-contact {
    margin-top: 60px;
}

.mobile-nav-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    margin: 6px 0;
    letter-spacing: 1px;
    font-weight: 300;
}

.mobile-nav-contact .contact-email,
.mobile-nav-contact .contact-phone {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-contact .contact-email:hover,
.mobile-nav-contact .contact-phone:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Overlay when mobile nav is open */
body.nav-open {
    overflow: hidden;
}



/* Ensure burger menu starts in clean state */
.burger-menu {
    transition: all 0.3s ease;
}

.burger-menu.active {
    transition: all 0.3s ease;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile nav improvements */
.mobile-nav-dropdown {
    z-index: 1001;
}

/* Clean up duplicated styles - removed */

h1, h2, h3, .page-title, .section-title, .contact-title {
    font-family: 'Playfair Display', serif !important;
}

/* Ensure hero-main-title-effect works on all page titles */
.page-title.hero-main-title-effect,
.contact-title.hero-main-title-effect,
.actor-name.hero-main-title-effect {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(184,134,11,1) 50%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradient-scroll 3s linear infinite;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Hide footer icons for minimalist look */
.contact-icon, .social-link { display: none !important; }

/* Consistent footer alignment on mobile */
@media (max-width: 768px) {
  .footer-section, .footer-bottom { text-align: center; }
  .contact-info .contact-item { justify-content: center; }
}

/* Ensure selects span full width like inputs */
.form-group select { width: 100%; display: block; }

/* Actor Page Styles */
.actor-main {
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.actor-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.actor-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.actor-main-photo {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.actor-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.actor-main-photo:hover .actor-photo {
    transform: scale(1.05);
}

.actor-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.actor-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.1;
}

.actor-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--silver);
    margin: 0;
    font-weight: 400;
}

.actor-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-primary);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.actor-bio-section {
    margin-bottom: 4rem;
}

.bio-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--silver);
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.actor-gallery-section {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.actor-contact-section {
    background: rgba(45, 45, 45, 0.3);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

.actor-contact-section .contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    text-align: center;
}

/* Mobile Responsive Styles for Actor Page */
@media (max-width: 768px) {
    .actor-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .actor-name {
        font-size: 2.5rem;
    }
    
    .actor-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .actor-contact-section {
        padding: 2rem 1.5rem;
    }
    
    .actor-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .actor-name {
        font-size: 2rem;
    }
    
    .actor-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
}

/* GAT Studios Page Styles */
.studio-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 100%;
    width: 100%;
}

.studio-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.studio-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.studio-link-btn {
    display: inline-block;
    background: var(--brand-gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: #1a1a1a;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.studio-link-btn:hover {
    background: var(--brand-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

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

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

/* Mobile responsive styles for GAT Studios */
@media (max-width: 768px) {
    .studio-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .studio-cta h3 {
        font-size: 1.5rem;
    }
    
    .studio-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .studio-link-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .studio-cta {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .studio-cta h3 {
        font-size: 1.25rem;
    }
    
    .studio-cta p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .studio-link-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Tablet-specific styles (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Header adjustments for tablets */
    .header-container {
        padding: 0 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    /* Hero section for tablets */
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
    
    /* Form sections for tablets */
    .form-section {
        padding: 4rem 2rem;
    }
    
    .form-container {
        max-width: 600px;
        padding: 2.5rem;
    }
    
    .form-step h2 {
        font-size: 2rem;
    }
    
    /* Service cards for tablets */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Contact form for tablets */
    .contact-container {
        max-width: 700px;
        padding: 2.5rem;
    }
    
    /* General spacing for tablets */
    .page-content {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

 