/* ============================================
   V2 CINEMATIC STUDIO - Premium Wedding Studio
   ============================================ */

/* CSS Variables */
:root {
    --primary: #ff6a00;
    --primary-light: #ff8533;
    --primary-dark: #e65f00;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --transition: all 0.35s ease;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: transform 0.5s var(--ease-premium);
    background: transparent;
    animation: navbarIntro 0.9s var(--ease-premium) forwards;
    opacity: 0;
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 56px;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition:
        width 0.55s var(--ease-premium),
        max-width 0.55s var(--ease-premium),
        margin-top 0.55s var(--ease-premium),
        padding 0.55s var(--ease-premium),
        background-color 0.55s var(--ease-premium),
        backdrop-filter 0.55s var(--ease-premium),
        border-color 0.55s var(--ease-premium),
        border-radius 0.55s var(--ease-premium),
        box-shadow 0.55s var(--ease-premium);
}

.navbar.scrolled .nav-container {
    width: 80%;
    max-width: 1120px;
    margin-top: 14px;
    padding: 7px 28px;
    background: rgba(0, 0, 0, 0.74);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(255, 255, 255, 0.075);
    border-radius: 26px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.logo-image {
    display: block;
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: height 0.55s var(--ease-premium), max-width 0.55s var(--ease-premium);
}

.navbar.scrolled .logo-image {
    height: 40px;
    max-width: 180px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    position: relative;
    transition: color 0.4s ease-in-out;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-premium);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-book-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(255, 106, 0, 0.28);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.nav-book-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.68) 50%, transparent 82%);
    transform: translateX(-160%);
    animation: goldenShine 2.8s ease-in-out infinite;
}

.nav-book-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 36px rgba(255, 106, 0, 0.4);
    background: var(--primary-dark);
}

@keyframes goldenShine {
    0%, 14% {
        transform: translateX(-160%);
    }
    55%, 100% {
        transform: translateX(180%);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.14), transparent 32%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 48%, #000000 100%);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.hero::before {
    inset: 0;
    background:
        radial-gradient(circle at 50% 52%, rgba(255, 106, 0, 0.18), transparent 21%),
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 86% 82%, rgba(255, 106, 0, 0.1), transparent 22%);
}

.hero::after {
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.96), transparent);
}

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

.hero-video,
.hero-backdrop {
    width: 100%;
    height: 100%;
    opacity: 0.82;
    filter: contrast(1.06) saturate(1.01);
    transform: none;
}

.hero-video {
    object-fit: cover;
}

.hero-backdrop {
    background:
        radial-gradient(circle at 65% 50%, rgba(255, 106, 0, 0.12), transparent 24%),
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.05), transparent 20%),
        linear-gradient(135deg, #040404 0%, #0a0a0a 48%, #030303 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.68)),
        rgba(0, 0, 0, 0.48);
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 780px);
    gap: clamp(36px, 6vw, 96px);
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 96px 20px 0;
}

.hero-text {
    opacity: 1;
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 112px);
    font-weight: 500;
    line-height: 0.92;
    margin-bottom: 28px;
    letter-spacing: 0;
    color: var(--text-white);
}

.title-line {
    display: block;
}

.title-top {
    white-space: nowrap;
    font-size: clamp(50px, 8vw, 104px);
}

.title-main {
    color: var(--text-white);
}

.title-accent {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(58px, 9.2vw, 126px);
    text-shadow: 0 0 18px rgba(255, 106, 0, 0.3);
}

.hero-tagline {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0 10px;
    font-size: clamp(13px, 1.55vw, 18px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 40px;
    opacity: 0.82;
    white-space: nowrap;
}

.hero-tagline-word-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 10ch;
    color: var(--primary);
    text-shadow: 0 0 18px rgba(255, 106, 0, 0.2);
    overflow: hidden;
}

.hero-tagline-word {
    display: inline-block;
    font-weight: 500;
    transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.hero-tagline-word.rotating-out {
    opacity: 0;
    transform: translateY(-38%);
    filter: blur(2px);
}

.hero-tagline-word.rotating-in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    opacity: 1;
}

.hero-image-frame {
    position: relative;
    width: min(100%, 920px);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-image {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.26);
    transform-origin: center;
    filter:
        drop-shadow(0 24px 52px rgba(0, 0, 0, 0.46))
        drop-shadow(0 0 24px rgba(255, 120, 0, 0.18))
        drop-shadow(0 0 52px rgba(255, 120, 0, 0.12));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 190px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 34px rgba(255, 106, 0, 0.56);
}

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

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 24px rgba(255, 106, 0, 0.36);
}

.whatsapp-button {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.5), 0 18px 38px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 0 34px rgba(255, 106, 0, 0.62), 0 20px 42px rgba(0, 0, 0, 0.5);
    background: var(--primary-dark);
}

.whatsapp-button svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.52), 0 18px 38px rgba(0, 0, 0, 0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 106, 0, 0), 0 18px 38px rgba(0, 0, 0, 0.45);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0), 0 18px 38px rgba(0, 0, 0, 0.45);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--bg-darker);
}

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

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    margin-bottom: 20px;
}

.section-description {
    max-width: 620px;
    margin: -5px auto 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch;
    gap: 40px;
}

.service-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.service-card {
    background: #111111;
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: default;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-premium);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.15);
}

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

a .service-card {
    cursor: pointer;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-premium);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: 120px 0;
    background: var(--bg-dark);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    border-radius: 12px;
    background: #111111;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

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

.portfolio-overlay h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-overlay p {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* Portfolio Video specific styles */
.portfolio-item-video .video-thumbnail {
    position: relative;
    z-index: 0;
    transition: opacity 0.4s var(--ease-premium), transform 0.6s ease;
}

.portfolio-item-video:hover .video-thumbnail {
    opacity: 0;
}

.portfolio-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s var(--ease-premium);
    z-index: 1;
}

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

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    z-index: 2;
    transition: opacity 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-icon svg {
    width: 22px;
    height: 22px;
    margin-left: 4px;
}

.portfolio-item-video:hover .play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #111111;
    border: 1px solid #222222;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group select {
    cursor: pointer;
    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='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: #111111;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: #050505;
    border-top: 1px solid #111111;
}

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

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-image {
    height: 58px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-white);
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding-bottom: 48px;
    }

    .hero-text {
        max-width: 720px;
    }

    .title-top {
        white-space: normal;
    }

    .hero-buttons {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 84px;
    }

    .nav-container {
        padding: 12px 24px;
        gap: 24px;
    }

    .navbar.scrolled .nav-container {
        width: calc(100% - 24px);
        margin-top: 10px;
        padding: 7px 16px;
        border-radius: 12px;
    }

    .logo-image {
        height: 45px;
        max-width: 190px;
    }

    .navbar.scrolled .logo-image {
        height: 38px;
        max-width: 160px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-book-btn {
        min-width: 190px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        min-height: 100svh;
        height: auto;
    }

    .hero::before {
        background:
            radial-gradient(circle at 50% 28%, rgba(255, 106, 0, 0.2), transparent 34%),
            radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.06), transparent 20%),
            radial-gradient(circle at 84% 76%, rgba(255, 106, 0, 0.08), transparent 24%);
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.4) 36%, rgba(0, 0, 0, 0.88) 100%),
            rgba(0, 0, 0, 0.28);
    }

    .hero-content {
        width: min(100%, calc(100% - 24px));
        gap: 20px;
        padding: 112px 18px 54px;
        position: relative;
        min-height: 100svh;
        align-content: center;
    }

    .hero-video {
        object-position: center;
    }

    .hero-text {
        position: relative;
        z-index: 3;
        max-width: 100%;
    }

    .hero-tagline {
        letter-spacing: 2px;
        justify-content: center;
        font-size: clamp(12px, 2.4vw, 16px);
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 8px;
    }

    .hero-media {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        opacity: 0.24;
        align-items: stretch;
    }

    .hero-image-frame {
        width: 100%;
        height: 100%;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 32%;
        transform: none;
        filter:
            saturate(0.95)
            drop-shadow(0 18px 34px rgba(0, 0, 0, 0.38));
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }

    .whatsapp-button {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 42px;
        max-width: 170px;
    }

    .navbar.scrolled .logo-image {
        height: 35px;
        max-width: 145px;
    }
    
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: clamp(46px, 16vw, 68px);
        margin-bottom: 22px;
    }

    .title-accent {
        font-size: clamp(54px, 17vw, 86px);
    }

    .hero-content {
        padding: 108px 14px 40px;
    }

    .hero-tagline {
        gap: 4px 8px;
        margin-bottom: 30px;
    }

    .hero-tagline-word-wrap {
        min-width: 9ch;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Service Hero Section */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    margin-top: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 106, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 106, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.service-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s var(--ease-premium) forwards;
}

.service-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-premium) 0.2s forwards;
    opacity: 0;
}

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

/* Packages Section */
.packages-section {
    padding: 80px 0 100px;
    background: var(--bg-darker);
    min-height: 100vh;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    display: inline-block;
}

.packages-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Package Toggle */
.package-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.toggle-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-muted);
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s var(--ease-premium);
    z-index: -1;
}

.toggle-btn:first-child {
    border-radius: 50px 0 0 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.toggle-btn:last-child {
    border-radius: 0 50px 50px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.toggle-btn:hover {
    color: var(--text-white);
    border-color: var(--primary);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 4px 25px rgba(255, 106, 0, 0.4);
}

/* Package Section */
.package-section {
    display: none;
    animation: fadeIn 0.5s var(--ease-premium) forwards;
}

.package-section.active {
    display: block;
}

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

/* Package Cards */
.package-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-card {
    background: linear-gradient(145deg, #141414 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease-premium);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.premium {
    background: linear-gradient(145deg, #1a1510 0%, #0d0a05 100%);
    border-color: rgba(255, 106, 0, 0.15);
}

.package-card.premium::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.card-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.card-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.package-card.premium .card-price {
    color: var(--primary);
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.card-features li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.card-features li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.package-card.premium .card-features li::before {
    color: var(--primary);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 13px;
    letter-spacing: 2px;
}

/* Custom Package Section */
.custom-package-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.custom-package-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.custom-package-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.custom-package-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.custom-package-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.custom-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

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

.footer-copyright {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .package-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0 80px;
    }

    .packages-heading {
        letter-spacing: 3px;
    }

    .package-toggle {
        gap: 0;
        margin-bottom: 40px;
    }

    .toggle-btn {
        padding: 14px 24px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .package-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .package-card {
        padding: 30px 25px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-price {
        font-size: 32px;
    }

    .custom-package-section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .toggle-btn {
        padding: 12px 16px;
        font-size: 11px;
    }

    .toggle-btn:first-child,
    .toggle-btn:last-child {
        border-radius: 0;
    }

    .toggle-btn:first-child {
        border-radius: 30px 0 0 30px;
    }

    .toggle-btn:last-child {
        border-radius: 0 30px 30px 0;
    }

    .card-features li {
        font-size: 13px;
        padding: 10px 0 10px 20px;
    }
}

/* ============================================
   SERVICES & WORKS PAGES
   ============================================ */
.card-features li::before {
    content: '\2713';
}

.services-page-section {
    padding-top: 100px;
}

.process-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top center, rgba(255, 106, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.process-card {
    padding: 34px 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.07);
    min-height: 240px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.35);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.process-number {
    display: inline-block;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
    color: var(--primary);
}

.process-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
}

.process-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.works-hero {
    min-height: 360px;
}

.works-intro {
    padding: 48px 0 10px;
    background: var(--bg-darker);
}

.works-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.works-stat {
    padding: 28px 26px;
    text-align: center;
    background: linear-gradient(145deg, #121212 0%, #0b0b0b 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.works-stat strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--text-white);
}

.works-stat span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.works-page-gallery {
    padding-top: 90px;
}

.works-photos-section {
    padding-bottom: 80px;
}

.works-videos-section {
    padding-top: 90px;
    background: var(--bg-darker);
}

.works-photo-grid .portfolio-item {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.works-photo-grid .portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 106, 0, 0);
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium);
}

.works-photo-grid .portfolio-item:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 26px 55px rgba(255, 106, 0, 0.14);
}

.works-photo-grid .portfolio-item:hover::after {
    border-color: rgba(255, 106, 0, 0.36);
    box-shadow: inset 0 0 34px rgba(255, 106, 0, 0.1);
}

.works-photo-grid .portfolio-item:hover img {
    transform: scale(1.12) rotate(0.4deg);
    filter: saturate(1.08) contrast(1.05);
}

.works-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.works-video-grid .portfolio-item {
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.works-video-grid .portfolio-video {
    opacity: 0.78;
    transform: scale(1.01);
}

.works-video-grid .portfolio-item-video:hover .portfolio-video {
    opacity: 1;
}

.works-video-grid .portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(255, 106, 0, 0.14);
}

.works-video-grid .play-icon {
    display: none;
}

.works-download-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 106, 0, 0.16), transparent 28%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
}

.works-download-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: center;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(18, 18, 18, 0.72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36), 0 0 34px rgba(255, 106, 0, 0.08);
    backdrop-filter: blur(18px);
}

.works-download-copy h2 {
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 500;
}

.works-download-copy p,
.works-download-message {
    color: var(--text-muted);
}

.works-download-form {
    display: grid;
    gap: 18px;
}

.works-download-form .btn {
    width: 100%;
}

.works-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.32);
    color: var(--text-white);
    font-weight: 700;
    transition: var(--transition);
}

.works-download-link:hover {
    background: var(--primary);
    box-shadow: 0 0 24px rgba(255, 106, 0, 0.32);
}

.cta-band {
    padding: 100px 0;
    background:
        radial-gradient(circle at center, rgba(255, 106, 0, 0.14), transparent 28%),
        linear-gradient(180deg, #090909 0%, #050505 100%);
}

.cta-band-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.cta-band-content h2 {
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(34px, 6vw, 56px);
    font-weight: 600;
    color: var(--text-white);
}

.cta-band-content p {
    max-width: 640px;
    margin: 0 auto 34px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
}

.cta-band-buttons {
    justify-content: center;
}

@media (max-width: 1024px) {
    .process-grid,
    .works-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-page-section,
    .process-section,
    .cta-band {
        padding: 80px 0;
    }

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

    .process-card,
    .works-stat {
        min-height: auto;
    }

    .works-video-grid {
        grid-template-columns: 1fr;
    }

    .works-download-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 22% 24%, rgba(255, 106, 0, 0.12), transparent 26%),
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(180deg, #070707 0%, #0c0c0c 100%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 460px);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.about-hero-title {
    margin: 16px 0 24px;
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 600;
    color: var(--text-white);
}

.about-hero-text,
.about-intro-founder-label {
    max-width: 650px;
}

.about-hero-text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.95;
    color: var(--text-muted);
}

.about-intro-founder-label {
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
}

.about-hero-media {
    display: flex;
    justify-content: center;
}

.about-profile-img {
    width: min(100%, 430px);
    height: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-services,
.about-why-choose,
.about-testimonials,
.about-faq {
    padding: 100px 0;
}

.about-services {
    background: var(--bg-darker);
}

.about-why-choose {
    background: linear-gradient(180deg, #0b0b0b 0%, #090909 100%);
}

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

.about-faq {
    background: var(--bg-darker);
}

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

.about-section-heading {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 5px;
}

.about-section-subtitle {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-services-grid,
.about-why-grid,
.testimonial-grid {
    display: grid;
    gap: 24px;
}

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

.about-service-item,
.about-why-card,
.testimonial-card,
.faq-item {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.about-service-item {
    padding: 34px 30px;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.about-service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 106, 0, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-service-item:hover::before {
    opacity: 1;
}

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

.about-service-title {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--text-white);
}

.about-service-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-why-card {
    padding: 32px 26px;
    text-align: center;
}

.about-why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 106, 0, 0.28);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
}

.about-why-title {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-white);
}

.about-why-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-testimonials-rating {
    margin-bottom: 34px;
    text-align: center;
}

.rating-value {
    display: block;
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--text-white);
}

.rating-stars {
    display: block;
    margin: 4px 0 8px;
    letter-spacing: 4px;
    color: var(--primary);
}

.rating-reviews {
    color: var(--text-muted);
    font-size: 14px;
}

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

.testimonial-card {
    padding: 28px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #111111;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonial-name {
    margin-bottom: 4px;
    font-size: 18px;
    color: var(--text-white);
}

.testimonial-stars {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    color: var(--text-white);
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.faq-icon {
    font-size: 22px;
    color: var(--primary);
    transition: transform 0.25s ease;
}

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

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-answer {
    max-height: 240px;
}

@media (max-width: 1024px) {
    .about-hero-grid,
    .about-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero,
    .about-services,
    .about-why-choose,
    .about-testimonials,
    .about-faq {
        padding: 88px 0;
    }

    .about-hero-grid,
    .about-services-grid,
    .about-why-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding-top: 130px;
    }

    .about-section-heading {
        letter-spacing: 3px;
    }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */
.dedicated-booking-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #111111 0%, #0a0a0a 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .booking-form-container {
        padding: 30px 20px;
    }
}

.success-msg {
    margin-top: 15px;
    color: #4CAF50;
    font-size: 14px;
}

/* ============================================
   GIFTS PAGE STYLES
   ============================================ */
.gifts-hero {
    min-height: 45vh;
}

.gifts-hero-small-text {
    font-family: var(--font-body);
    font-size: clamp(13px, 2vw, 15px);
    color: var(--primary);
    margin-top: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s var(--ease-premium) 0.4s forwards;
    opacity: 0;
}

.gifts-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gift-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-premium), border-color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
    display: flex;
    flex-direction: column;
}

.gift-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.15);
}

.gift-image-wrapper {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
}

.gift-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-premium);
}

.gift-card:hover .gift-image-wrapper img {
    transform: scale(1.1);
}

.gift-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.gift-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.gift-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.gift-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
}

.gift-card.more-gifts {
    justify-content: center;
    background: transparent;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.gift-card.more-gifts:hover {
    border-color: var(--primary);
    background: rgba(255, 106, 0, 0.05);
}

/* Custom Design Section */
.custom-design-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-design-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    color: var(--text-white);
    margin-bottom: 15px;
}

.custom-design-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ============================================
   STANDALONE BUILDER STYLES
   ============================================ */
.builder-body {
    --bg-card: #111111;
    --border-color: rgba(255, 255, 255, 0.1);
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    padding: 130px 20px 40px;
}

.builder-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.builder-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease forwards;
}

.builder-header h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-white);
}

.builder-header p {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Layout */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* Sections */
.builder-section {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.builder-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.builder-container .section-title {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary);
    letter-spacing: 2px;
}

/* Cards & Buttons */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.option-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.1);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.selected {
    border-color: var(--primary);
    background-color: rgba(255, 106, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
}

.option-card.selected::after {
    content: '?';
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--primary);
    font-size: 18px;
    font-weight: bold;
}

.option-card h3 {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Form Inputs */
.builder-container .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.builder-container .form-group {
    display: flex;
    flex-direction: column;
}

.builder-container .form-group.full-width {
    grid-column: 1 / -1;
}

.builder-container .form-group label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.builder-container .form-group input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    color-scheme: dark;
}

.builder-container .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.15);
}

/* Sidebar Summary */
.sidebar-sticky {
    position: sticky;
    top: 40px;
    background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: fadeInRight 0.8s ease forwards;
}

.summary-header {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.summary-block {
    margin-bottom: 20px;
}

.summary-block h4 {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.summary-block p, .summary-block ul {
    font-size: 15px;
    color: var(--text-white);
    font-weight: 500;
    list-style: none;
}

.summary-block li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.summary-block li::before {
    content: '\2022';
    color: var(--primary);
    position: absolute;
    left: 0;
}

.empty-text {
    color: #555 !important;
    font-style: italic;
    font-weight: 400 !important;
}

/* Action Button */
.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 18px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 30px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }
    .sidebar-sticky {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .builder-container .form-grid {
        grid-template-columns: 1fr;
    }
    .builder-header h1 {
        font-size: 28px;
    }
}

/* ============================================
   ADMIN LOGIN PAGE
============================================ */
.admin-login-page {
    --admin-bg: #0b0b0b;
    --admin-orange: #ff6a00;
    --admin-orange-dark: #d95700;
    --admin-white: #ffffff;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 106, 0, 0.24), transparent 28%),
        radial-gradient(circle at 80% 72%, rgba(255, 106, 0, 0.16), transparent 30%),
        linear-gradient(135deg, #0b0b0b 0%, #111111 45%, #050505 100%);
    color: var(--admin-white);
    overflow-x: hidden;
}

.admin-login-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.04) 48%, transparent 72%);
    opacity: 0.7;
}

.admin-login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 18px;
    position: relative;
}

.admin-login-card {
    width: min(100%, 430px);
    padding: 42px 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: rgba(18, 18, 18, 0.68);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.62),
        0 0 42px rgba(255, 106, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: adminFadeIn 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.admin-login-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 106, 0, 0.18), transparent 44%);
    pointer-events: none;
}

.admin-login-logo-wrap,
.admin-login-heading,
.admin-login-form {
    position: relative;
    z-index: 1;
}

.admin-login-logo-wrap {
    width: 180px;
    min-height: 92px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.admin-login-logo {
    width: 100%;
    max-width: 180px;
    max-height: 92px;
    object-fit: contain;
    display: block;
}

.admin-login-heading {
    text-align: center;
    margin-bottom: 28px;
}

.admin-login-heading h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--admin-white);
    letter-spacing: 0;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-login-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.admin-login-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.admin-login-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--admin-white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.admin-login-field input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.admin-login-field input:focus {
    border-color: var(--admin-orange);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12), 0 0 24px rgba(255, 106, 0, 0.22);
}

.admin-login-error {
    min-height: 20px;
    margin: -4px 0 0;
    color: #ffb088;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.admin-login-button {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 12px;
    background: var(--admin-orange);
    color: var(--admin-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 12px 26px rgba(255, 106, 0, 0.28);
}

.admin-login-button:hover {
    background: var(--admin-orange-dark);
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 18px 34px rgba(255, 106, 0, 0.42);
}

.admin-login-button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

@keyframes adminFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 520px) {
    .admin-login-card {
        padding: 34px 22px 30px;
        border-radius: 18px;
    }

    .admin-login-logo-wrap {
        width: 150px;
        min-height: 78px;
    }

    .admin-login-logo {
        max-width: 150px;
        max-height: 78px;
    }

    .admin-login-heading h1 {
        font-size: 34px;
    }
}

.admin-panel-page {
    --admin-panel-bg: #080808;
    --admin-panel-surface: rgba(20, 20, 20, 0.92);
    --admin-panel-border: rgba(255, 106, 0, 0.18);
    --admin-panel-accent: #ff6a00;
    --admin-panel-accent-soft: rgba(255, 106, 0, 0.12);
    --admin-panel-text: #f5f1eb;
    --admin-panel-muted: rgba(245, 241, 235, 0.72);
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 106, 0, 0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(145deg, #050505, #121212 45%, #080808);
    color: var(--admin-panel-text);
}

.admin-panel-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 1.5rem;
    background: rgba(8, 8, 8, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
}

.admin-sidebar-logo {
    width: 84px;
    margin-bottom: 1rem;
}

.admin-sidebar-kicker,
.admin-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: var(--admin-panel-accent);
}

.admin-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
}

.admin-sidebar-link {
    display: block;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    color: var(--admin-panel-text);
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.admin-sidebar-link:hover,
.admin-sidebar-link.active {
    background: var(--admin-panel-accent-soft);
    border-color: var(--admin-panel-border);
    transform: translateX(4px);
}

.admin-main {
    padding: 2rem;
}

.admin-page-header {
    margin-bottom: 1.75rem;
}

.admin-page-header h1 {
    margin: 0.5rem 0 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    color: #fff;
}

.admin-page-header p {
    margin: 0;
    max-width: 780px;
    color: var(--admin-panel-muted);
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-stat-card,
.admin-panel-card {
    background: var(--admin-panel-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.admin-stat-card {
    padding: 1.4rem;
}

.admin-stat-card span,
.admin-stat-card p,
.admin-panel-card-header h2,
.admin-field span,
.admin-form-message,
.admin-empty-state,
.admin-activity-item span,
.admin-activity-item small,
.admin-action-tile span {
    color: var(--admin-panel-muted);
}

.admin-stat-card strong {
    display: block;
    margin: 0.55rem 0;
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    color: #fff;
}

.admin-content-grid,
.admin-editor-grid {
    display: grid;
    gap: 1rem;
}

.admin-content-grid {
    grid-template-columns: 1.25fr 0.9fr;
}

.admin-content-grid-wide,
.admin-editor-grid {
    grid-template-columns: 1fr;
}

.admin-panel-card {
    padding: 1.4rem;
}

.admin-panel-card-header,
.admin-subsection-header,
.admin-repeat-header,
.admin-form-actions,
.admin-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.admin-panel-card-header {
    margin-bottom: 1rem;
}

.admin-panel-card-header h2,
.admin-subsection-header h3,
.admin-subsection-header h4 {
    margin: 0;
    color: #fff;
}

.admin-activity-list,
.admin-quick-actions,
.admin-form,
.admin-stack {
    display: grid;
    gap: 1rem;
}

.admin-activity-item,
.admin-action-tile,
.admin-repeat-card {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-activity-item strong,
.admin-action-tile strong,
.admin-repeat-header strong {
    display: block;
    color: #fff;
    margin-bottom: 0.25rem;
}

.admin-action-tile,
.admin-text-link {
    text-decoration: none;
}

.admin-action-tile:hover,
.admin-text-link:hover {
    color: var(--admin-panel-accent);
}

.admin-text-link {
    color: var(--admin-panel-accent);
    font-size: 0.95rem;
}

.admin-grid {
    display: grid;
    gap: 1rem;
}

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

.admin-field {
    display: grid;
    gap: 0.45rem;
}

.admin-field-full {
    grid-column: 1 / -1;
}

.admin-field input,
.admin-field textarea,
.admin-field select,
.admin-table-input,
.admin-table-select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus,
.admin-table-input:focus,
.admin-table-select:focus {
    outline: none;
    border-color: var(--admin-panel-accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.14);
}

.admin-checkbox-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 2rem;
}

.admin-checkbox-field input {
    width: auto;
}

.admin-primary-button,
.admin-mini-button {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6a00, #ff9347);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-primary-button {
    padding: 0.95rem 1.5rem;
    font-weight: 600;
}

.admin-mini-button {
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
}

.admin-remove-button {
    background: rgba(255, 255, 255, 0.08);
}

.admin-primary-button:hover,
.admin-mini-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.2);
}

.admin-subsection {
    display: grid;
    gap: 0.9rem;
}

.admin-nested-card {
    background: rgba(255, 106, 0, 0.05);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 0.7rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.admin-table th {
    color: #fff;
    font-weight: 600;
}

.admin-empty-row {
    text-align: center;
    color: var(--admin-panel-muted);
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1100px) {
    .admin-panel-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        gap: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .admin-sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .admin-stat-grid,
    .admin-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .admin-main {
        padding: 1.15rem;
    }

    .admin-stat-grid,
    .admin-content-grid,
    .admin-grid-2 {
        grid-template-columns: 1fr;
    }

    .admin-panel-card-header,
    .admin-subsection-header,
    .admin-repeat-header,
    .admin-form-actions,
    .admin-filter-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================
   ADMIN CRM PAGE
============================================ */
.crm-admin-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 106, 0, 0.24), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(255, 106, 0, 0.12), transparent 26%),
        linear-gradient(135deg, #0b0b0b 0%, #101010 48%, #050505 100%);
    color: var(--text-white);
    font-family: var(--font-body);
}

.crm-admin-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.035), transparent);
    opacity: 0.65;
}

.crm-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 42px 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   ADMIN FINANCE PAGE
============================================ */
.finance-layout {
    display: grid;
    gap: 1.25rem;
}

.finance-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.finance-table-wrap {
    overflow-x: auto;
}

.finance-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
}

.finance-table th,
.finance-table td {
    padding: 0.95rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    vertical-align: middle;
}

.finance-table th {
    color: rgba(245, 241, 235, 0.74);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.finance-table tbody tr {
    transition: background 0.22s ease;
}

.finance-table tbody tr:hover {
    background: rgba(255, 106, 0, 0.06);
}

.finance-current-input {
    width: 120px;
    min-height: 40px;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
}

.finance-current-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.13);
}

.finance-token {
    display: inline-block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--primary);
    font-weight: 700;
}

.finance-actions {
    display: flex;
    gap: 0.5rem;
}

.finance-action-button {
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.finance-action-button:hover {
    border-color: rgba(255, 106, 0, 0.45);
    transform: translateY(-1px);
}

.finance-delete-button:hover {
    color: #ff9b9b;
    border-color: rgba(255, 120, 120, 0.45);
}

.finance-empty-state {
    display: none;
    padding: 2rem;
    text-align: center;
    color: var(--admin-panel-muted);
}

.finance-empty-state.is-visible {
    display: block;
}

.admin-main .crm-shell {
    width: 100%;
    padding: 0;
}

.crm-header,
.crm-panel,
.crm-modal-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 18, 0.68);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 106, 0, 0.08);
}

.crm-header {
    min-height: 150px;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    animation: crmFadeIn 0.65s ease forwards;
}

.crm-kicker {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.crm-header h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 78px);
    line-height: 0.95;
}

.crm-header p:not(.crm-kicker),
.crm-panel-header p {
    color: var(--text-muted);
    font-size: 15px;
}

.crm-add-button,
.crm-submit-button,
.crm-cancel-button,
.crm-icon-button,
.crm-action-button {
    border: 0;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.crm-add-button,
.crm-submit-button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.24);
}

.crm-add-button span {
    font-size: 22px;
    line-height: 1;
}

.crm-add-button:hover,
.crm-submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px rgba(255, 106, 0, 0.4);
}

.crm-panel {
    border-radius: 24px;
    padding: 26px;
    animation: crmFadeIn 0.65s ease 0.1s both;
}

.crm-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.crm-panel-header h2,
.crm-modal-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 34px;
    line-height: 1;
}

.crm-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.crm-table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
}

.crm-table th,
.crm-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.crm-table th {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.crm-table tbody tr {
    transition: background 0.2s ease;
}

.crm-table tbody tr:hover {
    background: rgba(255, 106, 0, 0.07);
}

.crm-contact-cell,
.crm-notes-cell {
    color: var(--text-muted);
    line-height: 1.7;
}

.crm-notes-cell {
    max-width: 240px;
}

.crm-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid currentColor;
}

.crm-status-lead {
    color: #ffd166;
    background: rgba(255, 209, 102, 0.12);
}

.crm-status-contacted {
    color: #5dade2;
    background: rgba(93, 173, 226, 0.12);
}

.crm-status-booked {
    color: #58d68d;
    background: rgba(88, 214, 141, 0.12);
}

.crm-status-shoot-done {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.12);
}

.crm-status-completed {
    color: #b8b8b8;
    background: rgba(184, 184, 184, 0.12);
}

.crm-actions {
    display: flex;
    gap: 8px;
}

.crm-action-button,
.crm-icon-button,
.crm-cancel-button {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.crm-action-button {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.crm-action-button svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
}

.crm-action-button:hover,
.crm-icon-button:hover,
.crm-cancel-button:hover {
    border-color: rgba(255, 106, 0, 0.55);
    box-shadow: 0 0 22px rgba(255, 106, 0, 0.18);
    transform: translateY(-1px);
}

.crm-delete-button:hover {
    border-color: rgba(255, 90, 90, 0.55);
    color: #ff8a8a;
}

.crm-empty-state {
    display: none;
    padding: 42px 18px;
    color: var(--text-muted);
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.crm-empty-state.is-visible {
    display: block;
}

.crm-modal[hidden] {
    display: none;
}

.crm-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.crm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.crm-modal-card {
    width: min(760px, 100%);
    max-height: min(88vh, 820px);
    overflow-y: auto;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    z-index: 1;
    animation: crmModalIn 0.25s ease forwards;
}

.crm-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.crm-icon-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
}

.crm-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.crm-field-full {
    grid-column: 1 / -1;
}

.crm-field span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.crm-field input,
.crm-field select,
.crm-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.crm-field input,
.crm-field select {
    min-height: 50px;
}

.crm-field textarea {
    resize: vertical;
    min-height: 110px;
}

.crm-field input::placeholder,
.crm-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.crm-field select {
    color-scheme: dark;
}

.crm-field input:focus,
.crm-field select:focus,
.crm-field textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12), 0 0 24px rgba(255, 106, 0, 0.18);
}

.crm-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.crm-cancel-button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
}

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

@keyframes crmModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 760px) {
    .crm-shell {
        width: min(100% - 24px, 1180px);
        padding: 24px 0;
    }

    .crm-header,
    .crm-panel {
        border-radius: 18px;
        padding: 22px;
    }

    .crm-header {
        align-items: stretch;
        flex-direction: column;
    }

    .crm-add-button {
        width: 100%;
    }

    .crm-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .crm-modal-card {
        width: 100%;
        max-height: 92vh;
        border-radius: 20px;
        padding: 22px;
    }

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

    .crm-form-actions {
        flex-direction: column;
    }

    .crm-submit-button,
    .crm-cancel-button {
        width: 100%;
    }
}

body.package-modal-open {
    overflow: hidden;
}

.package-admin-main {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 7rem;
}

.package-admin-hero,
.package-admin-surface,
.package-admin-modal-dialog {
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.92), rgba(15, 15, 15, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.package-admin-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 22px;
}

.package-admin-hero h1 {
    margin: 0.4rem 0 0.55rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    color: #fff;
}

.package-admin-hero p,
.package-admin-surface-head p,
.package-admin-work-card p,
.package-admin-overview-card span,
.package-admin-save-message,
.package-admin-service-row span,
.package-admin-search span,
.package-admin-section-kicker {
    color: rgba(245, 241, 235, 0.72);
}

.package-admin-hero-actions,
.package-admin-toolbar,
.package-admin-sticky-actions,
.package-admin-modal-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.package-admin-primary-btn,
.package-admin-secondary-btn,
.package-admin-tab,
.package-admin-icon-btn,
.package-admin-card-toggle,
.package-admin-advanced-toggle {
    font-family: 'Montserrat', sans-serif;
}

.package-admin-primary-btn,
.package-admin-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.package-admin-primary-btn {
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: #fff;
    box-shadow: 0 16px 30px rgba(255, 106, 0, 0.22);
}

.package-admin-primary-btn.small,
.package-admin-secondary-btn {
    min-height: 42px;
    padding: 0.75rem 1rem;
}

.package-admin-secondary-btn {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.package-admin-primary-btn:hover,
.package-admin-secondary-btn:hover,
.package-admin-icon-btn:hover,
.package-admin-tab:hover {
    transform: translateY(-1px);
}

.package-admin-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.package-admin-tab {
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 241, 235, 0.8);
    cursor: pointer;
    text-align: left;
}

.package-admin-tab.is-active {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 140, 0, 0.12));
    border-color: rgba(255, 140, 0, 0.24);
    color: #fff;
}

.package-admin-panel {
    display: none;
}

.package-admin-panel.is-active {
    display: block;
    animation: packagePanelFade 0.25s ease;
}

.package-admin-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.package-admin-surface {
    border-radius: 20px;
    padding: 1.2rem;
}

.package-admin-surface-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-admin-surface-head h2,
.package-admin-work-card h4,
.package-admin-service-card h4 {
    margin: 0;
    color: #fff;
}

.package-admin-overview-grid,
.package-admin-services-grid,
.package-admin-work-grid {
    display: grid;
    gap: 0.9rem;
}

.package-admin-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-admin-overview-card,
.package-admin-stat,
.package-admin-work-card,
.package-admin-service-card,
.package-admin-section,
.package-admin-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.package-admin-overview-card,
.package-admin-work-card,
.package-admin-service-card {
    padding: 1rem;
}

.package-admin-overview-card strong,
.package-admin-stat strong,
.package-admin-service-row strong,
.package-admin-card-toggle strong {
    display: block;
    color: #fff;
}

.package-admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.package-admin-stat {
    padding: 1rem;
}

.package-admin-stat strong {
    margin-top: 0.35rem;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.package-admin-search {
    display: grid;
    gap: 0.4rem;
    min-width: 240px;
}

.package-admin-search input,
.package-admin-field input,
.package-admin-field textarea,
.package-admin-field select {
    width: 100%;
    min-height: 42px;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.package-admin-search input:focus,
.package-admin-field input:focus,
.package-admin-field textarea:focus,
.package-admin-field select:focus {
    outline: none;
    border-color: rgba(255, 140, 0, 0.42);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.package-admin-search input::placeholder,
.package-admin-field input::placeholder,
.package-admin-field textarea::placeholder {
    color: rgba(245, 241, 235, 0.34);
}

.package-admin-sections {
    display: grid;
    gap: 1rem;
}

.package-admin-section {
    padding: 1rem;
}

.package-admin-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.package-admin-section-head h3 {
    margin: 0.15rem 0 0;
    color: #fff;
}

.package-admin-section-badge {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.12);
    color: #ff9c42;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-admin-accordion-list {
    display: grid;
    gap: 0.8rem;
}

.package-admin-card {
    overflow: hidden;
}

.package-admin-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.85rem 1rem;
}

.package-admin-card-toggle {
    display: grid;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.package-admin-card-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.14);
    color: #ff9c42;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-admin-card-toggle small {
    color: rgba(245, 241, 235, 0.58);
}

.package-admin-card-price-preview {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.package-admin-card-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.package-admin-icon-btn {
    min-height: 36px;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
}

.package-admin-icon-btn.danger {
    color: #ffb8a0;
}

.package-admin-card-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
    opacity: 0;
    padding: 0 1rem;
}

.package-admin-card-panel.is-open {
    max-height: 460px;
    opacity: 1;
    padding: 0 1rem 1rem;
}

.package-admin-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.package-admin-field {
    display: grid;
    gap: 0.4rem;
}

.package-admin-field span {
    color: rgba(245, 241, 235, 0.72);
    font-size: 0.92rem;
}

.package-admin-field-full {
    grid-column: 1 / -1;
}

.package-admin-checkbox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 1.8rem;
}

.package-admin-checkbox input {
    width: auto;
    min-height: auto;
}

.package-admin-advanced-toggle {
    margin-top: 0.85rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #ff9c42;
    cursor: pointer;
}

.package-admin-advanced-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
    margin-top: 0;
}

.package-admin-advanced-panel.is-open {
    max-height: 260px;
    opacity: 1;
    margin-top: 0.85rem;
}

.package-admin-error {
    min-height: 16px;
    color: #ffb8a0;
    font-size: 0.8rem;
}

.package-admin-field .is-invalid {
    border-color: rgba(255, 120, 120, 0.5);
}

.package-admin-service-card {
    display: grid;
    gap: 0.85rem;
}

.package-admin-service-row {
    display: grid;
    gap: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.package-admin-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-admin-work-card {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.package-admin-sticky-bar {
    position: fixed;
    left: calc(280px + 2rem);
    right: 2rem;
    bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 11, 11, 0.92);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    z-index: 30;
}

.package-admin-save-message {
    margin: 0;
}

.package-admin-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.66);
    z-index: 50;
    animation: packageModalFade 0.2s ease;
}

.package-admin-modal[hidden] {
    display: none !important;
}

.package-admin-modal-dialog {
    width: min(720px, 100%);
    padding: 1.3rem;
    border-radius: 22px;
}

.package-admin-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-admin-modal-head h2 {
    margin: 0.35rem 0 0;
    color: #fff;
}

.package-admin-modal-form {
    display: grid;
    gap: 1rem;
}

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

@keyframes packageModalFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .package-admin-tabs,
    .package-admin-panel-grid,
    .package-admin-stat-grid,
    .package-admin-work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .package-admin-sticky-bar {
        left: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .package-admin-hero,
    .package-admin-surface-head,
    .package-admin-card-head,
    .package-admin-work-card,
    .package-admin-sticky-bar {
        flex-direction: column;
        align-items: stretch;
        display: flex;
    }

    .package-admin-tabs,
    .package-admin-panel-grid,
    .package-admin-overview-grid,
    .package-admin-stat-grid,
    .package-admin-card-grid,
    .package-admin-work-grid {
        grid-template-columns: 1fr;
    }

    .package-admin-toolbar,
    .package-admin-sticky-actions {
        width: 100%;
    }

    .package-admin-search {
        min-width: 0;
    }

    .package-admin-sticky-bar {
        bottom: 0.75rem;
    }
}

.package-quick-main {
    display: grid;
    gap: 1rem;
    padding-bottom: 6.5rem;
}

.package-quick-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.package-quick-preview,
.package-quick-primary,
.package-quick-secondary,
.package-quick-save-card,
.package-quick-stepper {
    font-family: 'Montserrat', sans-serif;
}

.package-quick-preview,
.package-quick-primary,
.package-quick-secondary,
.package-quick-save-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.package-quick-preview,
.package-quick-secondary,
.package-quick-save-card {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.package-quick-primary {
    background: linear-gradient(135deg, #ff6a00, #ff8c00);
    color: #fff;
    box-shadow: 0 14px 26px rgba(255, 106, 0, 0.2);
}

.package-quick-preview:hover,
.package-quick-primary:hover,
.package-quick-secondary:hover,
.package-quick-save-card:hover,
.package-quick-card:hover {
    transform: translateY(-2px);
}

.package-quick-form {
    display: grid;
    gap: 1rem;
}

.package-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.package-quick-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.15rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(12, 12, 12, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.package-quick-card.is-dirty,
.package-quick-row.is-dirty .package-quick-price-input {
    border-color: rgba(255, 106, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.08);
}

.package-quick-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

.package-quick-kicker {
    display: inline-block;
    margin-bottom: 0.25rem;
    color: #ff8c42;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.package-quick-card-head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.package-quick-inputs {
    display: grid;
    gap: 0.8rem;
}

.package-quick-row {
    display: grid;
    gap: 0.55rem;
    padding: 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.package-quick-row-head strong {
    color: #fff;
    font-size: 0.98rem;
}

.package-quick-price-wrap {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 0.55rem;
    align-items: center;
}

.package-quick-price-input {
    width: 100%;
    min-height: 42px;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    text-align: left;
}

.package-quick-price-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.package-quick-price-input:focus {
    outline: none;
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.package-quick-price-input.is-custom {
    color: #ffb066;
}

.package-quick-stepper {
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
}

.package-quick-stepper:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.package-quick-custom-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.package-quick-sticky {
    position: fixed;
    left: calc(280px + 2rem);
    right: 2rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: rgba(11, 11, 11, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    z-index: 20;
}

.package-quick-message {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.package-quick-sticky-actions {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 1100px) {
    .package-quick-grid {
        grid-template-columns: 1fr;
    }

    .package-quick-sticky {
        left: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .package-quick-header,
    .package-quick-sticky {
        flex-direction: column;
        align-items: stretch;
    }
}
