/* =========================================
   ARS Element - Premium Stylesheet
   Black & Burgundy Color Scheme
   Fully Responsive with Hamburger Menu
   ========================================= */

/* ---- CSS Variables ---- */
:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --burgundy: #6B0F1A;
    --burgundy-light: #8B1A2A;
    --burgundy-dark: #4A0912;
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --white: #f8f8f8;
    --gray: #888888;
    --gray-light: #b0b0b0;
    --gray-dark: #444444;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(107, 15, 26, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.8rem;
    color: var(--black-light);
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--burgundy-light);
}

/* ---- Header & Navigation ---- */
header {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    isolation: isolate;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--burgundy-dark);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar .nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 1.5rem;
}

.navbar .nav-links {
    gap: 1rem;
}

.navbar .nav-links {
    display: flex;
    gap: 2rem;
}

.navbar .nav-auth {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 10002;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.logo:hover {
    color: var(--gold-light);
}

.logo:hover::after {
    transform: scaleX(1);
}

/* ---- Navigation Components ---- */
.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-auth {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0 0 0 2rem;
    padding: 0;
}

.nav-link {
    color: var(--gray-light);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 0.4rem 0;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link.active {
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.user-greeting {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-auth .user-link {
    border: 1px solid var(--gold);
    padding: 0.35rem 0.8rem;
    border-radius: 3px;
    color: var(--gold);
}

.nav-auth .user-link::after {
    display: none;
}

.nav-auth .user-link:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-auth .logout-link {
    color: var(--gold);
}

.nav-auth .logout-link:hover {
    color: var(--gold-light);
}

.nav-auth .logout-link::after {
    display: none;
}

/* Hamburger Button - hidden by default (desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--burgundy);
    border-radius: 4px;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 10001;
    transition: var(--transition);
}

.hamburger:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 1px;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default state: 3 lines (menu closed) */
.hamburger span:nth-child(1) {
    transform: none;
}

.hamburger span:nth-child(2) {
    opacity: 1;
}

.hamburger span:nth-child(3) {
    transform: none;
}

/* Active state: X (menu open) */
.hamburger.active span:nth-child(1) {
    transform: none;
}

.hamburger.active span:nth-child(2) {
    opacity: 1;
}

.hamburger.active span:nth-child(3) {
    transform: none;
}


/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ---- Admin Link v Navigacii ---- */
.admin-link {
    color: var(--gold) !important;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    transition: var(--transition);
}

.admin-link::after {
    display: none !important;
}

.admin-link:hover {
    background: var(--gold);
    color: var(--black) !important;
}

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--burgundy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(107, 15, 26, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ---- Buttons ---- */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    margin: 0.5rem;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 15, 26, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
    margin-top: 1.5rem;
}

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ---- Sections ---- */
main > section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

main > section:nth-child(even) {
    background-color: var(--white);
}

main > section:nth-child(odd):not(.hero) {
    background-color: #f0f0f0;
}

/* ---- Pricing Section ---- */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.pricing-section h2 {
    color: #6B0F1A;
    margin: 3rem 0 2.5rem 0;
    text-align: center;
    font-size: 2rem;
}

.pricing-section h2:first-of-type {
    margin-top: 1rem;
}

.pricing-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    border: 1px solid rgba(107, 15, 26, 0.12);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6B0F1A, #D4AF37);
    transition: width 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(107, 15, 26, 0.2);
}

.pricing-item:hover::before {
    width: 8px;
}

.pricing-item h3 {
    color: #6B0F1A;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    font-weight: 800;
    color: var(--burgundy) !important;
    -webkit-text-fill-color: var(--burgundy) !important;
    display: inline-block;
    padding: 1rem 1.8rem;
    margin: 0.8rem 0 1.8rem 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,1));
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4), 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.pricing-item p {
    color: #444444;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pricing-details {
    list-style: none;
    padding-left: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444444;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.pricing-details li span:first-child {
    flex: 1;
}

.pricing-details li strong {
    color: #6B0F1A;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    text-align: right;
    min-width: 120px;
}

.price-note {
    background: linear-gradient(135deg, #720f0f 0%, #5a0b0b 100%);
    border-left: 5px solid var(--gold);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 4rem 0;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    color: var(--black-light);
}

.price-note h2 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 1rem;
}
.price-note h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    width: 80px;
}
.price-note p {
    color: var(--black-light);
    margin-bottom: 0;
    line-height: 1.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 1.5rem;
    }

    .pricing-section h2 {
        font-size: 1.6rem;
        margin: 2rem 0 2rem 0;
    }

    .pricing-item {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .price {
        font-size: 1.8rem;
        margin-left: 1rem;
    }

    .pricing-details li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .pricing-details li strong {
        text-align: left;
        min-width: auto;
        font-size: 1.1rem;
    }

    .price-note {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}

main > section:nth-child(even) {
    background-color: var(--white);
}

main > section:nth-child(odd):not(.hero) {
    background-color: #f0f0f0;
}

/* ---- Services Preview ---- */
.services-preview {
    text-align: center;
}

.services-preview h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-preview article {
    background: linear-gradient(145deg, var(--white) 0%, #f5f5f5 100%);
    border: 1px solid rgba(107, 15, 26, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.services-preview article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
    transition: var(--transition);
}

.services-preview article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: rgba(107, 15, 26, 0.2);
}

.services-preview article:hover::before {
    width: 6px;
}

.services-preview h3 {
    color: var(--burgundy);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.services-preview p {
    padding-left: 1rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* ---- Why Us Section ---- */
.why-us {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--white);
    max-width: 100%;
    padding: 5rem 2rem;
}

.why-us h2 {
    color: var(--white);
    text-align: center;
}

.why-us h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.why-us article {
    max-width: 350px;
    margin: 2rem auto;
    text-align: center;
    padding: 2rem;
}

.why-us h3 {
    color: var(--gold);
    font-size: 1.2rem;
}

.why-us p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- References Preview ---- */
.references-preview {
    text-align: center;
}

.references-preview h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.references-preview article {
    background: var(--white);
    border-left: 4px solid var(--burgundy);
    padding: 2rem;
    margin: 1.5rem auto;
    max-width: 700px;
    text-align: left;
    box-shadow: var(--shadow-light);
    border-radius: 0 8px 8px 0;
    transition: var(--transition);
}

.references-preview article:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--black-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

cite {
    display: block;
    color: var(--burgundy);
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
}

/* ---- CTA Section ---- */
.cta {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    text-align: center;
    max-width: 100%;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
}

.cta p {
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid var(--white);
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

/* ---- Catalog (Flipbook) ---- */
:root {
    --catalog-accent: #b08d57;
}

.catalog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.catalog-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 60%, #1a1a1a 100%);
    border: 1px solid rgba(176, 141, 87, 0.35);
    border-radius: 14px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    padding: 2.2rem;
    color: #f3f3f3;
}

.catalog-flipbook-wrap {
    width: 100%;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(176, 141, 87, 0.25);
    overflow: hidden;
}

.catalog-flipbook-wrap iframe {
    width: 100%;
    height: clamp(420px, 56vw, 720px);
    border: 0;
    display: block;
    background: #fff;
}

.catalog-download {
    margin-top: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    width: 100%;
    padding: 1rem 1.4rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.95) 0%, rgba(212, 175, 55, 0.95) 100%);
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 35px rgba(176, 141, 87, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(176, 141, 87, 0.30);
}

.catalog-download-icon {
    display: inline-flex;
}

.catalog-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    text-align: center;
}

/* ---- Footer ---- */
footer {

    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    color: var(--gray-light);
    padding: 4rem 2rem 1.5rem;
    border-top: 3px solid var(--burgundy-dark);
}

.footer-info,
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: var(--gray);
    margin-bottom: 1rem;
}

footer address {
    font-style: normal;
    line-height: 2;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

footer address a {
    color: var(--gold);
}

footer address a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--black-lighter);
}

.footer-bottom p {
    color: var(--gray-dark);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ---- Page Header (for subpages) ---- */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(107, 15, 26, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---- Service Category ---- */
.service-category {
    max-width: 900px;
}

.service-category h2 {
    color: var(--burgundy);
    margin-top: 3rem;
}

.service-category h2:first-of-type {
    margin-top: 0;
}

.service-category article {
    background: var(--white);
    border: 1px solid rgba(107, 15, 26, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.service-category article:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(107, 15, 26, 0.2);
}

.service-category h3 {
    color: var(--black);
    border-bottom: 2px solid var(--burgundy);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
    margin-top: 1rem;
}

.service-category li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
}

.service-category li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-weight: bold;
}

/* ---- Pricing Section ---- */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.pricing-section h2 {
    color: #6B0F1A;
    margin: 3rem 0 2.5rem 0;
    text-align: center;
    font-size: 2rem;
}

.pricing-section h2:first-of-type {
    margin-top: 1rem;
}

.pricing-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    border: 1px solid rgba(107, 15, 26, 0.12);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6B0F1A, #D4AF37);
    transition: width 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(107, 15, 26, 0.2);
}

.pricing-item:hover::before {
    width: 8px;
}

.pricing-item h3 {
    color: #6B0F1A;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #6B0F1A;
    margin: 0 0 1.2rem 1.2rem;
    text-align: left;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.pricing-item p {
    color: #444444;
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pricing-details {
    list-style: none;
    padding-left: 1.2rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444444;
}

.pricing-details li:last-child {
    border-bottom: none;
}

.pricing-details li span:first-child {
    flex: 1;
}

.pricing-details li strong {
    color: #6B0F1A;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    text-align: right;
    min-width: 120px;
}

.price-note {
    background: linear-gradient(135deg, #fff8e1 0%, #f5f5f5 100%);
    border-left: 4px solid #6B0F1A;
    padding: 2rem;
    border-radius: 0 8px 8px 0;
    margin: 3rem 0;
    box-shadow: var(--shadow-light);
    color: #444444;
}

.price-note h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.price-note h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
}

.price-note p {
    color: var(--gray-dark);
    margin-bottom: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 1.5rem;
    }

    .pricing-section h2 {
        font-size: 1.6rem;
        margin: 2rem 0 2rem 0;
    }

    .pricing-item {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .price {
        font-size: 1.8rem;
        margin-left: 1rem;
    }

    .pricing-details li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .pricing-details li strong {
        text-align: left;
        min-width: auto;
        font-size: 1.1rem;
    }

    .price-note {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}

/* ---- Contact Page ---- */
.contact-info {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info article {
    background: var(--white);
    border: 1px solid rgba(107, 15, 26, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info article:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(107, 15, 26, 0.2);
}

.contact-info h3 {
    color: var(--burgundy);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-info address {
    font-style: normal;
    line-height: 1.8;
    color: var(--gray-dark);
}

.hours {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.hours li:last-child {
    border-bottom: none;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-form-section h2 {
    text-align: center;
}

.contact-form-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-section p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

fieldset {
    border: none;
    padding: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--black-light);
    background: var(--white);
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(107, 15, 26, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-light);
}

button[type="submit"] {
    border: none;
    width: 100%;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-light);
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    accent-color: var(--burgundy);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.map {
    max-width: 100%;
    padding: 0;
}

.map h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.map h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.map iframe {
    display: block;
    width: 100%;
    filter: grayscale(30%);
    transition: var(--transition);
}

.map iframe:hover {
    filter: grayscale(0%);
}

/* ---- Stats Section ---- */
.stats {
    background: linear-gradient(135deg, var(--black) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    text-align: center;
    max-width: 100%;
    padding: 4rem 2rem;
}

.stats h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.stats h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.stats article {
    display: inline-block;
    margin: 1rem 2rem;
    text-align: center;
}

.stats h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stats p {
    color: var(--gray-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* ---- References Page ---- */
.references-list {
    max-width: 900px;
}

.references-list article {
    background: var(--white);
    border: 1px solid rgba(107, 15, 26, 0.1);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.references-list article:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.references-list article::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--burgundy);
    opacity: 0.2;
    line-height: 1;
}

.references-list blockquote {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 1.2rem;
    border-left: 2px solid var(--burgundy);
    line-height: 1.7;
}

.references-list cite {
    display: block;
    margin-bottom: 0.5rem;
}

.service-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Review Cards ---- */
.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.review-header h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.service-tag {
    color: var(--white);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.references-list time {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
    font-style: italic;
}

/* ---- Add Reference Form ---- */
.add-reference {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.add-reference h2 {
    text-align: center;
}

.add-reference h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.add-reference p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ---- Gallery ---- */
.gallery {
    max-width: 1200px;
    text-align: center;
}

.gallery h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery p {
    color: var(--gray);
    margin-bottom: 2rem;
}

figure {
    display: inline-block;
    margin: 1rem;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    max-width: 500px;
}

figure:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

figure img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

figure:hover img {
    transform: scale(1.05);
}

figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    background: var(--white);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main > section {
    animation: fadeInUp 0.8s ease-out;
}

/* ---- Selection ---- */
::selection {
    background: var(--burgundy);
    color: var(--white);
}

/* ---- Flash Messages ---- */
.flash-message {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.flash-success {
    background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
    color: #d4edda;
    border: 1px solid #2d6a4f;
}

.flash-error {
    background: linear-gradient(135deg, #5c0a0a 0%, #8B1A2A 100%);
    color: #f8d7da;
    border: 1px solid #8B1A2A;
}

/* =========================================
   DESKTOP (769px and above)
   ========================================= */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    .nav-overlay {
        display: none !important;
    }

    .nav-wrapper {
        position: static !important;
        width: auto !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        z-index: auto !important;
        overflow: visible !important;
        transition: none !important;
        box-shadow: none !important;
    }

    .nav-wrapper.active {
        left: auto !important;
        box-shadow: none !important;
    }

    .nav-links {
        flex-direction: row;
        gap: 2.5rem;
    }

    .nav-links li {
        border: none !important;
    }

    .nav-auth {
        flex-direction: row;
        margin: 0 0 0 2rem !important;
        padding: 0 !important;
        border: none !important;
    }

    .nav-auth li {
        border: none !important;
    }

    .services-preview article,
    .why-us article,
    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .services-preview h2,
    .why-us h2,
    .references-preview h2,
    .cta h2,
    .page-header h1,
    .gallery h2,
    .contact-form-section h2,
    .map h2 {
        grid-column: 1 / -1;
    }

    .services-preview .btn-outline,
    .references-preview .btn-outline {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .why-us article {
        display: block;
    }
}

/* =========================================
   MOBILE (768px and below)
   ========================================= */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
        flex-direction: column;
        background-color: var(--black-light);
        gap: 0;
        padding: 1rem 0 0.75rem;
        z-index: 9999;
        transition: left 0.3s ease-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-wrapper.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(107, 15, 26, 0.2);
        width: 100%;
    }

    .nav-links .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        text-align: left;
    }

    .nav-auth {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0.75rem 0 0;
        margin: 0.5rem 0 0;
        border-top: 1px solid rgba(107, 15, 26, 0.2);
    }

    .nav-auth li {
        width: 100%;
        border-bottom: 1px solid rgba(107, 15, 26, 0.2);
    }

    .nav-auth .nav-link {
        display: block;
        padding: 0.8rem 1.4rem;
        text-align: left;
    }

    .nav-overlay {
        display: block;
    }

    .hero {
        padding: 5rem 1.5rem 4rem;
    }

    main > section {
        padding: 3rem 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }

    .services-preview article,
    .service-category article,
    .references-list article {
        padding: 2.5rem 2.5rem 2rem 2.5rem;
    }

    .contact-info article {
        padding: 1.5rem;
    }

    figure {
        margin: 1rem 0;
        max-width: 100%;
    }
}
/* ---- Pricing Accordion ---- */
.pricing-accordion-section {
    background: #f8f9fa;
}

.pricing-accordion {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-category {
    background: #ffffff;
    border: 1px solid rgba(107, 15, 26, 0.16);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-category summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.4rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #6B0F1A;
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f7f3f4 100%);
    transition: var(--transition);
}

.pricing-category summary::-webkit-details-marker {
    display: none;
}

.pricing-category summary::after {
    content: '+';
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--burgundy);
}

.pricing-category[open] summary::after {
    content: '-';
}

.pricing-category[open] summary {
    background: linear-gradient(145deg, #fff7f7 0%, #f2ecee 100%);
}

.pricing-category[open] .pricing-category-content {
    max-height: none;
    padding: 1rem;
    overflow: visible;
    transition: none;
}

.pricing-category-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem 1rem;
    transition: none;
}

.pricing-category .pricing-item {
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .pricing-category summary {
        font-size: 1.05rem;
        padding: 1rem 1.1rem;
        padding-right: 2.2rem;
    }

    .pricing-category summary::after {
        right: 1rem;
    }

    .pricing-category-content {
        padding: 0 0.7rem 0.8rem;
    }
}

