/* ========================================
   TRICITY PODCAST STUDIO - Dark & Moody Theme
   ======================================== */

/* CSS Variables - Following Cal.com Design System */

/* Light Mode (Default) */
:root {
    --color-bg: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-bg-card: #fafafa;
    --color-text: #1d1d1d;
    --color-text-muted: #787878;
    --color-accent: #292929;
    --color-accent-hover: #1d1d1d;
    --color-accent-light: rgba(41, 41, 41, 0.1);
    --color-border: rgba(0, 0, 0, 0.1);
    --color-success: #00c950;
    --color-danger: #fb2c36;
    --color-warning: #fe9a00;
    --radius: 18px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
.dark {
    --color-bg: #1d1d1d;
    --color-bg-light: #292929;
    --color-bg-card: #262626;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-accent: #e3e3e3;
    --color-accent-hover: #ffffff;
    --color-accent-light: rgba(227, 227, 227, 0.1);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-success: #00c950;
    --color-danger: #fb2c36;
    --color-warning: #fe9a00;
}

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

/* Smooth theme transitions */
*,
*::before,
*::after {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

html {
    scroll-behavior: smooth;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: var(--color-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-text);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text);
    margin-left: auto;
}

.theme-toggle:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent);
    transform: rotate(180deg);
}

.theme-toggle svg {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.dark .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.dark .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Ensure maximum contrast for primary buttons */
:root .btn-primary {
    background: #1d1d1d;
    color: #ffffff;
    border-color: #1d1d1d;
}

:root .btn-primary:hover {
    background: #000000;
    border-color: #000000;
}

.dark .btn-primary {
    background: #ffffff;
    color: #1d1d1d;
    border-color: #ffffff;
}

.dark .btn-primary:hover {
    background: #e3e3e3;
    border-color: #e3e3e3;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* Hero section buttons - always white text over dark overlay */
.hero .btn-primary {
    background: #ffffff;
    color: #1d1d1d;
    border-color: #ffffff;
}

.hero .btn-primary:hover {
    background: #e3e3e3;
    border-color: #e3e3e3;
}

.hero .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.85) 0%, rgba(23, 23, 23, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 24px;
    font-weight: 800;
    color: #ffffff; /* Always white - over dark overlay */
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.8); /* Always white with slight transparency */
    margin-bottom: 40px;
    font-weight: 400;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7); /* Always white - over dark overlay */
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent); /* Always white */
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: 120px 0;
}

.section-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 24px;
}

.section-title .line {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
}

.about-content {
    padding-right: 2.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Featured Client Section */
.featured-client {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(227, 227, 227, 0.05) 0%, transparent 100%);
    border: 2px solid rgba(227, 227, 227, 0.1);
    border-radius: var(--radius);
    position: relative;
}

.client-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.featured-client h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.featured-client p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.client-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.client-label {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 227, 227, 0.05) 0%, transparent 100%);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    background: var(--color-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--color-accent) 0%,
        var(--color-accent) 20%,
        var(--color-accent) 40%,
        var(--color-accent) 60%,
        var(--color-accent) 80%,
        var(--color-accent) 100%
    );
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    z-index: 2;
    border: 3px solid var(--color-bg);
}

/* Ensure number has good contrast */
:root .step-number {
    background: #1d1d1d;
    color: #ffffff;
}

.dark .step-number {
    background: #ffffff;
    color: #1d1d1d;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.process-step p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-bg-card);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    /* Ensure always visible - GSAP will animate from opacity:0 */
    opacity: 1 !important;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    background: rgba(227, 227, 227, 0.03);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing {
    background: var(--color-bg);
}

.pricing .container {
    max-width: 81.25rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.75rem;
}

.pricing-card {
    background: var(--color-bg-card);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 2px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    min-height: 34.375rem;
    display: flex;
    flex-direction: column;
    /* Ensure always visible - GSAP will animate from opacity:0 */
    opacity: 1 !important;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(227, 227, 227, 0.05) 0%, var(--color-bg-card) 100%);
}

.pricing-card.featured:hover {
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(227, 227, 227, 0.1);
}

.badge {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #ffffff; /* White text in light mode (dark badge background) */
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

/* Dark mode: black text on light badge background */
.dark .badge {
    color: #000000;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 8px;
}

.amount {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--color-text-muted);
    align-self: flex-end;
    margin-bottom: 12px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--color-text);
    font-size: 16px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 16px;
}

.pricing-note a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.pricing-note a:hover {
    color: var(--color-accent-hover);
}

/* À La Carte Add-Ons */
.addons-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-border);
}

.addons-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.addons-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

.addon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    font-size: 2.5rem;
}

.addon-content {
    width: 100%;
}

.addon-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.addon-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.addon-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    background: var(--color-bg-light);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--color-bg);
}

.contact .container {
    max-width: 90rem;
}

/* Cal.com Calendar Embed - Full Width */
.calendar-embed {
    background: var(--color-bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Cal.com automatically handles theme switching via auto detection */
#my-cal-inline-podcast-studio-rental {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 950px;
}

/* Contact Info Below Calendar */
.contact-info-simple {
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 3rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

#calcom-calendar {
    width: 100%;
    min-height: 400px;
}

.calendar-placeholder {
    text-align: center;
    padding: 60px 40px;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.calendar-placeholder h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.calendar-placeholder p {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.divider-text {
    text-align: center;
    position: relative;
    margin: 80px 0;
}

.divider-text::before,
.divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-text::before {
    left: 0;
}

.divider-text::after {
    right: 0;
}

.divider-text span {
    background: var(--color-bg);
    padding: 0 20px;
    color: var(--color-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Contact Info Grid */
.info-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-bg-light);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.75rem;
    }

    .about-content {
        padding-right: 0;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-large {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-steps::before {
        display: none; /* Hide connecting line on mobile */
    }

    .process-step {
        padding: 2.5rem 1.5rem;
    }

    .client-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-client {
        padding: 32px 24px;
    }

    .calendar-embed {
        padding: 24px;
    }

    .calendar-placeholder {
        padding: 40px 20px;
    }

    .divider-text::before,
    .divider-text::after {
        width: 30%;
    }

    .calendar-embed {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    #my-cal-inline-podcast-studio-rental {
        min-height: 850px;
    }

    .contact-info-simple {
        padding: 1.5rem;
        margin: 2.5rem auto;
    }

    .info-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-image img {
        height: 400px;
    }
}
