/* ============================================
   Third Eye Tattoos - Main Stylesheet
   ============================================ */

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #1a1a1a;
    --gold: #c5a059;
    --gold-light: #d4af37;
    --gold-dark: #a08040;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --font-display: 'Cinzel', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 0 30px rgba(197, 160, 89, 0.15);
}

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

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

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

body.intro-active { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ============================================
   Intro Animation
   ============================================ */

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-logo-container {
    animation: logoIntro 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-logo {
    width: 350px;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(197, 160, 89, 0.4));
}

@keyframes logoIntro {
    0% {
        transform: scale(0) rotate(-360deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        opacity: 1;
    }
    70% {
        transform: scale(1) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.nav-logo img {
    height: 63px;
    width: auto;
    transition: transform var(--transition);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.25));
}

.nav-logo:hover img { transform: scale(1.05); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

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

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(197, 160, 89, 0.02) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 0 40px rgba(197, 160, 89, 0.2);
}

.title-script {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    margin-top: -0.5rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-image {
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-image-frame {
    position: relative;
    padding: 1rem;
}

.hero-image-frame img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    border-style: solid;
}

.frame-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 6rem 0;
    position: relative;
}

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

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.highlight-icon { font-size: 0.7rem; }

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--black-card);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Services Grid */
.services-section {
    background: var(--black-light);
}

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

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

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

.gallery-full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

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

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

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

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
}

.gallery-overlay small {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

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

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50px;
    color: var(--gray-light);
    font-size: 0.85rem;
    transition: all var(--transition);
}

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

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-logo {
    width: 150px;
    margin: 0 auto 2rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials-section { background: var(--black-light); }

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

.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.testimonial-card.placeholder {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--gray);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.admin-reply {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.admin-reply strong {
    color: var(--gold);
    font-size: 0.85rem;
}

.admin-reply p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* CTA Section */
.cta-section { padding: 4rem 0; }

.cta-box {
    background: linear-gradient(135deg, var(--black-card), var(--black-light));
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.03) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 2rem;
    position: relative;
}

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

/* Page Hero */
.page-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, var(--black-light), var(--black));
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.review-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--black-card);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c5a059' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    font-size: 0.85rem;
}

.info-card {
    background: var(--black-card);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.info-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.info-item a {
    color: var(--white);
    font-size: 0.95rem;
}

.info-card.notice p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-card.notice ul {
    list-style: none;
}

.info-card.notice li {
    color: var(--gold);
    font-size: 0.85rem;
    padding: 0.35rem 0;
}

.review-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.star-rating input { display: none; }

.star-rating label {
    font-size: 1.75rem;
    color: var(--gray);
    cursor: pointer;
    transition: color var(--transition);
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--gold);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(81, 207, 102, 0.1);
    border: 1px solid rgba(81, 207, 102, 0.3);
    color: #51cf66;
}

.alert-error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition);
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: var(--gray-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--black-light);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 100px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.2));
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.social-links { display: flex; flex-direction: column; gap: 0.75rem; }

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.social-link svg { width: 20px; height: 20px; }
.social-link:hover { color: var(--gold); }

.footer-quote {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    margin-bottom: 2rem;
}

.footer-quote p {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Portfolio Slideshow */
.portfolio-slideshow-section {
    background: var(--black-light);
    overflow: hidden;
}

.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

.instagram-follow:hover { color: var(--gold-light); }

.slideshow { max-width: 900px; margin: 0 auto; }

.slideshow-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slideshow-track {
    position: relative;
    aspect-ratio: 1;
    background: var(--black-card);
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.slideshow-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.slideshow-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white);
    font-size: 0.9rem;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(10, 10, 10, 0.7);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.slideshow-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.slideshow-btn svg { width: 24px; height: 24px; }
.slideshow-prev { left: 1rem; }
.slideshow-next { right: 1rem; }

.slideshow-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black-card);
}

.slideshow-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.5;
    transition: all var(--transition);
}

.slideshow-thumb.active,
.slideshow-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}

.slideshow-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(197, 160, 89, 0.3);
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.slideshow-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slideshow-btn { width: 40px; height: 40px; }
    .slideshow-prev { left: 0.5rem; }
    .slideshow-next { right: 0.5rem; }
    .slideshow-thumb { width: 56px; height: 56px; }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black-light);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right var(--transition);
        border-left: 1px solid rgba(197, 160, 89, 0.1);
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.05);
    }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { align-items: center; }
    .intro-logo { width: 250px; height: 250px; }
    .cta-box { padding: 3rem 1.5rem; }
    .about-highlights { justify-content: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}
