/* ============================================
   SOLEIL TALENT — MIAMI VICE RETRO-FUTURE
   Background: #1A0A2E | Surface: #2D1B4E
   Accent: #FF4081 (hot pink) | Secondary: #00BCD4 (cyan)
   Sunset: #FF6B35 | Fonts: Righteous + Nunito
   ============================================ */

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

:root {
    --bg: #1A0A2E;
    --surface: #2D1B4E;
    --surface-light: #3A2566;
    --accent: #FF4081;
    --secondary: #00BCD4;
    --sunset: #FF6B35;
    --text: #E8D5F5;
    --text-light: #B89FCC;
    --text-muted: #8A6FAA;
    --border: rgba(255, 64, 129, 0.25);
    --border-light: rgba(0, 188, 212, 0.15);
    --gradient: linear-gradient(135deg, #FF4081, #00BCD4);
    --gradient-reverse: linear-gradient(135deg, #00BCD4, #FF4081);
    --gradient-sunset: linear-gradient(180deg, #1A0A2E 0%, #4A1942 25%, #FF4081 50%, #FF6B35 75%, #FFB347 100%);
    --gradient-text: linear-gradient(135deg, #FF4081 0%, #E040FB 30%, #00BCD4 100%);
    --chrome-gradient: linear-gradient(180deg, #ffffff 0%, #c0c0c0 25%, #ffffff 50%, #a0a0a0 75%, #e0e0e0 100%);
    --neon-pink-glow: 0 0 7px #FF4081, 0 0 10px #FF4081, 0 0 21px #FF4081, 0 0 42px #FF4081;
    --neon-cyan-glow: 0 0 7px #00BCD4, 0 0 10px #00BCD4, 0 0 21px #00BCD4, 0 0 42px #00BCD4;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.6);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Righteous', 'Arial Black', sans-serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--secondary);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #fff;
}

/* --- Utility --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }

/* --- Chrome / Metallic Text Effect --- */
.chrome-text {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
}

/* --- Neon Text Effects --- */
.neon-pink-text {
    color: #FF4081;
    text-shadow: 0 0 7px #FF4081, 0 0 10px #FF4081, 0 0 21px #FF4081;
}

.neon-cyan-text {
    color: #00BCD4;
    text-shadow: 0 0 7px #00BCD4, 0 0 10px #00BCD4, 0 0 21px #00BCD4;
}

.neon-cyan {
    color: #00BCD4;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.6);
}

.neon-pink {
    color: #FF4081;
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.6);
}

/* --- Neon Flicker Animation --- */
@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.6; }
}

.neon-flicker {
    animation: neonFlicker 3s infinite;
}

/* --- Gradient Text (fallback) --- */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Retro Grid (Perspective Floor) --- */
.retro-grid {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background:
        linear-gradient(rgba(0,188,212,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,188,212,0.15) 1px, transparent 1px);
    background-size: 60px 40px;
    transform: perspective(400px) rotateX(60deg);
    transform-origin: bottom center;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* --- Palm Tree Silhouettes (CSS shapes) --- */
.palm-silhouettes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.palm {
    position: absolute;
    bottom: 10%;
    width: 120px;
    height: 300px;
}

.palm-left {
    left: 5%;
    background:
        radial-gradient(ellipse 80px 30px at 50% 10%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 90px 25px at 30% 18%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 85px 25px at 70% 18%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 70px 20px at 20% 28%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 70px 20px at 80% 28%, #0a0520 70%, transparent 71%),
        linear-gradient(#0a0520 0%, #0a0520 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 8px 60%;
    background-position: center top, center top, center top, center top, center top, center bottom;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.palm-right {
    right: 5%;
    background:
        radial-gradient(ellipse 80px 30px at 50% 10%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 90px 25px at 30% 18%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 85px 25px at 70% 18%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 70px 20px at 20% 28%, #0a0520 70%, transparent 71%),
        radial-gradient(ellipse 70px 20px at 80% 28%, #0a0520 70%, transparent 71%),
        linear-gradient(#0a0520 0%, #0a0520 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 8px 60%;
    background-position: center top, center top, center top, center top, center top, center bottom;
    background-repeat: no-repeat;
    opacity: 0.5;
    transform: scaleX(-1);
}

/* --- Section --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-neon-pink {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.4), 0 0 30px rgba(255, 64, 129, 0.15);
}

.btn-neon-pink:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-pink-glow);
    color: #fff;
    background: #ff5a9e;
}

.btn-outline-neon {
    background: transparent;
    color: #00BCD4;
    border-color: #00BCD4;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.2);
}

.btn-outline-neon:hover {
    background: rgba(0, 188, 212, 0.1);
    box-shadow: var(--neon-cyan-glow);
    color: #00BCD4;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 0 rgba(255, 64, 129, 0.2);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand .brand-icon {
    font-size: 1.5rem;
    color: #FF6B35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.navbar-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.navbar-link:hover {
    color: #00BCD4;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
}

.navbar-link.active {
    color: #FF4081;
    text-shadow: 0 0 8px rgba(255, 64, 129, 0.5);
}

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

.hamburger-line {
    width: 26px;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition);
    box-shadow: 0 0 5px rgba(255, 64, 129, 0.5);
}

.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-sunset-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-sunset);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,10,46,0.4) 0%, rgba(26,10,46,0.2) 40%, rgba(26,10,46,0.6) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,188,212,0.6), transparent);
    margin: 8px auto 0;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Page Hero (Sub-pages) --- */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-sm {
    min-height: 380px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,10,46,0.5) 0%, rgba(26,10,46,0.8) 100%);
    z-index: 3;
}

.page-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.06em;
}

/* --- Models Grid --- */
.section-models {
    background: var(--bg);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.model-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
}

.model-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #FF4081, #00BCD4) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.model-card:hover::before {
    opacity: 1;
    animation: neonBorderPulse 2s infinite;
}

@keyframes neonBorderPulse {
    0%, 100% { opacity: 0.7; filter: drop-shadow(0 0 4px #FF4081); }
    50% { opacity: 1; filter: drop-shadow(0 0 10px #FF4081) drop-shadow(0 0 20px #00BCD4); }
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(255, 64, 129, 0.2), 0 0 20px rgba(0, 188, 212, 0.1);
}

.model-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.model-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card:hover .model-card-image img {
    transform: scale(1.08);
}

.model-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(26, 10, 46, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.model-card:hover .model-card-overlay {
    opacity: 1;
}

.model-instagram {
    color: #00BCD4;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.5);
}

.model-card-info {
    padding: 20px;
}

.model-card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #fff;
}

.model-card-info p {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 6px rgba(255, 64, 129, 0.3);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Retro TV Card (CRT effect) --- */
.retro-tv-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--surface);
    border: 2px solid rgba(0, 188, 212, 0.2);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.3);
}

.retro-tv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 188, 212, 0.03) 2px,
        rgba(0, 188, 212, 0.03) 4px
    );
    pointer-events: none;
    z-index: 2;
}

.tv-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 188, 212, 0.1);
    animation: scanline 6s linear infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes scanline {
    0% { top: -4px; }
    100% { top: 100%; }
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.15), 0 0 40px rgba(0, 188, 212, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: #00BCD4;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    position: relative;
    z-index: 4;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    z-index: 4;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 4;
}

/* --- Stats Section --- */
.section-stats {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A0A2E, #2D1B4E);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 46, 0.7);
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 5;
    text-align: center;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 0.04em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* --- Testimonials --- */
.section-testimonials {
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #FFB347;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(255, 179, 71, 0.4);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.3);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--secondary);
}

/* --- CTA Section --- */
.section-cta {
    position: relative;
    background: linear-gradient(135deg, #2D1B4E, #1A0A2E);
    padding: 100px 0;
    overflow: hidden;
}

.section-cta .section-title {
    margin-bottom: 16px;
}

.section-cta .section-subtitle {
    margin-bottom: 40px;
}

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

/* --- Services Detail Page --- */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    text-align: left;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-icon {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 4;
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: #00BCD4;
    text-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(255, 64, 129, 0.3);
    letter-spacing: 0.05em;
}

.service-detail-content {
    position: relative;
    z-index: 4;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.75rem;
    text-shadow: 0 0 6px rgba(0, 188, 212, 0.4);
}

/* --- Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF4081, #00BCD4);
    box-shadow: 0 0 6px rgba(255, 64, 129, 0.4);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #FF4081;
    text-shadow: 0 0 15px rgba(255, 64, 129, 0.4);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

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

/* --- Pricing Section --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 2px solid rgba(0, 188, 212, 0.15);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

.pricing-featured {
    border-color: var(--accent);
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.2), 0 0 60px rgba(255, 64, 129, 0.05);
    animation: neonCardPulse 3s ease-in-out infinite;
}

@keyframes neonCardPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 64, 129, 0.2), 0 0 40px rgba(255, 64, 129, 0.05); }
    50% { box-shadow: 0 0 30px rgba(255, 64, 129, 0.35), 0 0 60px rgba(255, 64, 129, 0.1), 0 0 80px rgba(0, 188, 212, 0.05); }
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 6px 24px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.pricing-price {
    margin-bottom: 12px;
}

.pricing-price .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #00BCD4;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
    color: #00BCD4;
    font-size: 0.8rem;
    text-shadow: 0 0 6px rgba(0, 188, 212, 0.4);
}

.pricing-note {
    margin-top: 50px;
    padding: 24px;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Guarantee --- */
.guarantee-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--surface);
    border: 2px solid rgba(0, 188, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00BCD4;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    text-shadow: 0 0 12px rgba(0, 188, 212, 0.5);
}

.guarantee-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.guarantee-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* --- Events --- */
.events-controls {
    margin-bottom: 40px;
}

.events-month-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.month-btn {
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 188, 212, 0.2);
    background: transparent;
    color: var(--text-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.month-btn:hover {
    border-color: #00BCD4;
    color: #00BCD4;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.2);
}

.month-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.3);
}

.events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 64, 129, 0.2);
    background: transparent;
    color: var(--text-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: #FF4081;
    color: #FF4081;
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.2);
}

.filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 64, 129, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--surface);
    border: 1px solid rgba(0, 188, 212, 0.15);
    border-radius: var(--radius-md);
    padding: 28px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.event-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.15);
}

.event-card-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    margin-bottom: 14px;
}

.badge-fashion-show { background: rgba(255, 64, 129, 0.15); color: #FF4081; border: 1px solid rgba(255, 64, 129, 0.3); }
.badge-casting { background: rgba(0, 188, 212, 0.15); color: #00BCD4; border: 1px solid rgba(0, 188, 212, 0.3); }
.badge-networking { background: rgba(255, 179, 71, 0.15); color: #FFB347; border: 1px solid rgba(255, 179, 71, 0.3); }
.badge-workshop { background: rgba(128, 203, 196, 0.15); color: #80CBC4; border: 1px solid rgba(128, 203, 196, 0.3); }
.badge-photoshoot { background: rgba(186, 104, 200, 0.15); color: #BA68C8; border: 1px solid rgba(186, 104, 200, 0.3); }
.badge-gala { background: rgba(255, 107, 53, 0.15); color: #FF6B35; border: 1px solid rgba(255, 107, 53, 0.3); }

.event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.3;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.event-card-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-card-meta i {
    color: var(--secondary);
    width: 14px;
    text-shadow: 0 0 4px rgba(0, 188, 212, 0.3);
}

.events-loading {
    text-align: center;
    padding: 60px 0;
    grid-column: 1 / -1;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 188, 212, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

.events-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 188, 212, 0.2);
    background: transparent;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
}

.page-btn:hover {
    border-color: #00BCD4;
    color: #00BCD4;
}

.page-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

/* --- Event Modal --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 46, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--surface);
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: var(--radius-lg);
    max-width: 580px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform var(--transition);
    box-shadow: 0 0 40px rgba(255, 64, 129, 0.15), 0 0 80px rgba(0, 0, 0, 0.5);
}

.modal-backdrop.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
    z-index: 10;
}

.modal-close:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.modal-event-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.modal-event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-event-meta p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.modal-event-meta i {
    color: var(--secondary);
    width: 16px;
}

.modal-description {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-details {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.modal-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.modal-details strong {
    color: var(--secondary);
}

/* --- About / Story --- */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    border: 2px solid rgba(0, 188, 212, 0.2);
}

.story-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.2);
}

/* --- Values --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255, 64, 129, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--accent);
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid rgba(255, 64, 129, 0.3);
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.4);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.15);
}

.team-card-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-info {
    padding: 24px;
}

.team-card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #fff;
}

.team-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(255, 64, 129, 0.3);
}

.team-card-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    background: rgba(45, 27, 78, 0.8);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 64, 129, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300BCD4' d='M6 8.825L.35 3.175 1.175 2.35 6 7.175 10.825 2.35l.825.825z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #FF4081;
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.3);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success i {
    font-size: 3rem;
    color: #00BCD4;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.form-success p {
    color: var(--text-light);
}

/* --- Contact Sidebar --- */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #fff;
}

.sidebar-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.sidebar-info i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 4px;
    text-shadow: 0 0 6px rgba(0, 188, 212, 0.4);
}

.sidebar-info p,
.sidebar-info a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.sidebar-info a:hover {
    color: var(--accent);
}

.sidebar-social {
    display: flex;
    gap: 12px;
}

.sidebar-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: var(--secondary);
    transition: all var(--transition);
}

.sidebar-social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 64, 129, 0.4);
}

.sidebar-card-neon {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1), rgba(0, 188, 212, 0.1));
    border-color: rgba(255, 64, 129, 0.3);
}

.sidebar-card-neon p {
    color: var(--text);
}

.sidebar-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    gap: 16px;
    transition: color var(--transition);
}

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

.faq-icon {
    color: var(--secondary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    text-shadow: 0 0 6px rgba(0, 188, 212, 0.4);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* --- 404 Page --- */
.section-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.error-404 {
    position: relative;
    z-index: 5;
}

.error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-404 p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* --- Legal Pages --- */
.section-legal {
    padding-bottom: 80px;
}

.legal-content {
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 64, 129, 0.15);
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 20px;
}

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin: 24px 0 10px;
}

.legal-content p {
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 10px 0 20px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}

.legal-table th {
    background: rgba(0, 188, 212, 0.1);
    color: #00BCD4;
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 188, 212, 0.2);
}

.legal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

/* --- Footer --- */
.site-footer {
    background: #0D0520;
    position: relative;
}

.footer-neon-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF4081, #00BCD4, #FF4081, transparent);
    box-shadow: 0 0 10px rgba(255, 64, 129, 0.4), 0 0 20px rgba(0, 188, 212, 0.2);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand .brand-icon {
    font-size: 1.3rem;
    color: #FF6B35;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 188, 212, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.2);
    color: var(--secondary);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 64, 129, 0.4);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    text-shadow: 0 0 6px rgba(255, 64, 129, 0.3);
    padding-left: 6px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact-list i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 0.85rem;
    text-shadow: 0 0 4px rgba(0, 188, 212, 0.3);
}

.footer-contact-list span,
.footer-contact-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: rgba(45, 27, 78, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1500;
    transition: bottom 0.5s ease;
    border-top: 1px solid rgba(255, 64, 129, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* --- Scroll Top --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 0 15px rgba(255, 64, 129, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #ff5a9e;
    box-shadow: var(--neon-pink-glow);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .pricing-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }

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

    .process-step::after {
        display: none;
    }

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

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

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

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

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 10, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 64, 129, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-6px);
    }

    .pricing-card:nth-child(3) {
        max-width: none;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .guarantee-card {
        flex-direction: column;
        text-align: center;
    }

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 70px 0;
    }

    .palm-silhouettes {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .events-month-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .events-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .month-btn,
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* --- Services Preview on homepage (optional alternate bg) --- */
.section-services-preview {
    background: var(--surface);
}

/* Breadcrumbs */
.breadcrumbs { padding: 80px 0 12px 0; font-size: 0.85rem; opacity: 0.7; }
.breadcrumbs-list { display: flex; list-style: none; margin: 0; padding: 0; gap: 8px; }
.breadcrumbs-list li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumbs-list a { text-decoration: none; color: inherit; }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list li[aria-current] { opacity: 0.6; }
