/* -------------------------------------------------------------------------- */
/*  TOOTBOX MEDIA - CORE STYLESHEET                                            */
/*  Design Concept: Cinematic Midnight (Minimalist Charcoal, Green, Deep Blue)*/
/* -------------------------------------------------------------------------- */

/* Custom Variables */
:root {
    --bg-darker: #050505;
    --bg-dark: #0c0c0c;
    --bg-card: #151515;
    --bg-card-hover: #1e1e1e;
    
    --color-brand-green: #1cd164;
    --color-brand-green-rgb: 28, 209, 100;
    --color-blue: #007aff;
    --color-blue-dark: #0056b3;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-brand-green: 1px solid rgba(28, 209, 100, 0.2);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.dark-bg {
    background-color: var(--bg-dark);
}

.text-center {
    text-align: center;
}

.brand-green-text {
    color: var(--color-brand-green);
    background: linear-gradient(135deg, #8cfca4, var(--color-brand-green), #13823d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-green-dot {
    color: var(--color-brand-green);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-brand-green), transparent);
    margin: 1.5rem auto 0;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-brand-green);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
}

.section-header {
    margin-bottom: 5rem;
}

.section-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-brand-green), #17a14e);
    color: #000;
    box-shadow: 0 4px 15px rgba(28, 209, 100, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 209, 100, 0.4);
    background: linear-gradient(135deg, #39e083, var(--color-brand-green));
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glassmorphism Panels */
.card-glass {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(28, 209, 100, 0.3);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    border-bottom: var(--border-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
}

.nav-list {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-brand-green);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: rgba(28, 209, 100, 0.1);
    border: 1px solid var(--color-brand-green);
    color: var(--text-primary);
    padding: 0.6rem 1.4rem !important;
    border-radius: 4px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-brand-green);
    color: #000;
    box-shadow: 0 0 15px rgba(28, 209, 100, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(5, 5, 5, 0.95) 85%),
                linear-gradient(to bottom, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.98));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-brand-green);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.8s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-brand-green);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-brand-green);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-img {
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    width: 100%;
    height: auto;
    filter: grayscale(20%) contrast(110%);
    border: var(--border-glass);
}

.image-accent-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-brand-green);
    border-radius: 8px;
    z-index: -1;
}

/* Team Grid */
.team-wrapper {
    margin-top: 8rem;
    border-top: var(--border-glass);
    padding-top: 6rem;
}

.team-title {
    font-size: 2.2rem;
    margin-bottom: 4rem;
}

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

.team-card {
    background: rgba(255, 255, 255, 0.01);
    border: var(--border-glass);
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 209, 100, 0.4);
    background: rgba(255, 255, 255, 0.03);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-brand-green);
    border: var(--border-brand-green);
}

.team-card:hover .member-avatar {
    background: var(--color-brand-green);
    color: #000;
}

.member-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 1.5rem;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
}

.member-socials a:hover {
    color: var(--color-brand-green);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.service-card {
    background: rgba(5, 5, 5, 0.6);
    border: var(--border-glass);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(28, 209, 100, 0.3);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-brand-green);
    margin-bottom: 2rem;
}

.service-name {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 300;
}

.service-list {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-list li i {
    color: var(--color-brand-green);
    font-size: 0.8rem;
}

/* Studio Hire & Calculator */
.studio-hire-wrapper {
    margin-top: 6rem;
    border-top: var(--border-glass);
    padding-top: 6rem;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.studio-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-green);
    border: var(--border-brand-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.studio-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.studio-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.studio-pricing-simple {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.price-pill {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    padding: 0.8rem 1.4rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.price-pill span {
    color: var(--color-brand-green);
    font-size: 1.1rem;
    font-weight: 800;
}

.studio-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.studio-calculator {
    padding: 3rem 2.5rem;
}

.studio-calculator h4 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.form-control {
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    border: var(--border-glass);
    color: var(--text-primary);
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-brand-green);
    box-shadow: 0 0 10px rgba(28, 209, 100, 0.15);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-secondary);
}

.checkbox-label input {
    accent-color: var(--color-brand-green);
    width: 18px;
    height: 18px;
}

.calculator-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.8rem;
    margin-bottom: 2rem;
}

.total-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.total-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-brand-green);
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.package-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 8px;
    padding: 3.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(28, 209, 100, 0.2);
}

.package-card.featured {
    border: 1px solid var(--color-brand-green);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: var(--shadow-premium);
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-brand-green), #17a14e);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.package-tier {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.package-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-brand-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    margin-top: 1.5rem;
    line-height: 1;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.package-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.package-features li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.package-features li.disabled {
    color: var(--text-muted);
}

.package-features li i.fa-check {
    color: var(--color-brand-green);
    font-size: 0.85rem;
}

.package-features li i.fa-xmark {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.package-footer {
    margin-top: auto;
}

.add-ons-box {
    margin-top: 5rem;
    padding: 2.5rem;
}

.add-ons-box h4 {
    font-size: 1.25rem;
    color: var(--color-brand-green);
    margin-bottom: 0.8rem;
}

.add-ons-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--color-brand-green);
    color: var(--text-primary);
    background: rgba(28, 209, 100, 0.05);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    padding: 1rem;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.portfolio-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/2;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.play-icon, .zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--color-brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.project-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-brand-green);
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-hover {
    opacity: 1;
}

.portfolio-item:hover .play-icon, .portfolio-item:hover .zoom-icon {
    transform: scale(1);
}

.portfolio-info {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.portfolio-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.portfolio-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.video-trigger {
    display: none;
}

/* Testimonials Section */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 4rem;
    position: relative;
    text-align: center;
}

.carousel-slide {
    display: none;
    animation: fadeSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.carousel-slide.active {
    display: block;
}

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

.quote-icon {
    font-size: 2.5rem;
    color: var(--color-brand-green);
    opacity: 0.4;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 2.5rem;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: var(--transition-fast);
}

.carousel-control-btn:hover {
    background: var(--color-brand-green);
    color: #000;
    border-color: var(--color-brand-green);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dots .dot.active {
    background: var(--color-brand-green);
    width: 20px;
    border-radius: 10px;
}

/* Contact & Booking Section */
.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.method-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    color: var(--color-brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 6px;
}

.method-detail span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.2rem;
}

.method-detail a, .method-detail p {
    font-size: 1.15rem;
    color: var(--text-primary);
}

.method-detail a:hover {
    color: var(--color-brand-green);
}

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

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: #000;
    background: var(--color-brand-green);
    border-color: var(--color-brand-green);
}

.booking-form-wrapper {
    padding: 3.5rem 2.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.col-6 {
    width: 50%;
}

.booking-form-wrapper .btn {
    margin-top: 1rem;
}

.form-success-msg {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success-msg i {
    font-size: 3.5rem;
    color: var(--color-brand-green);
    margin-bottom: 1.5rem;
}

.form-success-msg h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.form-success-msg p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: var(--border-glass);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: var(--text-secondary);
    max-width: 320px;
    font-size: 1rem;
}

.footer-links h4, .footer-services h4 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul li, .footer-services ul li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.footer-links ul li a:hover {
    color: var(--color-brand-green);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* Video & Image Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-brand-green);
    transform: scale(1.1);
}

.lightbox-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

#lightbox-video {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    outline: none;
}

#lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
}

/* Media Queries (Responsive Adjustments) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.6rem;
    }
    
    .about-grid, .studio-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .image-accent-border {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1.05rem;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-dark);
        border-left: var(--border-glass);
        padding: 100px 3rem 3rem;
        transition: var(--transition-smooth);
        z-index: 1000;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .stat-num {
        font-size: 2.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .col-6 {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .carousel-container {
        padding: 4rem 2rem;
    }
    
    .carousel-control-btn {
        display: none;
    }
}
