/* ============================================
   VIVID AUTO DETAILS - OPTION 3
   Minimalist Centered Logo Navbar
   Elegant Typography & Scroll Animations
   ============================================ */

/* CSS Variables */
:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: rgba(220, 38, 38, 0.1);
    --black: #0f0f0f;
    --black-soft: #161616;
    --gray-900: #1a1a1a;
    --gray-800: #262626;
    --gray-700: #333333;
    --gray-600: #4a4a4a;
    --gray-400: #9a9a9a;
    --gray-300: #b3b3b3;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.9);
    --white-muted: rgba(255, 255, 255, 0.6);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   CURTAIN REVEAL ANIMATION
   ============================================ */
.curtain-reveal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
}

.curtain-left,
.curtain-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--black);
    transition: transform 1s var(--ease-in-out) 1.8s;
}

.curtain-left {
    left: 0;
}

.curtain-right {
    right: 0;
}

.curtain-reveal.open .curtain-left {
    transform: translateX(-100%);
}

.curtain-reveal.open .curtain-right {
    transform: translateX(100%);
}

.curtain-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease 1.5s;
}

.curtain-reveal.open .curtain-logo {
    opacity: 0;
}

.curtain-logo img {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    animation: logoSpin 1.5s var(--ease-out) forwards;
}

@keyframes logoSpin {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.curtain-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.8s;
}

.brand-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--gray-400);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 1s;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--red);
}

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

.nav-link.cta-link {
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.nav-link.cta-link:hover {
    background: var(--red);
    color: var(--white);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0 2rem;
}

.nav-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out);
}

.nav-center:hover .nav-logo {
    transform: rotate(360deg);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 6px);
}

.mobile-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--red);
}

.mobile-cta {
    color: var(--red) !important;
    border: 2px solid var(--red);
    padding: 0.8rem 2rem;
    margin-top: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(
        to right,
        rgba(15, 15, 15, 0.9) 0%,
        rgba(15, 15, 15, 0.4) 60%,
        rgba(15, 15, 15, 0.6) 100%
    );
}

.hero-media {
    position: absolute;
    inset: 0;
    background: var(--black);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    display: block;
    position: absolute;
    inset: 0;
}

/* Desktop video visible by default, mobile hidden */
.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    display: none;
    position: absolute;
    inset: 0;
}

/* Desktop image hidden by default, mobile image always hidden on desktop */
.hero-img-desktop {
    display: none;
}

.hero-img-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
    padding-top: 5rem;
}

.hero-content {
    max-width: 650px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--red-light);
    border-radius: 4px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white-muted);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-600);
    transition: background 0.3s ease;
}

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

.btn-text:hover::after {
    background: var(--white);
}

/* Hero Card */
.hero-visual {
    display: flex;
    align-items: flex-end;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.card-label {
    font-size: 0.85rem;
    color: var(--white-muted);
}

/* Hero Bottom */
.hero-bottom {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.scroll-prompt span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white-muted);
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
}

.scroll-arrow svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 7rem 0;
}

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

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--black-soft);
}

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

.service-card {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 2;
}

.service-media {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-media img {
    transform: scale(1.08);
}

.service-body {
    padding: 2rem;
    position: relative;
}

.service-num {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.service-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.service-body p {
    color: var(--white-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-price {
    font-weight: 700;
    color: var(--red);
}

.service-cta {
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: var(--red);
    letter-spacing: 0.05em;
}

/* Services More */
.services-more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.more-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.5rem;
    background: var(--gray-900);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.more-item:hover {
    background: var(--gray-800);
    transform: translateY(-3px);
}

.more-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.more-item p {
    font-size: 0.85rem;
    color: var(--white-muted);
}

.more-item span {
    font-weight: 700;
    color: var(--red);
    margin-top: 0.5rem;
}

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

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

.about-media {
    position: relative;
}

.media-frame {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.media-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.media-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--red);
    border-radius: 16px;
    z-index: 1;
}

.media-stats {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--red);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    z-index: 3;
}

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

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-text {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--white-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-list {
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.list-icon {
    width: 24px;
    height: 24px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    background: var(--black-soft);
}

.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-caption span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-intro {
    color: var(--white-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--gray-900);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: var(--gray-800);
    transform: translateX(8px);
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    margin-bottom: 0.2rem;
}

.detail-value {
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--gray-900);
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    padding-top: 1.5rem;
    background: var(--gray-800);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

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

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Override for checkbox group - labels need to be clickable */
.form-group > label:first-child {
    position: static;
    pointer-events: auto;
    margin-bottom: 0.5rem;
    display: block;
}

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

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0.5rem;
    font-size: 0.7rem;
    color: var(--red);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: var(--red);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Checkbox Group Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-group .checkbox-item,
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-800);
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    pointer-events: auto !important;
    position: relative;
}

.form-group .checkbox-item:hover,
.checkbox-item:hover {
    background: var(--gray-700);
    border-color: var(--red);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-400);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--red);
    border-color: var(--red);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-text {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: normal;
}

@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .checkbox-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .checkbox-custom {
        width: 18px;
        height: 18px;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    padding: 5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand p {
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--gray-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--white-muted);
    stroke-width: 2;
}

.footer-social a:hover {
    background: var(--red);
}

.footer-social a:hover svg {
    stroke: var(--white);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--white-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-links .hours li {
    color: var(--white-muted);
    font-size: 0.95rem;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

.reveal-text.visible,
.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .gallery-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-more {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .media-accent {
        display: none;
    }
    
    .media-stats {
        left: 1rem;
        bottom: 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .nav-center {
        padding: 0;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Enhance mobile hero visibility */
    .hero {
        background: transparent;
    }
    
    /* Hide ALL videos on mobile - use image only for faster loading */
    .hero-video-desktop,
    .hero-video-mobile {
        display: none !important;
    }
    
    /* Show mobile-optimized hero image (46KB vs 274KB) */
    .hero-img-desktop {
        display: none !important;
    }
    
    .hero-img-mobile {
        display: block !important;
        filter: brightness(0.55);
        z-index: 0;
    }
    
    /* Add overlay gradient for better text readability while keeping image visible */
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.6) 100%
        );
        z-index: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-center img {
        width: 35px;
        height: 35px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-tag {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .curtain-text {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .contact-form-box {
        padding: 2rem 1.5rem;
    }
}

/* iPad/Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
}

/* ============================================
   OPTION 1 STYLE SERVICES SECTION
   ============================================ */
.services {
    background: var(--black-soft);
    padding: 7rem 0;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1rem;
}

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

.service-card {
    background: var(--gray-900);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--gray-900) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: var(--red);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease-out);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--red);
}

.service-card:hover .service-icon {
    background: var(--red);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
}

/* ============================================
   OPTION 4 STYLE ABOUT SECTION
   ============================================ */
.about {
    background: var(--black);
    padding: 7rem 0;
}

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

.about-left .section-label {
    display: block;
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--red);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-muted);
    margin-top: 0.5rem;
    display: block;
}

.about-right {
    position: relative;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--red);
    border-radius: 12px;
    z-index: -1;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature span:last-child {
    font-size: 0.9rem;
}

/* ============================================
   MEGA NAVIGATION (OPTION 4 STYLE)
   ============================================ */
.mega-nav {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    visibility: hidden;
}

.mega-nav.active {
    pointer-events: all;
    visibility: visible;
}

/* Animated Background Slices */
.nav-background {
    position: absolute;
    inset: 0;
    display: flex;
}

.nav-bg-slice {
    flex: 1;
    background: var(--black-soft);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s var(--ease-in-out);
}

.mega-nav.active .nav-bg-slice {
    transform: scaleY(1);
}

.nav-bg-slice:nth-child(1) { transition-delay: 0s; }
.nav-bg-slice:nth-child(2) { transition-delay: 0.1s; }
.nav-bg-slice:nth-child(3) { transition-delay: 0.2s; }
.nav-bg-slice:nth-child(4) { transition-delay: 0.3s; }

.mega-nav.closing .nav-bg-slice {
    transform: scaleY(0);
    transform-origin: bottom;
}

.mega-nav.closing .nav-bg-slice:nth-child(1) { transition-delay: 0.3s; }
.mega-nav.closing .nav-bg-slice:nth-child(2) { transition-delay: 0.2s; }
.mega-nav.closing .nav-bg-slice:nth-child(3) { transition-delay: 0.1s; }
.mega-nav.closing .nav-bg-slice:nth-child(4) { transition-delay: 0s; }

/* Navigation Content */
.nav-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
}

.mega-nav.active .nav-content {
    opacity: 1;
}

.mega-nav.closing .nav-content {
    opacity: 0;
    transition-delay: 0s;
}

/* Navigation Links - Big Typography */
.mega-nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.mega-nav-item {
    overflow: hidden;
    position: relative;
}

.mega-nav-item::before {
    content: attr(data-index);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-nav-item:hover::before {
    opacity: 1;
}

.mega-nav-link {
    display: block;
    padding: 0.5rem 0 0.5rem 3rem;
    position: relative;
}

.mega-nav-link .link-text {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    display: block;
    transition: transform 0.4s var(--ease-out), color 0.3s ease;
    position: relative;
    z-index: 2;
}

.mega-nav-link .link-bg {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    position: absolute;
    left: 3rem;
    top: 0.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(220, 38, 38, 0.3);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    z-index: 1;
}

.mega-nav-link:hover .link-text {
    transform: translateX(20px);
    color: var(--red);
}

.mega-nav-link:hover .link-bg {
    transform: translateX(40px);
}

/* Nav Footer */
.mega-nav .nav-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-info {
    display: flex;
    gap: 4rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
}

.info-value {
    font-weight: 500;
}

.nav-social {
    display: flex;
    gap: 2rem;
}

.nav-social a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--red);
}

/* Menu Trigger Button */
.menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9501;
    padding: 0.5rem;
    position: absolute;
    left: 2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.menu-trigger:hover {
    opacity: 1;
}

.trigger-box {
    width: 24px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trigger-line {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.menu-trigger.active .trigger-line:first-child {
    transform: rotate(45deg) translateY(4px);
}

.menu-trigger.active .trigger-line:last-child {
    transform: rotate(-45deg) translateY(-4px);
}

.menu-trigger:hover .trigger-line {
    background: var(--red);
}

/* Mega Nav Close Button */
.mega-nav-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 0.4s var(--ease-out);
}

.mega-nav.active .mega-nav-close {
    opacity: 1;
    transform: rotate(0deg);
    transition-delay: 0.5s;
}

.mega-nav-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    transition: all 0.3s ease;
}

.mega-nav-close:hover {
    background: var(--red);
    border-color: var(--red);
}

.mega-nav-close:hover svg {
    stroke: var(--white);
    transform: rotate(90deg);
}

/* Scroll Indicator Hide on Scroll */
.hero-bottom {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-bottom.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    pointer-events: none;
}

/* ============================================
   PAGE HERO (For Sub Pages)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

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

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.9));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 1rem 0;
}

.page-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--white-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Solid (For Sub Pages) */
.header-solid {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
    padding: 5rem 0;
    background: var(--black);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-muted);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

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

.gallery-full-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-full-item:hover .gallery-item-overlay {
    opacity: 1;
}

.item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.gallery-item-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-item-overlay p {
    font-size: 0.9rem;
    color: var(--white-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: var(--black-soft);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.cta-content p {
    color: var(--white-muted);
    margin-bottom: 2rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page {
    padding: 5rem 0;
    background: var(--black);
}

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

.blog-card {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.blog-card.featured .blog-card-image img {
    height: 100%;
    min-height: 350px;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.blog-date,
.blog-read {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.blog-card-content h2,
.blog-card-content h3 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-content h2 {
    font-size: 1.5rem;
}

.blog-card-content h3 {
    font-size: 1.2rem;
}

.blog-card-content p {
    color: var(--white-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-link {
    font-weight: 600;
    color: var(--red);
    transition: letter-spacing 0.3s ease;
}

.blog-link:hover {
    letter-spacing: 0.05em;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-muted);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.pagination-btn.next {
    padding: 0.8rem 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: var(--black-soft);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.newsletter-content h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.newsletter-content p {
    color: var(--white-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page {
    padding: 5rem 0;
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

.faq-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white-muted);
}

.faq-categories {
    list-style: none;
}

.faq-categories li {
    margin-bottom: 0.5rem;
}

.faq-categories a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--white-muted);
    transition: all 0.3s ease;
}

.faq-categories a:hover,
.faq-categories a.active {
    background: var(--gray-900);
    color: var(--white);
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray-900);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--white-muted);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE UPDATES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-card.featured {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-sidebar {
        order: -1;
    }
    
    .faq-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .faq-categories li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .menu-trigger {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .features-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature {
        justify-content: center;
    }
    
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .mega-nav-link .link-text,
    .mega-nav-link .link-bg {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .mega-nav-link {
        padding-left: 2rem;
    }
    
    .mega-nav-link .link-bg {
        left: 2rem;
    }
    
    .nav-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 40vh;
        padding-top: 80px;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
}

/* ============================================
   ADDITIONAL STYLES - Team & Contact CTA
   ============================================ */

/* Team List in About Section */
.about-team {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.about-team h4 {
    font-size: 1rem;
    color: var(--red);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-list li {
    padding: 0.5rem 0;
    color: var(--gray-300);
    border-bottom: 1px solid var(--gray-800);
}

.team-list li:last-child {
    border-bottom: none;
}

.team-list li strong {
    color: var(--white);
}

/* Service Card Links */
.service-link {
    display: inline-block;
    color: var(--red);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Contact CTA Section */
.contact-cta-wrap {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.contact-cta-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta-wrap > p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.contact-hours h4 {
    font-size: 0.9rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.contact-hours p {
    color: var(--gray-400);
    margin: 0.25rem 0;
}
/* ============================================
   INSTAGRAM FEED STYLES
   ============================================ */

.instagram-link {
    color: var(--red);
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--white);
}

.instagram-feed {
    margin: 2rem 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}

.instagram-feed iframe,
.instagram-feed-large iframe {
    min-height: 600px;
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

.instagram-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.instagram-cta svg {
    width: 20px;
    height: 20px;
}

/* Gallery Page Instagram Section */
.instagram-section {
    padding: 2rem 0;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-900);
    border-radius: 16px;
    border: 1px solid var(--gray-800);
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.instagram-profile:hover {
    color: var(--red);
}

.instagram-profile .instagram-icon {
    width: 32px;
    height: 32px;
    stroke: var(--red);
}

.instagram-feed-large {
    background: var(--gray-900);
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
    border: 1px solid var(--gray-800);
}

.instagram-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray-400);
    font-size: 1rem;
}

/* Instagram Placeholder Styles */
.instagram-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-radius: 16px;
}

.instagram-placeholder.large {
    min-height: 500px;
}

.instagram-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.instagram-placeholder-content:hover {
    transform: scale(1.02);
}

.instagram-large-icon {
    width: 80px;
    height: 80px;
    stroke: var(--red);
    opacity: 0.8;
}

.instagram-handle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.instagram-cta-text {
    font-size: 1rem;
    color: var(--gray-400);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--gray-700);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.instagram-placeholder-content:hover .instagram-cta-text {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

@media (max-width: 768px) {
    .instagram-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .instagram-feed iframe,
    .instagram-feed-large iframe {
        min-height: 400px;
    }
    
    .instagram-placeholder {
        min-height: 250px;
    }
    
    .instagram-placeholder.large {
        min-height: 350px;
    }
    
    .instagram-large-icon {
        width: 60px;
        height: 60px;
    }
    
    .instagram-handle {
        font-size: 1.25rem;
    }
}

/* ============================================
   PHOTOSHOOT GALLERY STYLES
   ============================================ */

.photoshoot-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--gray-800);
}

.photoshoot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photoshoot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photoshoot-item:hover {
    transform: scale(1.02);
}

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

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

@media (max-width: 768px) {
    .photoshoot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .photoshoot-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */

.blog-post-hero {
    min-height: 60vh;
}

.blog-post-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.blog-post-content {
    padding: 5rem 0;
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

.blog-post-body {
    max-width: 800px;
}

.blog-post-body .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--white-soft);
    margin-bottom: 2rem;
}

.blog-post-body h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-post-body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.blog-post-body p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-body li {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.blog-post-body li::marker {
    color: var(--red);
}

.pro-tip {
    background: var(--red-light);
    border-left: 4px solid var(--red);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.pro-tip strong {
    color: var(--red);
}

.blog-cta {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: var(--gray-900);
    border-radius: 16px;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

/* Blog Sidebar */
.blog-post-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-800);
}

.sidebar-widget p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 0.75rem;
}

.related-posts a {
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: var(--red);
}

/* Back to Blog */
.back-to-blog {
    padding: 2rem 0 5rem;
}

.back-link {
    color: var(--red);
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .blog-post-content .container {
        grid-template-columns: 1fr;
    }
    
    .blog-post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-post-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-sidebar {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE FIXES
   All styles below only affect mobile devices
   ============================================ */

/* Mobile Base Fixes - 768px and below */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Container padding adjustments */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Header/Navigation Mobile Fixes */
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .nav-center {
        padding: 0 0.5rem;
    }
    
    .nav-logo {
        width: 38px;
        height: 38px;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    /* Mobile Menu Improvements */
    .mobile-menu {
        display: block;
        padding: 80px 1rem 2rem;
        overflow-y: auto;
    }
    
    .mobile-menu ul {
        gap: 1.5rem;
    }
    
    .mobile-menu a {
        font-size: 1.3rem;
    }
    
    .mobile-cta {
        padding: 0.7rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100svh;
        padding-top: 70px;
    }
    
    .hero-container {
        padding: 0 1rem;
        padding-top: 2rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.7;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-text {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-bottom {
        display: none;
    }
    
    /* Section Spacing Mobile */
    section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-card {
        border-radius: 12px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .services-more {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 2rem;
    }
    
    .more-item {
        padding: 1.25rem;
    }
    
    .more-item h4 {
        font-size: 1rem;
    }
    
    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-right {
        order: 2;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-image {
        max-height: 300px;
    }
    
    .about-image img {
        border-radius: 12px;
    }
    
    .about-team {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    .about-team h4 {
        font-size: 0.85rem;
    }
    
    .team-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .features-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        background: var(--gray-900);
        border-radius: 8px;
    }
    
    .feature-icon {
        font-size: 1rem;
    }
    
    .feature span:last-child {
        font-size: 0.9rem;
    }
    
    /* Gallery/Instagram Section Mobile */
    .gallery {
        padding: 3rem 0;
    }
    
    .instagram-feed {
        border-radius: 12px;
        min-height: 350px;
    }
    
    .instagram-cta {
        margin-top: 1.5rem;
    }
    
    .instagram-cta .btn-secondary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Contact Section Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-intro {
        font-size: 0.95rem;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .detail-icon {
        margin: 0 auto;
    }
    
    .detail-value {
        font-size: 0.95rem;
        word-break: break-word;
    }
    
    .contact-cta-wrap {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .contact-cta-wrap h3 {
        font-size: 1.25rem;
    }
    
    .contact-cta-wrap > p {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-hours {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-hours h4 {
        font-size: 0.8rem;
    }
    
    .contact-hours p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-links h4 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a,
    .footer-links .hours li {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Page Hero (Gallery, Blog, FAQs pages) Mobile */
    .page-hero {
        min-height: 35vh;
        padding-top: 70px;
    }
    
    .page-hero-content {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Gallery Page Mobile */
    .instagram-section {
        padding: 1rem 0;
    }
    
    .instagram-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .instagram-profile {
        font-size: 1rem;
    }
    
    .instagram-profile .instagram-icon {
        width: 24px;
        height: 24px;
    }
    
    .instagram-feed-large {
        min-height: 400px;
        border-radius: 12px;
    }
    
    .instagram-note {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
    
    .photoshoot-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .photoshoot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .photoshoot-item {
        border-radius: 8px;
    }
    
    /* Blog Page Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-content h2,
    .blog-card-content h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .blog-card-content p {
        font-size: 0.9rem;
    }
    
    .blog-meta {
        font-size: 0.75rem;
    }
    
    .blog-category {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Blog Post Page Mobile */
    .blog-post-hero {
        min-height: 45vh;
    }
    
    .blog-post-content {
        padding: 2.5rem 0;
    }
    
    .blog-post-body .lead {
        font-size: 1.05rem;
    }
    
    .blog-post-body h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.1rem;
    }
    
    .blog-post-body p,
    .blog-post-body li {
        font-size: 0.95rem;
    }
    
    .pro-tip {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .blog-cta {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .disclaimer {
        font-size: 0.8rem;
    }
    
    /* FAQs Page Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-sidebar {
        order: -1;
    }
    
    .faq-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .faq-categories li {
        margin-bottom: 0;
    }
    
    .faq-category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-question svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Newsletter/Coming Soon Section Mobile */
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    /* Mega Nav Mobile */
    .mega-nav {
        padding: 1rem;
    }
    
    .mega-nav-links {
        gap: 1rem;
    }
    
    .mega-nav-link {
        padding-left: 1rem;
    }
    
    .mega-nav-link .link-text,
    .mega-nav-link .link-bg {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .mega-nav-link .link-bg {
        left: 1rem;
    }
    
    .nav-footer {
        padding: 1rem;
    }
    
    .nav-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-social {
        justify-content: center;
    }
    
    /* Buttons Mobile */
    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Service Link on cards */
    .service-link {
        font-size: 0.85rem;
    }
}

/* Extra Small Phones - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    /* Hero adjustments for small phones */
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .hero-label {
        font-size: 0.65rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    }
    
    /* Smaller padding for sections */
    section {
        padding: 2.5rem 0;
    }
    
    /* Services cards smaller */
    .service-card {
        padding: 0;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Features more compact */
    .feature {
        padding: 0.6rem 0.8rem;
    }
    
    /* Footer even more compact */
    .footer-top {
        gap: 1.5rem;
    }
    
    /* Gallery grid 2 columns on very small screens */
    .photoshoot-grid {
        gap: 0.5rem;
    }
    
    .photoshoot-item {
        border-radius: 6px;
    }
    
    /* Blog cards */
    .blog-card-image {
        height: 150px;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    /* Page titles smaller */
    .page-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    
    /* Contact details */
    .detail-value {
        font-size: 0.9rem;
    }
    
    /* CTA wrap */
    .contact-cta-wrap {
        padding: 1.5rem 1rem;
    }
    
    /* FAQ items */
    .faq-question {
        padding: 0.9rem;
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    /* Instagram placeholder */
    .instagram-placeholder {
        min-height: 200px;
    }
    
    .instagram-large-icon {
        width: 50px;
        height: 50px;
    }
    
    .instagram-handle {
        font-size: 1rem;
    }
    
    .instagram-cta-text {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .mobile-menu {
        min-height: -webkit-fill-available;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link, .footer-links a, .mobile-menu a {
        padding: 0.5rem;
    }
}
/* ============================================
   MOBILE-FIRST IMPROVEMENTS & NEW SECTIONS
   ============================================ */

/* Fix Loading Animation on Mobile */
.curtain-reveal {
    will-change: transform, opacity;
}

/* Make reveal animations work immediately on mobile */
@media (max-width: 768px) {
    .reveal-text,
    .reveal-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }
    
    .reveal-text.visible,
    .reveal-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   IMPROVED MOBILE MENU
   ============================================ */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu {
        display: block !important;
        position: fixed;
        inset: 0;
        background: var(--black);
        z-index: 999;
        padding: 100px 1.5rem 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
    }
    
    .mobile-menu li {
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu a {
        display: block;
        font-size: 1.25rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 1rem;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .mobile-menu a:hover,
    .mobile-menu a:focus {
        color: var(--red);
        background: rgba(220, 38, 38, 0.1);
    }
    
    .mobile-cta {
        color: var(--white) !important;
        background: var(--red) !important;
        margin-top: 1rem !important;
    }
    
    .mobile-cta:hover {
        background: var(--red-dark) !important;
    }
    
    /* Hide desktop nav elements */
    .nav-left,
    .nav-right,
    .menu-trigger {
        display: none !important;
    }
    
    .nav-center {
        flex: 1;
        justify-content: flex-start;
        padding: 0;
    }
    
    .nav {
        justify-content: space-between;
    }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 5rem 0;
    background: var(--black-soft);
}

.reviews-wrapper {
    margin-top: 3rem;
}

.google-reviews-embed {
    width: 100%;
}

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

.review-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gray-700);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-logo {
    height: 18px;
    width: auto;
    opacity: 0.7;
}

.review-text {
    color: var(--white-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-800);
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Reviews Mobile */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.services-hero {
    min-height: 50vh;
}

.services-detail-section {
    padding: 4rem 0;
    background: var(--black);
}

.service-detail-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover {
    border-color: var(--gray-700);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-detail-card.featured {
    background: linear-gradient(135deg, var(--gray-900) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: var(--red);
}

.service-detail-card .featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.service-detail-content {
    max-width: 800px;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--red-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--red);
}

.service-detail-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-intro {
    font-size: 1.1rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--red);
}

.service-detail-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--white-soft);
    font-size: 0.95rem;
}

.service-detail-features li::before {
    content: '';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

.service-detail-note {
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--red);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--white-soft);
}

.service-detail-cta {
    margin-top: 2rem;
}

/* Services Page Mobile */
@media (max-width: 768px) {
    .services-detail-section {
        padding: 2rem 0;
    }
    
    .service-detail-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-detail-card h2 {
        font-size: 1.35rem;
    }
    
    .service-detail-intro {
        font-size: 1rem;
    }
    
    .service-detail-features ul {
        grid-template-columns: 1fr;
    }
    
    .service-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-detail-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   QUOTE FORM STYLES
   ============================================ */
.quote-section {
    padding: 5rem 0;
    background: var(--black-soft);
}

.quote-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 2.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--red);
}

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

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--white-soft);
}

.btn-submit {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Quote Form Mobile */
@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-form-wrapper {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--white-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================================
   ADDITIONAL MOBILE IMPROVEMENTS
   ============================================ */

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-container {
        padding: 0 1rem;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-text {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-bottom {
        display: none;
    }
    
    /* Services cards stack nicely */
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* About section */
    .about-layout {
        gap: 2rem;
    }
    
    .about-lead {
        font-size: 1rem;
    }
    
    .about-team {
        padding: 1.25rem;
    }
    
    /* Contact section */
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-cta-wrap {
        padding: 1.5rem;
    }
    
    /* Footer improvements */
    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

/* Smooth scroll behavior fix */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .service-link,
    .nav-link,
    .mobile-menu a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }
}

/* Page hero mobile styles */
@media (max-width: 768px) {
    .page-hero {
        min-height: 45vh;
        padding-top: 80px;
    }
    
    .page-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    .page-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   ENHANCED MOBILE MENU STYLES
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, var(--black) 0%, var(--gray-900) 100%);
        z-index: 9998;
        padding: 100px 1.5rem 3rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .mobile-menu li {
        width: 100%;
    }
    
    .mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 1rem;
        color: var(--white);
        transition: all 0.3s ease;
        border-radius: 10px;
        min-height: 56px;
    }
    
    .mobile-menu a:hover,
    .mobile-menu a:active,
    .mobile-menu a.active {
        color: var(--red);
        background: rgba(220, 38, 38, 0.1);
    }
    
    .mobile-menu .mobile-cta {
        color: var(--white) !important;
        background: var(--red) !important;
        margin-top: 1rem;
        border-radius: 10px;
    }
    
    .mobile-menu .mobile-cta:hover,
    .mobile-menu .mobile-cta:active {
        background: var(--red-dark) !important;
    }
    
    /* Mobile toggle improvements */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px;
        z-index: 9999;
        position: relative;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .mobile-toggle.active span:first-child {
        transform: rotate(45deg) translate(4px, 6px);
    }
    
    .mobile-toggle.active span:last-child {
        transform: rotate(-45deg) translate(4px, -6px);
    }
    
    /* Hide desktop nav elements on mobile */
    .nav-left,
    .nav-right,
    .menu-trigger {
        display: none !important;
    }
}

/* ============================================
   ENHANCED GOOGLE REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 5rem 0;
    background: var(--black-soft);
}

.reviews-wrapper {
    margin-top: 2rem;
}

.google-reviews-embed {
    width: 100%;
}

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

.review-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.google-logo {
    height: 20px;
    width: auto;
    opacity: 0.6;
}

.review-text {
    color: var(--white-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-800);
}

.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.reviews-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-cta svg {
    width: 18px;
    height: 18px;
}

/* Reviews summary header */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-900);
    border-radius: 16px;
    border: 1px solid var(--gray-800);
}

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

.reviews-rating .rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.reviews-rating .rating-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 0.5rem 0;
}

.reviews-rating .rating-count {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* Reviews Mobile */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .reviews-rating .rating-number {
        font-size: 2.5rem;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ============================================
   SERVICE NAVIGATION SECTION
   ============================================ */
.service-nav-section {
    padding: 2rem 0;
    background: var(--black);
    border-bottom: 1px solid var(--gray-800);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.service-nav-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.service-nav-grid::-webkit-scrollbar {
    display: none;
}

.service-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 50px;
    color: var(--white-muted);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-nav-item:hover,
.service-nav-item:active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.service-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-nav-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .service-nav-section {
        padding: 1rem 0;
        top: 56px;
    }
    
    .service-nav-grid {
        padding: 0 1rem 0.5rem;
        gap: 0.5rem;
    }
    
    .service-nav-item {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-nav-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   ENHANCED SERVICE DETAIL CARDS
   ============================================ */
.service-detail-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover {
    border-color: var(--gray-700);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-detail-card.featured {
    background: linear-gradient(135deg, var(--gray-900) 0%, rgba(220, 38, 38, 0.08) 100%);
    border-color: var(--red);
}

.service-detail-card .featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 25px;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--red);
}

.service-detail-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.service-tagline {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.service-detail-intro {
    font-size: 1.05rem;
    color: var(--white-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail-features h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--red);
}

.service-detail-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-detail-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--white-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

.check-icon {
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

.service-detail-benefits {
    margin-top: 2rem;
}

.service-detail-benefits h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--red);
}

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

.benefit-item {
    background: var(--gray-800);
    border-radius: 12px;
    padding: 1.25rem;
}

.benefit-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.benefit-item p {
    color: var(--gray-400);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Process steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-800);
    border-radius: 12px;
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.process-step strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.process-step p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

/* Service levels */
.service-levels {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-level {
    padding: 1.25rem;
    background: var(--gray-800);
    border-radius: 12px;
    border-left: 3px solid var(--red);
}

.service-level h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-level p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.service-detail-note {
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--red);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    color: var(--white-soft);
    line-height: 1.6;
}

.service-detail-note strong {
    color: var(--red);
}

.service-detail-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Service detail mobile */
@media (max-width: 768px) {
    .service-detail-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
    
    .service-detail-card .featured-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-detail-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-detail-header h2 {
        font-size: 1.35rem;
    }
    
    .service-detail-intro {
        font-size: 0.95rem;
    }
    
    .service-detail-features ul {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .service-detail-cta {
        flex-direction: column;
    }
    
    .service-detail-cta .btn-primary,
    .service-detail-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BTN-SECONDARY STYLES
   ============================================ */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ============================================
   FINAL MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    /* Ensure body doesn't overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Make all elements visible immediately on mobile */
    .reveal-text,
    .reveal-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Hide curtain animation on mobile */
    .curtain-reveal {
        display: none !important;
    }
    
    /* Improve touch scrolling */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Page hidden state */
    .page-hidden * {
        animation-play-state: paused !important;
    }
}

/* No curtain class - for pages that shouldn't have intro animation */
body.no-curtain .curtain-reveal {
    display: none !important;
}

body.no-curtain .reveal-text,
body.no-curtain .reveal-card {
    opacity: 1;
    transform: none;
}
/* ============================================
   REDESIGNED CONTACT / QUOTE SECTION
   ============================================ */

.contact {
    background: var(--black);
    padding: 6rem 0;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-header .contact-intro {
    color: var(--gray-400);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: start;
}

/* Contact Info Card */
.contact-card {
    background: linear-gradient(145deg, var(--gray-900) 0%, var(--gray-900) 100%);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-card .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card .detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-800);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-card .detail-item:last-child {
    border-bottom: none;
}

.contact-card .detail-item:hover {
    background: transparent;
    transform: none;
}

.contact-card .detail-item:hover .detail-icon {
    background: var(--red);
}

.contact-card .detail-item:hover .detail-icon svg {
    stroke: var(--white);
}

.contact-card .detail-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card .detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    transition: all 0.3s ease;
}

.contact-card .detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-card .detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

.contact-card .detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.contact-card .contact-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
}

.contact-card .contact-hours h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.contact-card .hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Quote Form Styles */
.contact-form-wrap {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-form-wrap > p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form .form-group label {
    position: static;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
    color: var(--gray-500);
}

.quote-form .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='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.quote-form .form-group select option {
    background: var(--gray-900);
    color: var(--white);
}

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

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--red);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.btn-submit svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 0.5rem;
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 0.5s ease;
}

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

/* Animated Checkmark */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #22c55e;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: var(--gray-900);
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #22c55e;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(34, 197, 94, 0.5);
}

.check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: var(--gray-900);
}

@keyframes rotate-circle {
    0% { transform: rotate(-45deg); }
    5% { transform: rotate(-45deg); }
    12% { transform: rotate(-405deg); }
    100% { transform: rotate(-405deg); }
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.form-success .success-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.form-success .btn-secondary {
    display: inline-flex;
    margin-top: 0.5rem;
}

/* Contact Section Mobile Styles */
@media (max-width: 992px) {
    .contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-form-wrap {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
        text-align: left;
    }
    
    .contact-header .contact-intro {
        font-size: 1rem;
    }
    
    .contact .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-card .detail-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-card .detail-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-card .detail-value {
        font-size: 0.9rem;
    }
    
    .contact-form-wrap {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .contact-form-wrap h3 {
        font-size: 1.25rem;
    }
    
    .contact-form-wrap > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quote-form .form-group label {
        font-size: 0.8rem;
    }
    
    .quote-form .form-group input,
    .quote-form .form-group select,
    .quote-form .form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .form-note {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-card,
    .contact-form-wrap {
        padding: 1.25rem;
    }
    
    .contact-card .hours-grid {
        font-size: 0.85rem;
    }
    
    .btn-block {
        padding: 0.9rem 1.5rem;
    }
}

/* Loading spinner animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-submit .spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
