/* 
========================================================================
THE KALAKAR INK - STYLESHEET
========================================================================
Description: Production-ready CSS for a premium, moody tattoo studio.
Palette: Charcoal primary, Dark Grey secondary, Gold/Bronze accents.
Typography: Cinzel (Headings), Outfit (Body).
========================================================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties / Design Tokens --- */
:root {
    /* Colors */
    --bg-primary: #080808;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --accent-gold: #c5a880; /* Elegant champagne gold */
    --accent-gold-glow: rgba(197, 168, 128, 0.3);
    --accent-gold-dark: #a68b64;
    --accent-red: #8b0000; /* Deep crimson accent */
    --accent-red-hover: #b30000;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #737373;
    
    /* Layout & Borders */
    --border-gold: 1px solid rgba(197, 168, 128, 0.2);
    --border-dark: 1px solid rgba(255, 255, 255, 0.08);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows & Glows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 15px var(--accent-gold-glow);
    --glow-red: 0 0 15px rgba(139, 0, 0, 0.3);

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Structure */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--text-primary);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

/* Gold Underline Decoration for Headings */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

p {
    font-weight: 300;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- Layout Utility Classes --- */
.section {
    padding: clamp(4rem, 8vw, 8rem) 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-bg-dark {
    background-color: var(--bg-secondary);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.section-bg-dark > .section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight {
    color: var(--accent-gold);
}

/* --- Sticky Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    height: 70px;
    background: rgba(8, 8, 8, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: -3px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
    box-shadow: var(--glow-gold);
}

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

/* Header CTAs */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburguer Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* Hamburger active transformation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-gold);
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.85rem 1.8rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-phone {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    background: var(--bg-tertiary);
    color: var(--accent-gold);
    border: var(--border-gold);
}

.btn-phone:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

/* --- Hero Section --- */
.hero-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 0 1.5rem;
}

/* Decorative grid overlay for hero */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--bg-primary) 95%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

/* Google Review Widget Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-dark);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: #fbbc05; /* Google Gold Star Color */
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-family: 'Cinzel', serif;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Stats Counter Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-secondary);
    border: var(--border-dark);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.stat-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* About Decorative Card */
.about-image-wrapper {
    position: relative;
    padding-bottom: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* --- Services & Pricing --- */
.services-intro {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 4rem;
}

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

.service-card {
    background: var(--bg-secondary);
    border: var(--border-dark);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-lg);
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
    margin-top: auto;
}

.price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price-val {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* --- Portfolio Gallery --- */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--bg-secondary);
    border: var(--border-dark);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

/* CSS Grid Portfolio Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    border: var(--border-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* Overlay on Hover */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.portfolio-overlay h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    transform: translateY(15px);
    transition: var(--transition-normal);
}

.portfolio-overlay span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    transform: translateY(15px);
    transition: var(--transition-normal) 0.05s;
}

.portfolio-item:hover {
    box-shadow: var(--glow-gold);
    border-color: var(--accent-gold);
}

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

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

.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

/* --- Artist Profile --- */
.artist-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2rem, 5vw, 4rem);
    background: var(--bg-secondary);
    border: var(--border-gold);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    max-width: 950px;
    margin: 3rem auto 0;
    box-shadow: var(--shadow-lg);
}

.artist-img-wrapper {
    position: relative;
    min-height: 400px;
}

.artist-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-title-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.artist-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.artist-bio {
    margin-bottom: 2rem;
}

.artist-specialties {
    margin-bottom: 2rem;
}

.artist-specialties h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: var(--bg-tertiary);
    border: var(--border-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.artist-socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.3rem;
}

.artist-socials a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* --- Hygiene & Safety Section --- */
.hygiene-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-top: 3rem;
}

.hygiene-text h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.hygiene-checklist {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hygiene-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
}

.hygiene-checklist li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.hygiene-img-wrapper {
    position: relative;
    padding-bottom: 75%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--border-dark);
}

.hygiene-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: var(--border-dark);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #fbbc05;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* Decorative huge quote mark */
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Cinzel', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--accent-gold);
}

.author-meta h4 {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.author-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Aftercare & FAQ Section --- */
.faq-aftercare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-top: 3rem;
}

.faq-aftercare-grid h3 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Accordion Item Styling */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-secondary);
    border: var(--border-dark);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    color: var(--accent-gold);
    background: var(--bg-tertiary);
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--accent-gold);
}

/* Expand animation via max-height transition */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: var(--bg-secondary);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}

/* Active State Styles */
.accordion-item.active {
    border-color: var(--accent-gold);
}

.accordion-item.active .accordion-header {
    color: var(--accent-gold);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 1000px; /* High enough value to show contents */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --- Contact & Location --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-top: 3rem;
}

/* Info Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-secondary);
    border: var(--border-dark);
    border-radius: var(--border-radius-md);
    padding: 2rem;
}

.info-card h4 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-list li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.6rem 0;
    font-size: 0.95rem;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
}

/* Interactive Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: var(--border-gold);
    height: 250px;
    margin-top: 1.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Column */
.contact-form-wrapper {
    background: var(--bg-secondary);
    border: var(--border-gold);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

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

.form-group-full {
    grid-column: span 2;
}

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

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: var(--accent-gold);
}

.form-control {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    transition: var(--transition-fast);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.25);
}

/* Validation error state style */
.form-control.error {
    border-color: var(--accent-red);
    box-shadow: 0 0 8px rgba(139, 0, 0, 0.25);
}

.error-message {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

/* File Upload Custom Style */
.file-upload-wrapper {
    position: relative;
    cursor: pointer;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.file-upload-wrapper:hover .file-upload-btn {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.03);
}

.file-upload-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Form Alert Modals / States */
.form-status {
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-status.failed {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* --- Footer --- */
.footer {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 1.5rem 2rem;
    color: var(--text-secondary);
    position: relative;
    max-width: 100%;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-desc {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
}

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

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-info li i {
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

/* Footer Bottom Disclaimer */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.age-disclaimer {
    font-size: 0.85rem;
    color: var(--accent-red);
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Lightbox Gallery Modal --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    z-index: 2000;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: var(--border-gold);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.lightbox-title {
    font-family: 'Cinzel', serif;
    font-size: 1.20rem;
    color: var(--accent-gold);
}

.lightbox-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Lightbox Controls */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-dark);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    z-index: 2010;
}

.lightbox-arrow:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

.lightbox-arrow-left {
    left: 2rem;
}

.lightbox-arrow-right {
    right: 2rem;
}

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Media Queries --- */

/* Tablet (Large) */
@media screen and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .artist-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .artist-img-wrapper {
        min-height: 350px;
    }
    
    .hygiene-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-aftercare-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile & Tablet (Small) */
@media screen and (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .nav-actions {
        display: none; /* Hide header action buttons on mobile */
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Responsive Mobile Navigation Drawer */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-normal);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-arrow-left {
        left: 0.5rem;
    }
    
    .lightbox-arrow-right {
        right: 0.5rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}
