/* =======================================
   Apollon Tattoo Studio - Style.css
   Final Premium Optimized Version
   Aesthetic: Dark Luxury / Premium Glassmorphism
======================================= */

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

:root {
    /* Premium Color Palette */
    --gold: #c9a84c;
    --gold-light: #f0d98a;
    --gold-dark: #9a7a32;
    --gold-glow: rgba(201, 168, 76, 0.2);
    --accent: #8b0000;
    --dark-bg: #030303;
    --dark-surface: #0a0a0a;
    --dark-card: #111111;
    --text-main: #ede8e0;
    --text-muted: #888888;
    --text-dim: #555555;
    --glass-bg: rgba(10, 10, 10, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(201, 168, 76, 0.25);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-mid: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll; /* Prevent layout shift */
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    /* Support safe area insets for notched devices */
    padding-top: max(0px, env(safe-area-inset-top));
    padding-bottom: max(0px, env(safe-area-inset-bottom));
}

/* Noise Texture Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

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

ul {
    list-style: none;
}

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

/* Responsive images */
@supports (width: min(100vw, 1000px)) {
    img {
        max-width: min(100%, 100vw);
    }
}

/* --- Utility Classes --- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.center {
    text-align: center;
}

.text-gold {
    color: var(--gold) !important;
}

.text-dark {
    color: var(--dark-bg) !important;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--gold);
}

.section-tag.text-dark::before {
    background: var(--dark-bg);
}

.section-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 30px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark-bg) !important;
    box-shadow: 0 0 25px var(--gold-glow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
    color: var(--dark-bg) !important;
}

.btn-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    gap: 0.8rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
    transform: translateY(0);
    /* Safe area for notched devices */
    padding-top: max(1.5rem, env(safe-area-inset-top));
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border-gold);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 48px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(237, 232, 224, 0.75);
    text-transform: uppercase;
}

.nav-item:hover {
    color: var(--gold);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--gold-glow);
    border: 1px solid var(--glass-border-gold);
    color: var(--gold) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--dark-bg) !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--gold);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gold);
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* --- Mobile Menu Overlay --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 3, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-link {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: #fff;
}

.mobile-link:hover {
    color: var(--gold);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    height: 100dvh; /* Use dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem; /* Space for fixed navbar */
}

/* --- Hero Slideshow --- */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: kenburns 20s infinite linear;
}

.hero-slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow .slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slideshow .slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-slideshow .slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes kenburns {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    7.5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    32.5% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.65);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding-left: 8%;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: #fff;
    background: linear-gradient(160deg, #fff 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 3.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(237, 232, 224, 0.4);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mouse {
    width: 25px;
    height: 42px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* --- About & Stats --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.about-text {
    position: relative;
}

.about-decor {
    position: absolute;
    top: -50px;
    left: -50px;
    opacity: 0.5;
    z-index: -1;
    animation: rotateSlow 20s linear infinite;
}

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

.lead-text {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--trans-mid);
    text-align: center;
}

.stat-box:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: var(--glass-border-gold);
    transform: translateY(-5px);
}

.stat-num {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.stat-icon-decor {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.08;
    transform: rotate(15deg);
    transition: var(--trans-mid);
    z-index: 1;
}

.stat-box:hover .stat-icon-decor {
    opacity: 0.25;
    transform: rotate(0deg) scale(1.2);
}

.image-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.fluid-img {
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
    width: 100%;
    border: 1px solid var(--glass-border);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-gold);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

/* --- Why Choose Us --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.why-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 1.5rem;
    transition: var(--trans-mid);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.why-card::before {
    content: attr(data-number);
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 6rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--gold);
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
    transition: var(--trans-mid);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border-gold);
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.why-card:hover::before {
    opacity: 0.08;
    transform: scale(1.1) translate(-10px, 10px);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    transition: var(--trans-mid);
    display: inline-block;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--gold-light);
}

.why-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 3rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    flex-grow: 1;
}

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

.service-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 3.5rem 2rem;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--trans-mid);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

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

.service-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-btn {
    margin-top: auto;
    width: auto;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border-gold);
}

/* --- Bento Pricing --- */
.bento-pricing {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 1.5rem;
}

.bento-item {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--trans-mid);
}

.bento-item:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-8px);
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: 0.8s;
}

.bento-item:hover .bento-bg {
    opacity: 0.4;
    transform: scale(1.05);
}

.bento-content {
    position: relative;
    z-index: 5;
}

.bento-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.bento-item h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bento-price {
    font-size: 3.5rem;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 1rem;
}

.bento-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.bento-features {
    margin: 2rem 0;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.bento-features i {
    color: var(--gold);
    font-size: 0.9rem;
}

.bento-item.featured {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-item.small-col {
    grid-column: span 4;
    min-height: 320px;
}

.bento-item.medium-col {
    grid-column: span 8;
    min-height: 280px;
}

.bento-item.long {
    grid-column: span 12;
    min-height: 280px;
}




.long-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* --- Artist --- */
.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.artist-frame {
    position: relative;
}

.frame-border {
    position: absolute;
    inset: 15px;
    border: 1px solid var(--glass-border-gold);
    border-radius: 4px;
    pointer-events: none;
    z-index: 5;
}

.artist-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
    z-index: 10;
    padding: 10px;
}

.artist-badge .years {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.artist-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gold-light);
    text-align: center;
    margin-top: 5px;
}

.artist-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-text strong {
    display: block;
    font-size: 1.1rem;
}

.stat-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.portfolio-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--trans-mid);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
}

.portfolio-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.portfolio-img-wrapper img,
.portfolio-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0, 0.2, 1);
    display: block;
}

.portfolio-card:hover img,
.portfolio-card:hover video {
    transform: scale(1.1);
}

.video-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.portfolio-card:hover .video-play-indicator {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
}

.portfolio-details {
    padding: 2rem;
}

.category {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
}

.portfolio-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.portfolio-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Testimonials --- */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
}

.stars i {
    color: var(--gold);
    margin-right: 3px;
}

.rating-text {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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

.testimonial-box {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 4px;
    transition: var(--trans-fast);
    position: relative;
}

.testimonial-corner-logo {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 5;
    transition: transform 0.3s ease;
}

.testimonial-box:hover .testimonial-corner-logo {
    transform: scale(1.1) rotate(5deg);
}

.testimonial-box:hover {
    border-color: var(--glass-border-gold);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--glass-border-gold);
    flex-shrink: 0;
    line-height: 1;
}

.author-details h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

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

.google-icon {
    color: #4285F4;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- FAQ --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

/* --- Booking --- */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.booking-watermark-logo {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.booking-info, .booking-card {
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-bg);
    font-weight: 700;
}

.contact-text span {
    color: rgba(3, 3, 3, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.address-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.address-link:hover .contact-text span {
    color: var(--dark-bg);
}

.address-link:hover .icon-box {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

/* --- Footer --- */
.footer {
    padding: 6rem 0 3rem;
    /* Support safe area insets for notched devices */
    padding-bottom: max(3rem, calc(3rem + env(safe-area-inset-bottom)));
    background: #020202;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.footer-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid ul li {
    margin-bottom: 1rem;
}

.footer-grid ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-grid ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-seo-tags {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-cloud span {
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    transition: 0.3s;
}

.tag-cloud span:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-glow);
}

.footer-seo-areas {
    padding: 2.5rem;
    background: rgba(212, 175, 55, 0.03);
    border-left: 3px solid var(--gold);
    margin: 3rem 0;
    border-radius: 0 4px 4px 0;
}

.footer-seo-areas h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-seo-areas p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-seo-areas strong {
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.developer-tag a {
    color: var(--gold-dark);
    transition: 0.3s;
}

.developer-tag a:hover {
    color: var(--gold);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    max-width: 450px;
    z-index: 5000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-gold);
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: none;
}

.cookie-banner.active {
    display: block;
    animation: slideUp 0.6s ease;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #ccc;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* --- Reveal Animations --- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
    transform: translateY(20px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Certificate Modal --- */
.cert-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}
.cert-lightbox.active {
    display: flex;
    opacity: 1;
}
.cert-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}
.cert-lightbox-close:hover {
    color: var(--gold);
}
.cert-modal-content {
    background: var(--dark-card);
    border: 1px solid var(--glass-border-gold);
    border-radius: 8px;
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}
.cert-modal-content::-webkit-scrollbar {
    width: 8px;
}
.cert-modal-content::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
.cert-modal-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.cert-item {
    position: relative;
    padding-bottom: 141.4%; /* A4 aspect ratio */
    height: 0;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--trans-mid);
    background: #fff;
}
.cert-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.cert-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    pointer-events: none;
}
.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
}
.cert-item:hover .cert-overlay {
    opacity: 1;
}
.cert-overlay i {
    color: var(--gold);
    font-size: 2.2rem;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cert-item:hover .cert-overlay i {
    transform: scale(1);
}

/* --- Certificate Zoom Modal --- */
.cert-zoom-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.96);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 11000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(15px);
}
.cert-zoom-lightbox.active {
    display: flex;
    opacity: 1;
}
.cert-zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 12000;
}
.cert-zoom-close:hover {
    color: var(--gold);
}
.cert-zoom-content {
    width: 90%;
    max-width: 800px;
    height: 85vh;
    background: #fff;
    border: 2px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cert-zoom-lightbox.active .cert-zoom-content {
    transform: scale(1);
}
.cert-zoom-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 4.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .about-grid,
    .artist-grid,
    .booking-wrapper {
        gap: 3rem;
    }

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

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

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .video-test-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .btn {
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-content {
        padding-left: 5%;
        text-align: center;
        max-width: 100%;
        padding-right: 5%;
        padding-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-grid,
    .artist-grid,
    .booking-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-us-grid,
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .artist-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .bento-item.featured,
    .bento-item.small-col,
    .bento-item.medium-col,
    .bento-item.long {
        grid-column: span 12 !important;
        min-height: 350px;
    }

    .long-flex {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        text-align: left;
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: span 2;
    }

    .btn {
        padding: 1rem 2.2rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Navbar Mobile */
    .nav-container {
        padding: 0 1.5rem;
    }

    .logo {
        gap: 12px;
    }

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }

    /* Hero Content */
    .hero-content {
        padding: 3rem 1.5rem;
    }

    /* Grid Layouts */
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .why-us-grid,
    .stats-container,
    .footer-grid,
    .about-grid,
    .artist-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .video-test-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-wrapper {
        padding: 2.5rem 1.5rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Cards */
    .service-card,
    .why-card,
    .artist-card,
    .testimonial-card,
    .booking-card {
        padding: 2rem 1.5rem;
    }

    .why-icon {
        font-size: 2.5rem;
    }

    .service-icon {
        font-size: 2.8rem;
    }

    .artist-name {
        font-size: 1.2rem;
    }

    /* Portfolio */
    .portfolio-item {
        aspect-ratio: 1;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand-col {
        grid-column: span 1;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-logo-img {
        width: 45px;
        height: 45px;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Modal & Lightbox Fixes for Mobile */
    .cert-modal-content, .cert-zoom-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 85vh;
    }
    
    .cert-lightbox-close, .cert-zoom-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    /* Corner Pic Auto-Scale for Mobile */
    .corner-pic {
        width: 110px !important;
        height: 140px !important;
        bottom: -15px !important;
        right: -10px !important;
        left: auto !important;
        border-width: 3px !important;
    }
    
    .experience-badge {
        left: -10px;
        right: auto;
        bottom: 10px;
        transform: scale(0.85);
    }

    /* Text sizes */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    /* FAQ */
    .faq-item {
        padding: 1.2rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .video-wrapper {
        height: 300px;
    }
}

/* Extra Small Devices (Phones under 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding-left: 2rem;
        margin-bottom: 1rem;
    }

    /* Navbar Mobile */
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    /* Hero Content */
    .hero-content {
        padding: 2rem 1rem;
    }

    /* About Cards & Grids */
    .about-grid,
    .artist-grid,
    .services-grid,
    .why-us-grid,
    .booking-wrapper,
    .testimonial-grid,
    .cert-grid,
    .video-test-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us-grid {
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        font-size: 2rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
        margin: 0.8rem 0;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    /* Artist Cards */
    .artist-card {
        padding: 0;
    }

    .artist-info {
        padding: 1rem;
    }

    .artist-name {
        font-size: 1.1rem;
    }

    .artist-role {
        font-size: 0.85rem;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item {
        aspect-ratio: 1;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }

    /* Video Testimonials */
    .video-wrapper {
        height: 250px;
    }

    .video-note {
        padding: 1rem;
    }

    .video-note p {
        font-size: 0.85rem;
    }

    /* Booking Section */
    .booking-card {
        padding: 1.5rem 1rem;
    }

    .booking-title {
        font-size: 1.2rem;
    }

    /* FAQ */
    .faq-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 0.8rem 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
    }

    .footer-logo-text {
        font-size: 1.3rem;
    }

    /* Text sizes */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    /* Certifications Grid */
    .cert-grid {
        gap: 1rem;
    }

    .cert-item {
        padding: 1rem;
    }

    .cert-item img {
        max-height: 80px;
    }
}

/* --- Video Testimonials --- */
.video-test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-test-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-test-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--glass-border-gold);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-note {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.video-note p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.video-note p::before {
    content: '"';
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 5px;
}

.video-note p::after {
    content: '"';
    color: var(--gold);
    font-size: 1.2rem;
    margin-left: 5px;
}

/* --- IMAGE LOADING FALLBACK (LOGO PLACEHOLDER) --- */
.portfolio-img-wrapper, .image-frame, .cert-zoom-content {
    background: var(--dark-bg) url('../images/logo.webp') center center no-repeat;
    background-size: 30%;
    position: relative;
}

img {
    color: transparent; /* Hides broken alt text */
}

/* --- Form Elements & Inputs (Mobile Friendly) --- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: var(--font-body);
    background: var(--dark-surface);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-size: 16px;
}

/* Touch-friendly sizing for mobile */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 1rem 0.9rem;
        min-height: 44px; /* Touch-friendly size */
    }

    textarea {
        min-height: 120px;
    }

    /* Touch-friendly links and buttons */
    a, button, [role="button"] {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Ensure buttons are touch-friendly */
    .btn {
        min-height: 44px;
    }

    /* Mobile nav accessibility */
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improve link tap targets */
    .nav-item,
    .mobile-link {
        padding: 0.8rem 0;
    }
}

/* Extra touch adjustments for small phones */
@media (max-width: 480px) {
    a, button, [role="button"] {
        min-height: 48px;
        min-width: 48px;
    }

    .btn {
        min-height: 48px;
        padding: 0.8rem 1.2rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        min-height: 48px;
        font-size: 16px;
    }
}

/* --- Premium Leave Review (Yorum Bırak) Modal --- */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-modal.active {
    display: flex;
    opacity: 1;
}

.review-modal-content {
    background: var(--dark-card, #111111);
    border: 1px solid var(--glass-border-gold, rgba(212, 175, 55, 0.25));
    border-radius: 20px;
    padding: 3.5rem 3rem;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-modal.active .review-modal-content {
    transform: scale(1);
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #888;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.review-modal-close:hover {
    color: var(--gold, #d4af37);
    transform: rotate(90deg);
}

.review-modal h2 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: var(--white, #ffffff);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.review-subtitle {
    color: #aaa;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.review-form label {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea,
.review-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.review-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
    padding-right: 3rem;
    cursor: pointer;
}

.review-form select option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #555;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
    border-color: var(--gold, #d4af37);
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* Star Rating System */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-top: 0.3rem;
}

.star-rating input {
    display: none !important;
}

.star-rating label {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--gold, #d4af37);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.star-rating label:hover {
    transform: scale(1.2);
}

/* Success Card Inside Modal */
.review-success-card {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.success-icon-wrapper i {
    color: var(--gold, #d4af37);
    font-size: 2.5rem;
    animation: checkmarkGrow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.review-success-card h3 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.review-success-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Custom Dynamic Review Badges */
.local-review-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold, #d4af37);
    color: var(--gold, #d4af37);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmarkGrow {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal Scrollbar customization */
.review-modal-content::-webkit-scrollbar {
    width: 6px;
}
.review-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.review-modal-content::-webkit-scrollbar-thumb {
    background: var(--gold, #d4af37);
    border-radius: 3px;
}

/* Delete Review Button */
.delete-review-btn {
    background: transparent;
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.delete-review-btn:hover {
    background: #ff4d4d;
    color: #fff;
}