/* Studio CSS - Following the site's design aesthetic */

/* Studio Content */
.studio-content {
    padding: 40px 0;
    background: transparent;
}

.studio-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Override hero-section animations */
.hero-section::before {
    display: none !important;
}

.hero-section::after {
    display: none !important;
}

/* Intro Section Styles */
.intro-section {
    text-align: center;
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.intro-section .studio-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section .studio-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-section .lead {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Session Types Styles */
.session-types {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.session-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.session-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.session-card.signature {
    border: 2px solid #ff6b35;
    position: relative;
}

.session-card.signature::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #ff2d92 100%);
}

.session-card.signature:after {
    content: "ПРЕПОРЪЧАНО";
    position: absolute;
    top: 25px;
    right: -40px;
    background: #ff6b35;
    color: white;
    padding: 5px 35px 5px 45px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 1;
}

.session-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.session-card h3 {
    color: #1a0f3a;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.session-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.session-card.signature .session-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #ff2d92 100%);
}

.session-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.session-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.session-features li {
    padding: 0.3rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
}

.session-features li:before {
    content: "✓";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.3rem;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.session-card.signature .session-features li:before {
    color: #8b5cf6;
}

.goals-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.goals-section h3 {
    color: #1a0f3a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.goals-section p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1a0f3a 0%, #0f0a1f 50%, #050308 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%);
    border-radius: 50px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff2d92 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: white;
    text-decoration: none;
}

.btn-primary:hover::before {
    background: linear-gradient(135deg, #ff2d92 0%, #8b5cf6 50%, #00d4aa 100%);
}

/* Hero Section Styles - Override home.css */
.studio-content .hero-section {
    text-align: center !important;
    margin-bottom: 5rem !important;
    padding: 0 40px 3rem 40px !important;
    background: transparent !important;
    border-radius: 0 !important;
    position: static !important;
    border-bottom: 2px solid transparent !important;
    background-image: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%) !important;
    background-size: 100% 2px !important;
    background-position: bottom center !important;
    background-repeat: no-repeat !important;
}

.studio-content .hero-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.studio-content .hero-subtitle {
    font-size: 1.4rem !important;
    color: #444 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 500 !important;
}

.studio-content .hero-description {
    font-size: 1.1rem !important;
    color: #333 !important;
    line-height: 1.7 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* Hero Sections */
.studio-hero {
    display: flex;
    align-items: center;
    min-height: 500px;
    background: linear-gradient(135deg, #1a0f3a 0%, #0f0a1f 50%, #050308 100%);
    color: white;
    margin-bottom: 60px;
    padding: 0;
}

.hero-content {
    flex: 1;
    padding: 60px 40px;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.studio-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.studio-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* Studio Services Grid */
.studio-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

/* Content Sections */
.studio-content-section {
    padding: 0 20px 60px;
}

.service-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.service-overview p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Production Services Grid */
.production-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.production-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.production-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.production-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.production-service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Recording Services Grid */
.recording-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.recording-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.recording-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Collaboration Services Grid */
.collaboration-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.collaboration-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.collaboration-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Beat Services Grid */
.beat-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.beat-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.beat-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

/* Workflow Steps */
.production-workflow, .collaboration-process, .beat-process {
    margin-bottom: 60px;
}

.production-workflow h2, .collaboration-process h2, .beat-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.workflow-steps, .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.workflow-step, .process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.workflow-step:hover, .process-step:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.workflow-step h4, .process-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.workflow-step p, .process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Studio Facilities */
.studio-facilities {
    margin-bottom: 60px;
}

.studio-facilities h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.facility-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.facility-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.facility-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.facility-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Collaboration Team */
.collaboration-team {
    margin-bottom: 60px;
}

.collaboration-team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.team-member p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Beat Genres */
.beat-genres {
    margin-bottom: 60px;
}

.beat-genres h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.genre-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.genre-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.genre-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.genre-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Studio Equipment */
.studio-equipment {
    margin-bottom: 60px;
}

.studio-equipment h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.equipment-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.equipment-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Pricing */
.production-pricing, .recording-pricing, .collaboration-pricing, .beat-pricing {
    margin-bottom: 60px;
}

.production-pricing h2, .recording-pricing h2, .collaboration-pricing h2, .beat-pricing h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
}

.pricing-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

/* CTA Sections */
.studio-cta {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 60px 0;
}

.studio-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.studio-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff2d92 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.cta-btn.secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Studio Content Mobile Responsive */
@media (max-width: 768px) {
    .studio-content {
        padding: 30px 0;
    }
}

/* Intro Section Mobile Responsive */
@media (max-width: 768px) {
    .intro-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .intro-section .studio-title {
        font-size: 2rem;
    }
}

/* Session Types Mobile Responsive */
@media (max-width: 768px) {
    .session-types {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .session-card {
        padding: 1.25rem;
    }
    
    .session-header {
        gap: 0.3rem;
    }
    
    .session-card h3 {
        font-size: 1.3rem;
    }
    
    .goals-section {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 1.5rem;
    }
    
    .cta-section h3 {
        font-size: 1.4rem;
    }
}

/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .studio-content .hero-section {
        padding: 0 20px 2rem 20px !important;
        margin-bottom: 4rem !important;
    }
    
    .studio-content .hero-title {
        font-size: 2.5rem !important;
    }
    
    .studio-content .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .studio-content .hero-description {
        font-size: 1rem !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .studio-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-image {
        padding: 20px;
    }
    
    .studio-title {
        font-size: 2.5rem;
    }
    
    .studio-subtitle {
        font-size: 1.1rem;
    }
    
    .studio-services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        margin: 5px 0;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .studio-hero {
        padding: 40px 15px;
    }
    
    .studio-title {
        font-size: 2rem;
    }
    
    .service-overview h2, .production-workflow h2, .studio-facilities h2, .collaboration-team h2, .beat-genres h2, .production-pricing h2, .recording-pricing h2, .collaboration-pricing h2, .beat-pricing h2, .studio-cta h2 {
        font-size: 2rem;
    }
    
    .production-service-card, .recording-service-card, .collaboration-service-card, .beat-service-card, .facility-item, .team-member, .genre-item, .pricing-card {
        padding: 20px;
    }
}
