/* ===== SERVICES PAGE - COMPLETE STYLES ===== */

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}
.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.logo-pulse { animation: logoPulse 2s ease-in-out infinite; }
.logo-pulse img { filter: drop-shadow(0 0 20px rgba(212,175,55,0.6)); }
.preloader-text {
    color: #d4af37;
    font-size: 1.5rem;
    letter-spacing: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    animation: fadeInOut 3s ease-in-out infinite;
}
.preloader-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}
@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.main-header.scrolled {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.main-nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}
.nav-logo img { width: 55px; height: 55px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; gap: 0.1rem; }
.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000000;
    line-height: 1;
}
.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #d4af37;
    line-height: 1;
}
.nav-menu { display: flex; gap: 2.5rem; align-items: center; }
.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: #d4af37; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary { background: #d4af37; color: #000; border: 2px solid #d4af37; padding: 0.7rem 1.5rem; font-size: 0.75rem; }
.btn-primary:hover { background: transparent; color: #d4af37; }
.btn-small { padding: 0.6rem 1.2rem; font-size: 0.72rem; }
.btn-outline { background: transparent; color: #d4af37; border: 1.5px solid rgba(212,175,55,0.5); padding: 0.7rem 1.5rem; font-size: 0.75rem; }
.btn-outline:hover { border-color: #d4af37; background: rgba(212,175,55,0.06); }
.btn-gold { background: #d4af37; color: #000; border: 2px solid #d4af37; padding: 1rem 2rem; font-size: 0.8rem; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.3s ease; cursor: pointer; }
.btn-gold:hover { background: transparent; color: #d4af37; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); padding: 1rem 2rem; font-size: 0.8rem; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.3s ease; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-large { padding: 1rem 2.2rem; font-size: 0.82rem; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(212,175,55,0.4);
    color: #d4af37;
    width: 44px; height: 44px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.mobile-menu-btn:hover { background: rgba(212,175,55,0.1); border-color: #d4af37; }
.mobile-menu-btn.active i::before { content: "\f00d"; }

/* Mobile Dropdown Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav-link {
    padding: 1rem 2rem;
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: block;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: #d4af37; background: rgba(212,175,55,0.04); padding-left: 2.5rem; }
.mobile-nav-cta {
    margin: 1rem 2rem;
    padding: 0.9rem;
    background: #d4af37;
    color: #000;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-radius: 3px;
}
.mobile-nav-cta:hover { background: #b8963d; }

/* ===== SHARED UTILITIES ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-gold { color: #d4af37; }
.text-white { color: #fff; }
.mt-xl { margin-top: 3rem; }
.mt-xxl { margin-top: 5rem; }
.section-padding { padding: 6rem 0; }
.bg-light { background: #f8f7f3; }
.bg-black { background: #0a0a0a; }
.w-full { width: 100%; }
.section-label {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111;
}
.section-title.text-white { color: #fff; }
.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }

/* ===== HERO ===== */
.services-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    margin-top: 75px;
}
.services-hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}
.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    color: #fff;
}
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1.2rem;
}
.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}
.services-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}
.hero-scroll-hint span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
.scroll-line-hero { width: 1px; height: 45px; background: linear-gradient(to bottom, #d4af37, transparent); position: relative; overflow: hidden; }
.scroll-dot-hero {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 3px;
    background: #d4af37; border-radius: 50%;
    animation: scrollDotAnim 2.5s ease-in-out infinite;
}
@keyframes scrollDotAnim {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ===== OVERVIEW CARDS ===== */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-overview-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.service-overview-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #d4af37, #f7ef8a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-overview-card:hover::after { transform: scaleX(1); }
.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: rgba(212,175,55,0.2);
}
.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212,175,55,0.1);
    line-height: 1;
    position: absolute;
    top: 1rem; right: 1.5rem;
    letter-spacing: -2px;
}
.service-overview-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 2px solid rgba(212,175,55,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.service-overview-card:hover .service-overview-icon {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: scale(1.1);
}
.service-overview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 1rem;
}
.service-overview-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.service-overview-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.service-overview-price span { font-size: 1.6rem; color: #d4af37; font-weight: 700; display: block; }

/* ===== SERVICE DETAILS - PREMIUM REDESIGN ===== */
.service-details-section {
    background: #0a0a0a;
    overflow: hidden;
}
.service-details-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    border-bottom: 1px solid rgba(212,175,55,0.12);
}
.service-details-header .section-label { color: #d4af37; }

/* Tab Navigation */
.service-tabs {
    display: inline-flex;
    gap: 0;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 50px;
    padding: 0.4rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.service-tab {
    padding: 0.75rem 2rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.service-tab i { font-size: 0.9rem; }
.service-tab:hover { color: rgba(255,255,255,0.85); }
.service-tab.active {
    background: #d4af37;
    color: #000;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

/* Service Panels */
.service-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.service-panel.active { display: grid; }

.panel-image-side {
    position: relative;
    overflow: hidden;
}
.panel-image-side img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.service-panel.active .panel-image-side img { transform: scale(1.05); }
.panel-image-badge {
    position: absolute;
    bottom: 2rem; left: 2rem;
    background: rgba(212,175,55,0.92);
    color: #000;
    padding: 0.6rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 3px;
}

.panel-content-side {
    background: #111;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}
.panel-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.8rem;
}
.panel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}
.panel-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* Features Grid */
.panel-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.panel-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.panel-feature:hover {
    background: rgba(212,175,55,0.05);
    border-color: rgba(212,175,55,0.25);
}
.feature-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: rgba(212,175,55,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #d4af37;
    font-size: 0.9rem;
}
.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.feature-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
}
.feature-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
}
.panel-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== PACKAGES (same as home) ===== */
.pricing { background: #f8f7f3; }
.package-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #111;
    font-weight: 400;
    margin: 4rem 0 2rem;
    text-align: center;
}
.package-category-title i { color: #d4af37; margin-right: 0.7rem; }
.pricing-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pricing-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.price-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); border-color: rgba(212,175,55,0.3); }
.price-card.highlight { border-color: #d4af37; transform: scale(1.04); box-shadow: 0 20px 60px rgba(212,175,55,0.12); }
.price-card.highlight:hover { transform: scale(1.04) translateY(-8px); }
.price-card.special { background: linear-gradient(135deg, #fff 0%, #fafaf8 100%); }
.badge {
    position: absolute;
    top: 18px; right: -32px;
    background: #d4af37; color: #000;
    padding: 0.4rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    transform: rotate(45deg);
    z-index: 2;
}
.package-icon {
    width: 75px; height: 75px;
    background: rgba(212,175,55,0.08);
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem; color: #d4af37;
}
.package-name { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; color: #111; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
.price-subtitle { font-size: 0.8rem; color: rgba(0,0,0,0.5); margin-bottom: 0.8rem; }
.price { font-family: 'Montserrat', sans-serif; font-size: 2.8rem; color: #d4af37; font-weight: 300; margin-bottom: 1.5rem; line-height: 1; }
.package-list { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; }
.package-list li { padding: 0.7rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); padding-left: 1.8rem; position: relative; font-size: 0.9rem; color: #444; line-height: 1.5; }
.package-list li::before { content: '✓'; position: absolute; left: 0; color: #d4af37; font-weight: 700; }
.package-list li:last-child { border-bottom: none; }
.mt-md { margin-top: 1.5rem; }

/* ===== PROCESS ===== */
.process-timeline { position: relative; max-width: 1200px; margin: 0 auto; }
.process-line {
    position: absolute;
    top: 45px; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    z-index: 1;
}
.process-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; z-index: 2; }
.process-step { text-align: center; }
.step-number {
    width: 90px; height: 90px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: #d4af37;
    margin: 0 auto 1.5rem;
    background: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative; z-index: 2;
}
.process-step:hover .step-number { background: #d4af37; color: #000; transform: scale(1.1); box-shadow: 0 0 30px rgba(212,175,55,0.3); }
.step-content { max-width: 180px; margin: 0 auto; }
.step-title { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.6rem; }
.step-description { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.5; }

/* ===== ADD-ONS ===== */
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.addon-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex; flex-direction: column; align-items: center;
}
.addon-card:hover { transform: translateY(-8px); border-color: rgba(212,175,55,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.addon-icon { font-size: 2.2rem; color: #d4af37; margin-bottom: 1.2rem; }
.addon-content { width: 100%; display: flex; flex-direction: column; align-items: center; }
.addon-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: #111; margin-bottom: 0.5rem; }
.addon-price { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; color: #d4af37; font-weight: 700; margin-bottom: 1rem; }
.addon-description { color: #666; font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.2rem; flex-grow: 1; }

/* ===== FAQ ===== */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 0.8rem; overflow: hidden; border: 1px solid #eee; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.faq-item:hover { box-shadow: 0 8px 35px rgba(0,0,0,0.08); }
.faq-question { padding: 1.4rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s ease; }
.faq-question h3 { margin: 0; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; color: #222; display: flex; align-items: center; gap: 0.8rem; line-height: 1.5; }
.faq-question:hover h3 { color: #d4af37; }
.faq-icon { color: #d4af37; font-size: 1rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; padding: 0 1.5rem; background: #fafaf8; }
.faq-item.active .faq-answer { max-height: 400px; padding: 1.2rem 1.5rem; }
.faq-answer p { margin: 0; color: #555; font-size: 0.92rem; line-height: 1.7; }

/* ===== CTA ===== */
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; font-weight: 300; margin: 0.8rem 0 1rem; line-height: 1.2; }
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.cta-note { display: flex; align-items: center; justify-content: center; gap: 0.8rem; color: rgba(255,255,255,0.5); font-family: 'Montserrat', sans-serif; font-size: 0.8rem; letter-spacing: 1px; }

/* ===== FOOTER ===== */
.main-footer { background: #141414; padding: 4rem 0 2rem; border-top: 1px solid rgba(212,175,55,0.1); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col { display: flex; flex-direction: column; }
.footer-logo { margin-bottom: 1.2rem; }
.footer-logo-img { filter: drop-shadow(0 0 10px rgba(212,175,55,0.3)); }
.footer-col p { color: rgba(255,255,255,0.55); line-height: 1.8; font-size: 0.9rem; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
    width: 42px; height: 42px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-link:hover { border-color: #d4af37; color: #d4af37; transform: translateY(-3px); background: rgba(212,175,55,0.06); }
.footer-title { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #d4af37; margin-bottom: 1.5rem; font-weight: 700; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: #d4af37; transform: translateX(4px); }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-row { display: flex; gap: 0.8rem; align-items: flex-start; color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }
.contact-row i { color: #d4af37; font-size: 0.9rem; margin-top: 0.15rem; min-width: 18px; }
.contact-row a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s ease; }
.contact-row a:hover { color: #d4af37; }
.contact-row address { font-style: normal; line-height: 1.7; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(212,175,55,0.08); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin-bottom: 0.4rem; }
.copyright-subtitle { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; letter-spacing: 2px; color: rgba(212,175,55,0.4); }

/* ===== PACKAGE COMPARISON TABLE ===== */
.package-comparison { background: #fff; }
.package-grid-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    padding: 2rem;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-width: 1000px;
    gap: 0;
}
.package-column {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
}
.package-column:last-child { border-right: none; }
.feature-column {
    background: #0a0a0a;
    color: #fff;
    border-radius: 12px 0 0 12px;
}
.feature-column .package-header-cell {
    background: #0a0a0a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}
.feature-column .package-cell {
    background: #0a0a0a;
    color: rgba(255,255,255,0.75);
    text-align: left;
    padding-left: 1.8rem;
    font-weight: 500;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    justify-content: flex-start;
}
.feature-column .action-cell { border-bottom: none; }
.package-header-cell {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    padding: 1.8rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.package-cell {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.45;
    transition: background 0.2s ease;
}
.package-cell:last-child { border-bottom: none; }
.action-cell { padding: 1.5rem 1rem; border-bottom: none !important; }
.highlight-column {
    position: relative;
    background: rgba(212,175,55,0.02);
    border-left: 2px solid #d4af37;
    border-right: 2px solid #d4af37 !important;
}
.highlight-column .package-header-cell {
    background: linear-gradient(135deg, #d4af37, #f0ce60);
    color: #000;
}
.highlight-column::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}
.highlight-cell { color: #b8962e !important; font-weight: 700 !important; }
.tier-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.tier-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.highlight-column .tier-price { color: #000; }
.tier-badge {
    display: inline-block;
    background: #000;
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .addons-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .process-line { display: none; }
    .panel-features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 992px) {
    .services-cards { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .service-panel { grid-template-columns: 1fr; }
    .panel-image-side { height: 320px; }
    .panel-content-side { padding: 2.5rem 2rem; }
    .pricing-grid-3 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    /* Header mobile */
    .nav-menu { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-nav { display: flex; }
    .main-nav { padding: 0.8rem 1.5rem; }
}

@media (max-width: 768px) {
    .services-hero { margin-top: 70px; min-height: 70vh; }
    .services-hero-title { font-size: clamp(2.2rem, 6vw, 3.2rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; justify-content: center; }
    .service-tabs { width: 100%; border-radius: 12px; padding: 0.4rem; gap: 0.3rem; }
    .service-tab { width: 100%; justify-content: center; border-radius: 8px; padding: 0.7rem 1rem; font-size: 0.72rem; }
    .service-tab span { display: none; }
    .service-tab i { font-size: 1.2rem; }
    .service-details-header { padding: 4rem 0 2rem; }
    .panel-features-grid { grid-template-columns: 1fr; }
    .panel-content-side { padding: 2rem 1.5rem; }
    .addons-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .cta-buttons { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .section-padding { padding: 4rem 0; }
    .nav-logo img { width: 45px; height: 45px; }
    .logo-title { font-size: 0.75rem; }
    .logo-subtitle { font-size: 0.5rem; }
    .package-grid-container { padding: 0.8rem; }
    .package-header-cell { padding: 1.2rem 0.6rem; min-height: 110px; }
    .package-cell { padding: 0.9rem 0.6rem; min-height: 55px; font-size: 0.78rem; }
    .tier-price { font-size: 1.3rem; }
    .tier-name { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .pricing-grid-4 { grid-template-columns: 1fr; }
    .service-tab i { font-size: 1rem; }
    .service-tab { padding: 0.6rem; }
    .main-nav { padding: 0.7rem 1rem; }
    .nav-logo img { width: 40px; height: 40px; }
    .logo-title { font-size: 0.72rem; letter-spacing: 1px; }
    .logo-subtitle { font-size: 0.5rem; }
}

/* ═══════════════════════════════════════════════════════
   SVC-PANEL — EDITORIAL MAGAZINE REDESIGN
═══════════════════════════════════════════════════════ */
.svc-details-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    border-bottom: 1px solid rgba(212,175,55,0.12);
}

/* Each service panel: immersive split layout */
.svc-panel {
    display: none;
    grid-template-columns: 52% 1fr;
    min-height: 680px;
    background: #0d0d0d;
}

.svc-panel.active {
    display: grid;
}

/* Left: Full-bleed image side */
.svc-panel-img {
    position: relative;
    overflow: hidden;
}

.svc-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.92) saturate(0.9);
    transition: transform 9s ease, filter 0.5s ease;
}

.svc-panel.active .svc-panel-img img {
    transform: scale(1.06);
}

.svc-panel-img:hover img {
    filter: brightness(1) saturate(1);
}

.svc-panel-img-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(212,175,55,0.95);
    color: #000;
    padding: 0.55rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Film strip accent on the right edge of image */
.svc-panel-film-strip {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 36px;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.svc-panel-film-strip span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(212,175,55,0.4);
    letter-spacing: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Right: Content body */
.svc-panel-body {
    background: #0d0d0d;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    border-left: 1px solid rgba(212,175,55,0.08);
}

.svc-panel-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(212,175,55,0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.svc-panel-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: rgba(212,175,55,0.5);
}

.svc-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.svc-panel-title em {
    font-style: italic;
    color: #d4af37;
}

.svc-panel-desc {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Elegant dotted feature rows */
.svc-features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.svc-feature {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}

.svc-feature:hover {
    padding-left: 0.5rem;
}

.sfc-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sfc-dot {
    flex: 1;
    border-bottom: 1px dotted rgba(212,175,55,0.2);
    min-width: 1rem;
    align-self: center;
    margin: 0 0.5rem;
    transition: border-color 0.3s;
}

.svc-feature:hover .sfc-dot {
    border-color: rgba(212,175,55,0.5);
}

.sfc-val {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-align: right;
    white-space: nowrap;
}

.svc-panel-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Responsive svc-panel */
@media (max-width: 900px) {
    .svc-panel {
        grid-template-columns: 1fr;
    }

    .svc-panel-img {
        min-height: 380px;
    }

    .svc-panel-body {
        padding: 3rem 2rem;
    }

    .sfc-val {
        display: none;
    }

    .sfc-dot {
        display: none;
    }
}