/* =============================================
   WeddingAI.video — Stylesheet
   Mobile-first, responsive design
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #D4AF37;       /* Gold */
    --color-primary-dark: #B8962E;
    --color-secondary: #2C2C2C;     /* Dark charcoal */
    --color-accent: #E8D5B7;        /* Warm cream */
    --color-bg: #FDFBF8;            /* Off-white */
    --color-bg-alt: #F5F0EA;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-border: #E5E0D8;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    --transition: 0.3s ease;
    --max-width: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

/* ---------- Utilities ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-align: center;
    padding: var(--spacing-sm);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

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

.btn-nav {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
}

.btn-nav:hover {
    background: var(--color-primary-dark);
}

.btn-link {
    color: var(--color-text);
    font-weight: 600;
    padding: 0;
    background: none;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--color-primary);
}

.btn-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* ---------- Section Base ---------- */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

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

.section-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    flex-shrink: 1;
    min-width: 0;
}

.logo img {
    max-height: 72px;
    max-width: 400px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-brand .logo img {
    max-height: 72px;
    max-width: 400px;
}

.logo-suffix {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.hero-bg img,
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg {
    background: linear-gradient(135deg, #E8D5B7 0%, #C9A96E 50%, #8B6914 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.3) 0%,
        rgba(44, 44, 44, 0.5) 50%,
        rgba(44, 44, 44, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.hero-cta .btn-primary {
    font-size: 1.0625rem;
    padding: 1rem 2rem;
}

.hero-cta .btn-secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.hero-cta .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

.hero-trust {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
}

/* ---------- SERVICES GRID ---------- */
.services {
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-bg-alt);
}

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

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

.service-card-body {
    padding: var(--spacing-md);
}

.service-card-body h3 {
    font-size: 1.375rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.service-card-body p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.service-list {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.service-list li {
    font-size: 0.875rem;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    list-style: disc;
}

/* ---------- FEATURED WORK ---------- */
.featured-work {
    background: var(--color-bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.case-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.case-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.case-body {
    padding: var(--spacing-md);
}

.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.case-body h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.case-body p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    font-style: italic;
}

.cite {
    font-size: 0.8125rem;
    color: var(--color-text);
    font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-card p {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.testimonial-card footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

.testimonial-card cite {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-style: normal;
}

.stars {
    font-size: 0.875rem;
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--color-bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-item summary {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--color-border);
}

.faq-item p {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    position: relative;
    padding: var(--spacing-2xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E8D5B7 0%, #C9A96E 100%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-content .section-intro {
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--spacing-lg);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.8);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md);
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    font-size: 0.875rem;
    max-width: 280px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-lg);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    font-size: 0.8125rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-md) 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }

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

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* ---------- PRINT ---------- */
@media print {
    .site-header,
    .mobile-menu-toggle,
    .hero-cta,
    .faq-item summary::after {
        display: none;
    }

    .hero {
        min-height: auto;
        background: var(--color-bg-alt) !important;
    }

    .hero-bg,
    .hero-overlay {
        display: none;
    }

    .hero-content {
        color: var(--color-text);
    }
}

/* ---------- PAGE HERO (service detail pages) ---------- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.3) 0%,
        rgba(44, 44, 44, 0.5) 50%,
        rgba(44, 44, 44, 0.7) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 6rem 0 3rem;
}

.page-hero-content h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
}

/* ---------- SPLIT COMPARISON ---------- */
.split-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 2rem 0;
}

.split-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.split-half {
    position: relative;
    background: var(--color-secondary);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
}

.split-half.before { background: #1a1a1a; }
.split-half.after { background: #f5f5f0; }

.split-label {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.split-half.before .split-label { background: rgba(255,255,255,0.1); color: #fff; }
.split-half.after .split-label { background: var(--color-primary); color: #fff; }

/* ---------- TEAM AVATAR ---------- */
.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-alt);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- GALLERY ITEMS ---------- */
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
}

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

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

/* ---------- MOBILE FIXES ---------- */
@media (max-width: 767px) {
    .page-hero {
        min-height: 40vh;
    }

    .page-hero-bg img {
        display: block;
    }

    .page-hero-overlay {
        display: block;
    }

    .page-hero-content {
        padding: 5rem 0 2rem;
    }

    .split-comparison {
        grid-template-columns: 1fr;
    }
}
/* ---------- PAGE HERO SMALL (service pages) ---------- */
.page-hero-small { min-height: 45vh; }

/* ---------- SECTION VARIANTS ---------- */
.section-dark { background: var(--color-secondary); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-header { text-align: center; margin-bottom: var(--spacing-xl); }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--color-secondary); margin-bottom: 0.75rem; }
.section-header p { font-size: 1.0625rem; color: var(--color-text-light); max-width: 640px; margin: 0 auto; }

.section-intro { font-size: 1.0625rem; color: var(--color-text-light); max-width: 680px; margin: 0 auto 2rem; text-align: center; }

.section-cta { text-align: center; padding: var(--spacing-xl) 0; }

/* ---------- CTA SECTION ---------- */
.cta-section { background: var(--color-secondary); padding: 4rem 0; text-align: center; color: #fff; }
.cta-bg { position: relative; }
.cta-overlay { position: absolute; inset: 0; background: rgba(44,44,44,0.6); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

/* ---------- SERVICE GROUP (services/index.html) ---------- */
.service-group { padding: var(--spacing-2xl) 0; }
.service-group-header { text-align: center; margin-bottom: var(--spacing-xl); }
.service-group-header h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); color: var(--color-secondary); margin-bottom: 0.75rem; }
.service-group-header p { color: var(--color-text-light); font-size: 1.0625rem; max-width: 600px; margin: 0 auto; }
.service-sub-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-sub-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--color-border); transition: var(--transition); }
.service-sub-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-sub-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-sub-card h3 a { color: var(--color-secondary); text-decoration: none; }
.service-sub-card h3 a:hover { color: var(--color-primary); }
.service-sub-card p { font-size: 0.9375rem; color: var(--color-text-light); margin-bottom: 0.75rem; }
.price-hint { font-size: 0.875rem; font-weight: 700; color: var(--color-primary); }

/* ---------- PRICING ---------- */
.pricing-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.pricing-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; }
.pricing-row .label { color: var(--color-text); }
.pricing-row .value { font-weight: 700; color: var(--color-secondary); }
.pricing-row .value.price { color: var(--color-primary); }
.pricing-box { background: var(--color-bg-alt); border-radius: var(--radius-md); padding: 1.25rem; margin: 1rem 0; }
.price { font-size: 2rem; font-weight: 700; color: var(--color-primary); }
.price span { font-size: 1rem; font-weight: 400; color: var(--color-text-light); }

/* ---------- FORM (order.html) ---------- */
.form-section { padding: var(--spacing-2xl) 0; }
.form-wrapper { max-width: 680px; margin: 0 auto; }
.form-header-img { width: 100%; aspect-ratio: 16/6; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.375rem; color: var(--color-text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); font-size: 1rem; font-family: inherit; background: var(--color-white); color: var(--color-text); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; padding: 1rem; font-size: 1.0625rem; }
.form-note { font-size: 0.8125rem; color: var(--color-text-light); margin-top: 0.75rem; text-align: center; }

/* ---------- CONTACT (order.html) ---------- */
.direct-contact { margin-top: 3rem; }
.contact-methods { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.contact-method { display: flex; align-items: center; gap: 0.75rem; }
.contact-icon { font-size: 1.5rem; }
.contact-label { font-size: 0.8125rem; color: var(--color-text-light); }
.contact-value { font-weight: 600; color: var(--color-secondary); }

/* ---------- WHY US (order.html) ---------- */
.why-section { background: var(--color-bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2rem; }
.why-item { text-align: center; }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ---------- TEAM (about.html) ---------- */
.team-section { padding: var(--spacing-2xl) 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 2rem; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-bg-alt); margin-bottom: 1rem; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-bio { font-size: 0.875rem; color: var(--color-text-light); }
.team-since { font-size: 0.8125rem; color: var(--color-primary); font-weight: 600; margin-top: 0.25rem; }

/* ---------- NUMBERS (about.html) ---------- */
.numbers-section { background: var(--color-primary); padding: var(--spacing-2xl) 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; text-align: center; }
.number-item {}
.number-value { font-size: 2.5rem; font-weight: 700; color: #fff; }
.number-label { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

/* ---------- STORY (about.html) ---------- */
.story-section { padding: var(--spacing-2xl) 0; }
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2rem; }
.story-text h3 { color: var(--color-secondary); margin-bottom: 0.75rem; }
.story-values { list-style: none; padding: 0; margin-top: 1rem; }
.story-values li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; }
.value-item { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); }

/* ---------- GALLERY (gallery.html) ---------- */
.gallery-section { padding: var(--spacing-2xl) 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-bg-alt); transition: var(--transition); }
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-card-img { aspect-ratio: 16/9; overflow: hidden; }
.gallery-card-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card-body { padding: 1.25rem; }
.gallery-card-body h3 { font-size: 1.125rem; margin-bottom: 0.375rem; }
.gallery-location { font-size: 0.8125rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
.gallery-detail p { font-size: 0.875rem; color: var(--color-text-light); }
.gallery-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.75rem; }
.gallery-before-after img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-sm); }
.ba-label { font-size: 0.75rem; font-weight: 700; margin-bottom: 0.25rem; }

/* ---------- TESTIMONIALS (index.html) ---------- */
.testimonials { padding: var(--spacing-2xl) 0; background: var(--color-bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--color-bg-alt); margin-bottom: 1rem; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.stars { color: var(--color-primary); margin-bottom: 0.75rem; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }

/* ---------- FAQ (index.html, pet-wedding.html) ---------- */
.faq { padding: var(--spacing-2xl) 0; }
.faq-list { max-width: 720px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary { padding: 1rem 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--color-primary); }
.faq-item[open] summary::after { content: "-"; }
.faq-item p { padding: 0 0 1rem; color: var(--color-text-light); font-size: 0.9375rem; }

/* ---------- PRODUCTS (pet-wedding.html) ---------- */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.product-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); }
.product-img { aspect-ratio: 16/9; overflow: hidden; background: var(--color-bg-alt); }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--color-text-light); font-size: 0.875rem; }
.product-body { padding: 1.25rem; }
.product-price { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); margin-top: 0.75rem; }

/* ---------- LANGUAGES (multilingual.html) ---------- */
.languages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1rem; margin: 2rem 0; }
.lang-tag { background: var(--color-bg-alt); border-radius: var(--radius-md); padding: 0.75rem; text-align: center; font-size: 0.875rem; font-weight: 600; }

/* ---------- DELIVERY (wedding-trailer.html) ---------- */
.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.delivery-card { background: var(--color-bg-alt); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.delivery-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.comparison-table th, .comparison-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; }
.comparison-table th { background: var(--color-bg-alt); font-weight: 700; }
.check { color: #188038; }
.cross { color: #D93025; }

/* ---------- FEATURES (real-time-cut.html) ---------- */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.625rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; }
.feature-icon { color: var(--color-primary); font-size: 1.25rem; flex-shrink: 0; }

/* ---------- STEPS (multiple pages) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.step-card { background: var(--color-bg-alt); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-content h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.875rem; color: var(--color-text-light); }
.process-steps { counter-reset: steps; }
.process-step { display: flex; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }
.process-step::before { counter-increment: steps; content: counter(steps); min-width: 36px; height: 36px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.step-content { flex: 1; }

/* ---------- PRESETS (ai-video-generator.html) ---------- */
.preset-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.preset-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; cursor: pointer; }
.preset-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.preset-card:hover img { transform: scale(1.05); }
.preset-placeholder { width: 100%; height: 100%; background: var(--color-bg-alt); display: flex; align-items: center; justify-content: center; color: var(--color-text-light); font-size: 0.75rem; }
.preset-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: flex-end; padding: 0.75rem; }
.preset-name { color: #fff; font-size: 0.8125rem; font-weight: 600; }

/* ---------- STYLE CARDS (cartoon-style.html) ---------- */
.style-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.style-card { text-align: center; }
.style-thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-md); margin-bottom: 0.75rem; }
.style-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.style-card:hover .style-thumb img { transform: scale(1.05); }
.style-icon { font-size: 3rem; display: block; margin-bottom: 0.75rem; }

/* ---------- SENSITIVITY NOTE (family-tribute.html) ---------- */
.sensitivity-note { background: #FEF3E2; border-left: 4px solid #E67E22; border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 1rem 1.25rem; font-size: 0.9375rem; color: #7B4000; margin: 1.5rem 0; }

/* ---------- SUCCESS PAGE ---------- */
.success-section { text-align: center; padding: 4rem 0; }
.success-icon { font-size: 4rem; display: block; margin-bottom: 1.5rem; }
.next-steps { max-width: 560px; margin: 2rem auto; text-align: left; }
.next-steps li { padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9375rem; }
}