@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET & TOKENS ===== */
:root {
    --primary: #1a1842;
    --primary-deep: #12102e;
    --primary-light: #2d2a6a;
    --accent: #FDCF60;
    --accent-hover: #ffe28a;
    --white: #ffffff;
    --text-muted: #b8b5d4;
    --text-dim: #8884b0;
    --glass-bg: rgba(30, 27, 75, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(253, 207, 96, 0.15);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-deep);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.preloader-logo span { color: var(--accent); font-style: italic; }

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 2rem;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    background: var(--accent);
    border-radius: 4px;
    animation: loadSlide 1.2s ease-in-out infinite;
}

@keyframes loadSlide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ===== CURSOR (desktop only) ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.25s, height 0.25s, border-color 0.25s, transform 0.05s linear;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    border-color: var(--accent-hover);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 7rem 0;
    position: relative;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn:hover i { transform: translateX(4px); }

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: var(--shadow-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(18, 16, 46, 0.92);
    backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    z-index: 1001;
}

.logo .amp {
    color: var(--accent);
    font-style: italic;
    font-size: 1.8rem;
}

/* Logo Images */
.preloader-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-logo-img:hover {
    opacity: 0.85;
}

header.scrolled .nav-logo-img {
    height: 38px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 1rem;
}

.nav-cta .btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(18, 16, 46, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--accent);
    opacity: 1;
}

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

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 24, 66, 0.92) 0%,
        rgba(18, 16, 46, 0.7) 50%,
        rgba(26, 24, 66, 0.85) 100%
    );
    z-index: 1;
}

/* Bokeh particles */
.bokeh-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 207, 96, 0.5), transparent 70%);
    animation: floatBokeh 8s ease-in-out infinite;
}

@keyframes floatBokeh {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25%     { transform: translate(20px, -30px) scale(1.1); opacity: 0.6; }
    50%     { transform: translate(-10px, -50px) scale(0.9); opacity: 0.4; }
    75%     { transform: translate(30px, -20px) scale(1.05); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-content h1 .amp {
    color: var(--accent);
    font-style: italic;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(253, 207, 96, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 50px; }
    50%     { opacity: 1; height: 60px; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--primary-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-accent-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.3;
}

.philosophy-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.phi-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.phi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.phi-card:hover::before {
    transform: scaleY(1);
}

.phi-card:hover {
    border-color: rgba(253, 207, 96, 0.2);
    transform: translateX(8px);
}

.phi-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.phi-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--primary);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 207, 96, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 207, 96, 0.25);
    box-shadow: var(--shadow-glow);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #e8b94e);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.8rem;
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
    background: var(--primary-deep);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.25rem;
}

.portfolio-grid .portfolio-item:nth-child(1) {
    grid-row: span 2;
}

.portfolio-grid .portfolio-item:nth-child(4) {
    grid-column: span 2;
}

/* Portfolio View All Toggle */
.portfolio-item-hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.portfolio-grid.expanded .portfolio-item-hidden {
    display: block;
    opacity: 1;
    transform: scale(1);
    animation: portfolioFadeIn 0.5s ease forwards;
}

.portfolio-grid.expanded .portfolio-item:nth-child(1) {
    grid-row: span 1;
}

.portfolio-grid.expanded .portfolio-item:nth-child(4) {
    grid-column: span 1;
}

@keyframes portfolioFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 16, 46, 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-overlay i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    margin-left: auto;
    margin-bottom: 0.5rem;
}

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

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

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    background: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== VIDEOS & PROJECTS ===== */
.videos-section {
    background: var(--primary-deep);
    padding-top: 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.video-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 207, 96, 0.25);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.8;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: rgba(253, 207, 96, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.video-info {
    padding: 2.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.3;
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-link:hover {
    gap: 0.9rem;
}

/* ===== TEAM ===== */
.team-section {
    background: var(--primary);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header .section-desc {
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 207, 96, 0.15);
}

.team-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

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

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

.team-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--primary-light), transparent);
}

.team-body {
    padding: 2.5rem;
}

.team-body h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.25rem;
}

.team-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 207, 96, 0.08), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: var(--primary-deep);
}

.booking-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.booking-header .section-desc {
    margin: 0 auto;
}

.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.form-section-label {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
}

.form-section-label:first-child {
    margin-top: 0;
}

.form-section-label .num {
    width: 28px;
    height: 28px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(253, 207, 96, 0.1);
}

.form-control::placeholder {
    color: var(--text-dim);
}

select.form-control {
    color: #000000 !important;
    background: #ffffff !important;
}

select.form-control option {
    color: #000000 !important;
    background: #ffffff !important;
}

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

.option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.option-label:hover {
    border-color: rgba(253, 207, 96, 0.4);
    background-color: rgba(253, 207, 96, 0.05);
}

.option-label input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.submit-btn {
    width: 100%;
    padding: 1.15rem;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    justify-content: center;
}

.form-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: #0f0d28;
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 250px;
    }
    .portfolio-grid .portfolio-item:nth-child(1) { grid-row: span 1; }
    .portfolio-grid .portfolio-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .custom-cursor { display: none; }
    
    .section-title { font-size: 2.2rem; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-content h1 { font-size: 3.2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .hero-scroll-indicator { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-accent-box { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    
    .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .portfolio-grid .portfolio-item:nth-child(4) { grid-column: span 1; }

    .videos-grid { grid-template-columns: 1fr; gap: 2rem; }

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

    .form-row { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
    .form-card { padding: 2rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

    .cta-content h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    section { padding: 5rem 0; }
    .container { padding: 0 1.25rem; }
}
