/* Home Page Specific Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --accent-dark: #f0f0f0;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #000000;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    --shadow-sm: 0 2px 4px rgba(255, 255, 255, 0.05);
    --shadow-md: 0 4px 6px rgba(255, 255, 255, 0.08);
    --shadow-lg: 0 10px 15px rgba(255, 255, 255, 0.1);
    --shadow-xl: 0 20px 25px rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(26, 26, 26, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="200" fill="url(%23a)"/><circle cx="800" cy="800" r="300" fill="url(%23a)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

/* Cinematic Lens Flare */
.hero-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 20%, rgba(255,255,255,0.1) 40%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: lensFlare 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes lensFlare {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translate(100px, -60px) scale(0.8);
        opacity: 0.4;
    }
}

/* Advanced Camera Light Rays */
.camera-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.light-ray {
    position: absolute;
    animation: lightSweep 15s linear infinite;
    filter: blur(0.5px);
}

.light-ray-1 {
    top: 10%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.1) 20%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.1) 80%,
        transparent 100%);
    animation-delay: 0s;
    transform: rotate(-2deg);
}

.light-ray-2 {
    top: 35%;
    width: 75%;
    height: 1.5px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.05) 30%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.05) 70%,
        transparent 100%);
    animation-delay: 3s;
    transform: rotate(1deg);
}

.light-ray-3 {
    top: 60%;
    width: 85%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.08) 25%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0.08) 75%,
        transparent 100%);
    animation-delay: 6s;
    transform: rotate(-1deg);
}

.light-ray-4 {
    top: 80%;
    width: 65%;
    height: 1.5px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.06) 35%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.06) 65%,
        transparent 100%);
    animation-delay: 9s;
    transform: rotate(2deg);
}

.light-ray-5 {
    top: 25%;
    width: 50%;
    height: 0.8px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.04) 40%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.04) 60%,
        transparent 100%);
    animation-delay: 12s;
    transform: rotate(-3deg);
}

@keyframes lightSweep {
    0% {
        left: -100%;
        opacity: 0;
        transform: translateX(0) rotate(var(--rotation, 0deg));
    }
    5% {
        opacity: 0.3;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    95% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: translateX(0) rotate(var(--rotation, 0deg));
    }
}

/* Professional Lens Flares */
.lens-flares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.lens-flare {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lens-flare-1 {
    top: 15%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.6) 0%,
        rgba(255,255,255,0.2) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.05) 75%,
        transparent 100%);
    animation: lensFlareMain 12s ease-in-out infinite;
    filter: blur(1px);
}

.lens-flare-2 {
    top: 40%;
    right: 25%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.4) 0%,
        rgba(255,255,255,0.15) 35%,
        rgba(255,255,255,0.05) 70%,
        transparent 100%);
    animation: lensFlareSecondary 8s ease-in-out infinite reverse;
    filter: blur(0.5px);
}

.lens-flare-3 {
    bottom: 30%;
    left: 35%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
        rgba(255,255,255,0.3) 0%,
        rgba(255,255,255,0.1) 40%,
        transparent 70%);
    animation: lensFlareSmall 6s ease-in-out infinite;
    filter: blur(0.3px);
}

@keyframes lensFlareMain {
    0%, 100% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(60px, -40px) scale(1.3);
        opacity: 0.6;
    }
    75% {
        transform: translate(90px, -60px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes lensFlareSecondary {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-40px, 25px) scale(1.4);
        opacity: 0.6;
    }
}

@keyframes lensFlareSmall {
    0%, 100% {
        transform: translate(0, 0) scale(0.5);
        opacity: 0.2;
    }
    33% {
        transform: translate(20px, -15px) scale(1.2);
        opacity: 0.5;
    }
    66% {
        transform: translate(-15px, 20px) scale(0.8);
        opacity: 0.4;
    }
}

/* Floating Cinematic Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation-fill-mode: both;
}

.floating-circle-1 {
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatCircle1 20s ease-in-out infinite;
}

.floating-circle-2 {
    bottom: 25%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: floatCircle2 15s ease-in-out infinite reverse;
}

.floating-triangle {
    top: 35%;
    left: 75%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255,255,255,0.15);
    animation: floatTriangle 18s ease-in-out infinite;
}

.floating-square {
    bottom: 40%;
    right: 30%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.25);
    transform: rotate(45deg);
    animation: floatSquare 12s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.25;
    }
}

@keyframes floatCircle2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(25px, -35px) scale(1.2);
        opacity: 0.2;
    }
}

@keyframes floatTriangle {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateX(-40px) rotate(180deg);
        opacity: 0.25;
    }
}

@keyframes floatSquare {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: rotate(225deg) scale(1.1);
        opacity: 0.15;
    }
}

/* Advanced Particle System */
.advanced-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.advanced-particle {
    position: absolute;
    border-radius: 50%;
    animation: advancedFloat 25s infinite linear;
}

.advanced-particle:nth-child(5n+1) {
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
    animation-duration: 30s;
}

.advanced-particle:nth-child(5n+2) {
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 6px rgba(255,255,255,0.4);
    animation-duration: 20s;
}

.advanced-particle:nth-child(5n+3) {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.2) 40%, transparent 80%);
    animation-duration: 35s;
}

.advanced-particle:nth-child(5n+4) {
    width: 1px;
    height: 1px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
    animation-duration: 18s;
}

.advanced-particle:nth-child(5n+5) {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 60%, transparent 100%);
    animation-duration: 40s;
}

@keyframes advancedFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0);
        opacity: 0;
    }
    2% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        transform: translateY(75vh) translateX(30px) rotate(90deg) scale(1);
    }
    50% {
        transform: translateY(50vh) translateX(-20px) rotate(180deg) scale(1.2);
    }
    75% {
        transform: translateY(25vh) translateX(40px) rotate(270deg) scale(0.8);
    }
    98% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(-30px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modern {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 1rem;
}

.btn-primary-modern {
    background: var(--gradient-accent);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--text-dark);
}

.btn-outline-modern {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Enhanced Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite linear;
}

/* Glowing particles */
.particle:nth-child(odd) {
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 0 6px var(--accent-color), 0 0 12px var(--accent-color);
    opacity: 0.6;
}

/* Subtle dust particles */
.particle:nth-child(even) {
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    box-shadow: 0 0 3px rgba(255,255,255,0.3);
    opacity: 0.4;
}

/* Large ambient particles */
.particle:nth-child(3n) {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 70%, transparent 100%);
    animation-duration: 30s;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(50px) rotate(180deg);
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(-30px) rotate(360deg);
        opacity: 0;
    }
}

/* Pulsing Light Effect */
.hero-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 30%, transparent 70%);
    border-radius: 50%;
    animation: heroPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Studio Atmosphere Effect */
.studio-atmosphere {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 10%, rgba(255,255,255,0.05) 0%, transparent 40%);
    opacity: 0.7;
    animation: atmosphereShift 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes atmosphereShift {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.8;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title .highlight {
    color: var(--accent-color);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.3);
}

.modern-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.modern-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.modern-card p {
    color: var(--text-gray);
    text-align: center;
    line-height: 1.6;
}

/* Glass Table */
.glass-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.glass-table table {
    width: 100%;
    margin: 0;
}

.glass-table th {
    background: rgba(0, 255, 148, 0.1);
    color: var(--text-light);
    font-weight: 600;
    padding: 1.5rem 1rem;
    border: none;
    font-size: 1rem;
}

.glass-table td {
    padding: 1.5rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-weight: 500;
}

.glass-table tbody tr:hover {
    background: rgba(0, 255, 148, 0.05);
}

.price-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Section */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    padding: 1rem;
    font-size: 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 148, 0.25);
}

.form-control::placeholder {
    color: var(--text-gray);
}

.form-floating > label {
    color: var(--text-gray);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Mobile First */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-modern {
        width: 100%;
        max-width: none;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .section-title p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .modern-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .modern-card h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .modern-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Newsletter mobile optimization */
    .newsletter-form .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form .col-md-5,
    .newsletter-form .col-md-2 {
        width: 100%;
        margin-bottom: 0;
    }
    
    .newsletter-input {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        height: auto;
    }
    
    .newsletter-btn {
        height: auto;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    /* Contact section mobile */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        margin: 0 auto 0.5rem auto;
    }
    
    /* Glass table mobile */
    .glass-table {
        border-radius: 15px;
        overflow-x: auto;
    }
    
    .glass-table table {
        min-width: 500px;
        font-size: 0.9rem;
    }
    
    .glass-table th,
    .glass-table td {
        padding: 1rem 0.75rem;
        white-space: nowrap;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    /* Form controls mobile */
    .form-control {
        padding: 1.2rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .form-floating > label {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-modern {
        flex: 1;
        max-width: 180px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .modern-card {
        padding: 2rem;
    }
    
    .newsletter-form .row {
        flex-direction: row;
        align-items: end;
    }
    
    .newsletter-input,
    .newsletter-btn {
        height: 55px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .btn-modern {
        width: auto;
        min-width: 180px;
    }
    
    .modern-card {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }
    
    /* Studios slider tablet optimization */
    .studio-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem;
    }
    
    .studio-title {
        font-size: 2.2rem;
    }
    
    .studio-actions {
        justify-content: center;
    }
}

/* Large devices and up - original styles apply */
@media (min-width: 992px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .btn-modern {
        width: auto;
    }
}

/* Studios Slider Mobile Optimization */
@media (max-width: 575.98px) {
    .studios-slider {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .slider-container {
        border-radius: 0;
    }
    
    .studio-slide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .studio-image {
        order: 2;
        aspect-ratio: 16/10;
        border-radius: 15px;
    }
    
    .studio-content {
        order: 1;
        padding: 0;
    }
    
    .studio-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .studio-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .studio-features {
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .studio-features li {
        padding: 0.4rem 0;
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    
    .studio-price {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .studio-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .studio-actions .btn-modern {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        margin-top: 1.5rem;
        gap: 0.4rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .studio-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .studio-title {
        font-size: 2rem;
    }
    
    .studio-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .studio-actions .btn-modern {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .studio-slide {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem;
        text-align: center;
    }
    
    .studio-title {
        font-size: 2.2rem;
    }
    
    .studio-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .studio-actions .btn-modern {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Dark Theme Specifics */
.bg-dark-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.bg-darker-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Studios Slider */
.studios-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.studios-slider:hover {
    transform: scale(0.995);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.studio-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.studio-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.studio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.studio-image:hover img {
    transform: scale(1.05);
}

.studio-content {
    padding: 2rem 0;
}

.studio-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.studio-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.studio-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.studio-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
}

.studio-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.studio-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.studio-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.studio-actions .btn-modern {
    flex: 1;
    min-width: 150px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 148, 0.2);
    border: 1px solid rgba(0, 255, 148, 0.3);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.slider-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Newsletter Section */
.newsletter-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 148, 0.2);
    box-shadow: 0 20px 40px rgba(0, 255, 148, 0.1);
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.newsletter-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 55px;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 0 0 3px rgba(0, 255, 148, 0.2);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-gray);
}

.newsletter-btn {
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.newsletter-message {
    font-weight: 500;
    border-radius: 10px;
    padding: 1rem;
    display: none;
}

.newsletter-message.success {
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid rgba(0, 255, 148, 0.3);
    color: var(--accent-color);
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.newsletter-note {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Modern Alert */
.modern-alert {
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid rgba(0, 255, 148, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--accent-color);
    margin: 2rem 0;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .studio-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .studio-title {
        font-size: 2rem;
    }
    
    .studio-actions {
        justify-content: center;
    }
    
    .newsletter-form .row {
        flex-direction: column;
    }
    
    .newsletter-form .col-md-5,
    .newsletter-form .col-md-2 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .newsletter-btn {
        min-width: auto;
    }
}

/* References Slider */
.references-slider {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.slider-track:hover {
    animation-play-state: paused;
}

.reference-logo {
    flex: 0 0 auto;
    height: 80px;
    width: auto;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reference-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.reference-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.reference-logo:hover img {
    opacity: 1;
    filter: brightness(1) invert(0);
}

.reference-logo span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile References */
@media (max-width: 768px) {
    .references-slider {
        padding: 1rem 0;
    }
    
    .slider-track {
        gap: 2rem;
        animation-duration: 25s;
    }
    
    .reference-logo {
        height: 60px;
        min-width: 100px;
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .reference-logo span {
        font-size: 1rem;
    }
}