/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px 0;
}

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

.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
    margin-right: 60px;
}

.nav-right {
    justify-content: flex-start;
    margin-left: 60px;
}

.nav-left a,
.nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #cccccc;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    z-index: -1;
    transition: all 0.3s ease;
}

.nav-logo:hover::before {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    transform: translate(-50%, -50%) scale(1.1);
}

.nav-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Hero Section with Full Body Tattoo Background */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/full_body_tattoo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 60%,
            rgba(0, 0, 0, 0.7) 85%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-special-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 30px;
    padding: 15px 30px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-special-offer i {
    color: #FFD700;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-special-offer span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    to {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero-button {
    display: inline-block;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #FFD700;
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-button:hover::before {
    left: 0;
}

.hero-button:hover {
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* WhatsApp Button Styling */
.hero-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 2px solid #25D366;
    color: #ffffff;
}

.hero-button.whatsapp::before {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.hero-button.whatsapp:hover {
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Phone Button Styling */
.hero-button.phone {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.hero-button.phone::before {
    background-color: #FFD700;
}

.hero-button.phone:hover {
    color: #000000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Hero Button Icons */
.hero-button i {
    margin-right: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-button:hover i {
    transform: scale(1.1);
}

/* Responsive Design for Hero Buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-button {
        width: 250px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-button {
        width: 200px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-button i {
        margin-right: 6px;
        font-size: 0.9rem;
    }
}

/* Scroll Indicator Arrow */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-arrow:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
}

.scroll-arrow i {
    font-size: 1.2rem;
}

/* Animation for scroll indicator */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.about-image {
    flex: 1.2;
    position: relative;
    overflow: visible;
    margin-left: -60px;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 3;
}

.image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 8%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.3) 32%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.05) 45%, transparent 50%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.3) 68%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.7) 82%, rgba(0, 0, 0, 0.85) 88%, rgba(0, 0, 0, 0.95) 92%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 8%, rgba(0, 0, 0, 0.85) 12%, rgba(0, 0, 0, 0.7) 18%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.3) 32%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.05) 45%, transparent 50%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.3) 68%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.7) 82%, rgba(0, 0, 0, 0.85) 88%, rgba(0, 0, 0, 0.95) 92%, rgba(0, 0, 0, 1) 100%);
    border-radius: 15px;
    pointer-events: none;
    z-index: 4;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    right: -80px;
    bottom: -80px;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 5%, rgba(0, 0, 0, 0.95) 8%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.8) 16%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.55) 25%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.05) 45%, transparent 50%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.8) 84%, rgba(0, 0, 0, 0.9) 88%, rgba(0, 0, 0, 0.95) 92%, rgba(0, 0, 0, 0.98) 95%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 5%, rgba(0, 0, 0, 0.95) 8%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.8) 16%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.55) 25%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.05) 45%, transparent 50%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0.25) 65%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.55) 75%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.8) 84%, rgba(0, 0, 0, 0.9) 88%, rgba(0, 0, 0, 0.95) 92%, rgba(0, 0, 0, 0.98) 95%, rgba(0, 0, 0, 1) 100%);
    border-radius: 50px;
    z-index: 1;
    filter: blur(50px);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 6%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.65) 15%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.02) 45%, transparent 50%, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.06) 60%, rgba(0, 0, 0, 0.12) 65%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.65) 85%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0.9) 94%, rgba(0, 0, 0, 0.98) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 6%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.65) 15%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.22) 30%, rgba(0, 0, 0, 0.12) 35%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.02) 45%, transparent 50%, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.06) 60%, rgba(0, 0, 0, 0.12) 65%, rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.65) 85%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 0.9) 94%, rgba(0, 0, 0, 0.98) 100%);
    border-radius: 30px;
    z-index: 2;
    filter: blur(25px);
}

.about-content {
    flex: 0.8;
    padding-left: 60px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    max-width: 500px;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-choose-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.4) contrast(1.1);
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.75) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.75) 75%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.why-choose-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 8%, rgba(0, 0, 0, 0.4) 15%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.4) 85%, rgba(0, 0, 0, 0.8) 92%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 8%, rgba(0, 0, 0, 0.4) 15%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.4) 85%, rgba(0, 0, 0, 0.8) 92%, rgba(0, 0, 0, 1) 100%);
    z-index: 1.5;
    pointer-events: none;
}

.why-choose-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1.8;
    pointer-events: none;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.why-choose-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.why-choose-info {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.why-choose-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    line-height: 1.2;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.1),
            rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.why-choose-point:hover::before {
    left: 100%;
}

.why-choose-point:hover {
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.15),
            rgba(255, 215, 0, 0.08));
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.point-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 215, 0, 0.4);
}

.point-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    border-color: #FFD700;
}

.point-content {
    flex: 1;
}

.point-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.point-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Staggered animation for grid items */
.why-choose-point:nth-child(1) {
    animation: fadeInUp 0.8s ease 0.1s both;
}

.why-choose-point:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.why-choose-point:nth-child(3) {
    animation: fadeInUp 0.8s ease 0.3s both;
}

.why-choose-point:nth-child(4) {
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

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

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.gallery-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

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

.gallery-info {
    color: #ffffff;
    z-index: 2;
}

.gallery-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-tags .tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Gallery Grid */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-info h4 {
        font-size: 1rem;
    }

    .gallery-tags .tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.gallery-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.gallery-view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.gallery-view-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.gallery-view-more-btn:hover i {
    transform: translateX(5px);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.services-grid:last-of-type {
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
}

.service-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin-top: 15px;
}

.service-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFD700;
    margin-bottom: 15px;
}

.service-btn {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #FFD700;
    transition: left 0.3s ease;
    z-index: -1;
}

.service-btn:hover::before {
    left: 0;
}

.service-btn:hover {
    color: #000000;
    transform: translateY(-2px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.25);
}

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

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 100%);
}

.service-card:hover .service-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.services-more {
    text-align: center;
    margin-top: 4rem;
}

.services-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.services-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.services-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.services-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments for services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }

    .service-card {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
    }

    .service-card {
        height: 300px;
    }

    .service-name {
        font-size: 1.3rem;
    }

    .service-price {
        font-size: 1rem;
    }

    .service-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Artists Section */
.artists-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.artists-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.artists-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.artists-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

/* Artists Carousel */
.artists-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    padding: 0 50px;
    /* Add padding for arrows */
}

.artist-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.artist-arrow-left {
    left: 0;
}

.artist-arrow-right {
    right: 0;
}

.artist-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.artist-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.artist-arrow i {
    font-size: 18px;
}

.artist-arrow:hover i {
    color: #FFD700;
}

.artists-viewport {
    width: 100%;
    overflow: hidden;
}

.artists-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%;
}

.artists-slide {
    flex: 0 0 50%;
    width: 50%;
    padding: 0 20px;
}

.artist-showcase {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.artist-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.artist-showcase.reverse {
    flex-direction: row-reverse;
}

.artist-main {
    flex: 0 0 280px;
}

.artist-portrait-large {
    width: 280px;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #333333;
}

.artist-portrait-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.2) contrast(1.1);
    transition: transform 0.3s ease;
}

.artist-portrait-large:hover img {
    transform: scale(1.02);
}

.artist-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #FF0000, #FF4444);
    padding: 10px 20px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.artist-name-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.artist-description {
    margin-top: 20px;
    padding: 0 5px;
}

.artist-description p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.5;
    text-align: justify;
}

.artist-work-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(3, 140px);
    gap: 12px;
    padding: 15px 0;
}

.work-image {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #222222;
}

.work-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: #FFD700;
}

.large-work {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.medium-work {
    grid-column: 2 / span 2;
    grid-row: auto;
}

.small-work {
    grid-column: auto;
    grid-row: auto;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.1) contrast(1.05);
    transition: all 0.3s ease;
}

.work-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.artist-book-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.artist-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #FFD700;
    transition: left 0.3s ease;
    z-index: -1;
}

.artist-book-btn:hover::before {
    left: 0;
}

.artist-book-btn:hover {
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .artist-showcase {
        gap: 20px;
        padding: 20px;
    }

    .artist-main {
        flex: 0 0 250px;
    }

    .artist-portrait-large {
        width: 250px;
        height: 350px;
    }

    .artist-name-large {
        font-size: 1.6rem;
    }

    .artist-work-grid {
        grid-template-rows: repeat(3, 120px);
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .artist-showcase,
    .artist-showcase.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 15px;
    }

    .artist-main {
        flex: none;
    }

    .artist-portrait-large {
        width: 220px;
        height: 300px;
        margin: 0 auto;
    }

    .artist-name-large {
        font-size: 1.4rem;
    }

    .artist-work-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 100px);
        max-width: 400px;
        margin: 0 auto;
    }

    .large-work {
        grid-column: span 2;
        grid-row: span 1;
    }

    .medium-work {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-color: #000000;
}

.divider-line {
    position: relative;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 20%, #FFD700 80%, transparent 100%);
}

.divider-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.divider-line::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
}

/* Location Section */
.location-section {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.location-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.location-address {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid #333333;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(-45deg, #1a1a1a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #1a1a1a 75%),
        linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 0%, rgba(34, 34, 34, 0.3) 20%, transparent 40%, rgba(34, 34, 34, 0.3) 60%, transparent 80%, rgba(34, 34, 34, 0.3) 100%),
        linear-gradient(0deg, transparent 0%, rgba(34, 34, 34, 0.3) 20%, transparent 40%, rgba(34, 34, 34, 0.3) 60%, transparent 80%, rgba(34, 34, 34, 0.3) 100%);
    background-size: 100px 100px, 100px 100px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 5;
}

.map-pin i {
    font-size: 2.5rem;
    color: #FFD700;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: pinBounce 2s ease-in-out infinite;
}

.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.map-control {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-control:hover {
    background-color: #FFD700;
    color: #000000;
    transform: scale(1.05);
}

@keyframes pinBounce {

    0%,
    100% {
        transform: translate(-50%, -100%) translateY(0);
    }

    50% {
        transform: translate(-50%, -100%) translateY(-10px);
    }
}

/* Footer Section */
.footer-section {
    background-color: #000000;
    position: relative;
    padding: 0 0 0 0;
}

.back-to-top {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #333333;
    border-radius: 50%;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
}

.back-to-top-btn i {
    font-size: 1.2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FFD700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 0;
    position: relative;
}

.footer-link:hover {
    color: #FFD700;
    padding-left: 8px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 4px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-info-item i {
    color: #FFD700;
    font-size: 1rem;
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-info-item div {
    flex: 1;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 4px;
}

.footer-text:last-child {
    margin-bottom: 0;
}

.footer-social {
    border-top: 1px solid #333333;
    padding-top: 20px;
}

.footer-social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #333333;
    border-radius: 50%;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px) scale(1.05);
}

.social-icon i {
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: #0a0a0a;
    border-top: 1px solid #333333;
    padding: 30px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #888888;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-link:hover {
    color: #FFD700;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.footer-bottom-link:hover::after {
    width: 100%;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    /* Footer - Mobile Fix - Proper Centering */
    .footer-section {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px !important;
        text-align: center !important;
    }

    .footer-column {
        text-align: center !important;
        margin-bottom: 35px !important;
    }
    
    .footer-title {
        text-align: center !important;
    }
    
    .footer-links {
        align-items: center !important;
    }
    
    .footer-info {
        align-items: center !important;
    }
    
    .footer-info-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-social {
        text-align: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: #000000;
    position: relative;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.faq-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
}

.faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    text-align: justify;
}

.faq-additional-questions {
    margin-bottom: 2rem;
}

.faq-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333333;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.2) contrast(1.1);
    transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #FFD700;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-minimal {
    display: flex;
    justify-content: center;
}

.contact-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    transition: all 0.3s ease;
}

.info-item:hover {
    color: #FFD700;
}

.info-item i {
    color: #FFD700;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.contact-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.contact-link:hover {
    color: #FFD700;
    text-decoration: none;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.info-item:hover .contact-link {
    color: #FFD700;
}

.info-item:hover i {
    transform: scale(1.1);
    color: #FFD700;
}

.contact-form-minimal {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #000000;
    color: #ffffff;
    padding: 8px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn-minimal {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    border: none;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 160px;
}

.submit-btn-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Sticky Stats Widget */
.sticky-stats {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: slideInLeft 0.8s ease-out 2s both;
}

/* Toggle Button (Always Visible) */
.stats-toggle-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    width: 50px;
    height: 80px;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    color: #000;
    font-weight: 600;
}

.stats-toggle-btn:hover {
    width: 55px;
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    box-shadow: 3px 0 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-50%) translateX(2px);
}

.stats-toggle-btn i {
    font-size: 16px;
    margin-bottom: 2px;
}

.toggle-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Stats Panel (Slides in/out) */
.stats-panel {
    position: absolute;
    left: -300px;
    /* Hidden by default */
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(13, 13, 13, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 0 15px 15px 0;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.stats-panel.open {
    left: 50px;
    /* Slide in next to toggle button */
}

/* Stats Header */
.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-title {
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stats-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stats-close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    transform: rotate(90deg);
}

/* Stats Content */
.stats-content {
    padding: 10px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.stat-icon i {
    color: #000000;
    font-size: 14px;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 0.75rem;
    color: #cccccc;
    margin-bottom: 2px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-stars {
    display: flex;
    gap: 2px;
}

.stat-stars i {
    color: #FFD700;
    font-size: 10px;
}

.stat-rating {
    font-size: 0.7rem;
    color: #4CAF50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sticky-stats {
        display: none;
        /* Hide on tablets and smaller devices */
    }
}

/* Animation for when stats panel opens */
.stats-panel.open .stat-item {
    animation: statsItemSlideIn 0.5s ease-out both;
}

.stats-panel.open .stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-panel.open .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-panel.open .stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stats-panel.open .stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes statsItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* Services Page Styles */

/* Services Navigation */
.services-nav {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px 0;
}

.services-nav .nav-container {
    justify-content: space-between;
    align-items: center;
}

.back-home,
.nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid transparent;
}

.back-home:hover,
.nav-contact:hover {
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

/* Services Hero with Background */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/tattoo_making_on_hand_color.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
}

.services-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.services-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #cccccc;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Services Content */
.services-content {
    background-color: #000000;
    padding: 80px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-category {
    margin-bottom: 80px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    font-size: 2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.size-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.size-pricing-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.size-pricing-card:hover::before {
    left: 100%;
}

.size-pricing-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.size-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 25px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.size-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.size-dimensions {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.size-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.size-examples {
    padding: 25px;
}

.example-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.size-pricing-card:hover .example-image img {
    transform: scale(1.05);
}

.example-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.example-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.example-samples {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 1rem;
}

.sample-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    display: block;
}

.sample-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.sample-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sample-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

/* Remove any last-child or nth-child styles that might affect the tags */
.sample-tags>*:last-child,
.sample-tags>*:nth-child(n) {
    margin: 0;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
}

/* Responsive Design for Aftercare */
@media (max-width: 1024px) {
    .aftercare-image-section {
        height: 250px;
    }

    .care-highlight {
        flex-direction: column;
        gap: 10px;
    }

    .highlight-item {
        flex-direction: row;
        gap: 8px;
    }

    .highlight-item i {
        font-size: 1.2rem;
    }

    .phase-steps {
        grid-template-columns: 1fr;
    }

    .instruction-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .aftercare-intro {
        padding: 30px 20px;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .intro-image {
        width: 250px;
        height: 150px;
    }

    .aftercare-image-section {
        height: 200px;
    }

    .care-highlight {
        padding: 10px;
    }

    .highlight-item span {
        font-size: 0.8rem;
    }

    .phase-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .warning-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .care-step {
        flex-direction: column;
        text-align: center;
    }

    .care-step i {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .warning-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }

    .products-title {
        font-size: 1.5rem;
    }
}

/* Blog Page Styles */
.featured-article {
    margin-bottom: 60px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.featured-image {
    border-radius: 15px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
}

.meta-item i {
    color: #FFD700;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888888;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 12px;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Reviews Page Styles */
.reviews-summary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    padding: 60px 0;
    margin-bottom: 60px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0.5rem;
}

.stat-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.stat-platform {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #888888;
}

.featured-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card.featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

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

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

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

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.reviewer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888888;
}

.review-platform i {
    font-size: 1rem;
    color: #FFD700;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.review-date,
.review-service {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888888;
}

.review-service {
    color: #FFD700;
    font-weight: 500;
}

.category-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-stat {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.category-stat:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(10px);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.category-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    min-width: 200px;
    margin: 0;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #B8860B);
    border-radius: 10px;
    transition: width 1s ease;
}

.rating-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    min-width: 60px;
    text-align: right;
}

/* Policy Pages Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.policy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.policy-text:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.policy-list li::before {
    content: '●';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info-box {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #FFD700;
    width: 20px;
    text-align: center;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #888888;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .featured-image {
        order: -1;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .category-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .category-info h4 {
        min-width: auto;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-input {
        width: 100%;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info-box {
        padding: 20px;
    }

    .meta-item {
        font-size: 0.8rem;
    }
}

/* Enhanced Category Sections */
.service-category {
    position: relative;
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/preparation_of_tattoo_making.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.service-category h2,
.service-category .pricing-grid,
.service-category .pricing-note,
.service-category .size-pricing-grid,
.service-category .notes-grid {
    position: relative;
    z-index: 2;
}

/* Enhanced Pricing Cards */
.pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hand_tattoo.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 0.08;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

/* Ensure content stays above background */
.pricing-header,
.service-features,
.pricing-note {
    position: relative;
    z-index: 2;
}

/* Size Pricing Cards Enhancement */
.size-pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.size-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.02) 0%,
            rgba(255, 215, 0, 0.05) 50%,
            rgba(255, 215, 0, 0.02) 100%);
    z-index: 1;
}

.size-pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

/* Services Content Background Enhancement */
.services-content {
    position: relative;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(10, 10, 10, 0.98) 50%,
            rgba(0, 0, 0, 0.95) 100%);
}

.services-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/full_back_tattoo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.03;
    z-index: 1;
}

.services-container {
    position: relative;
    z-index: 2;
}

/* ===== TRAINING PAGE ENHANCEMENTS ===== */

/* Training Hero with Background */
.training-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.training-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/full_front_tattoo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 1;
}

.training-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.training-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

/* Training Course Cards Enhancement */
.training-pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.training-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/tattoo_making_on_hand_color.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.training-pricing-card:hover::before {
    opacity: 0.08;
}

.training-pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

/* Training Category Sections */
.training-category {
    position: relative;
    margin-bottom: 70px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    padding: 40px;
}

.training-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/making_hand_tattoo.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    z-index: 1;
}

.training-category h2,
.training-category .pricing-grid,
.training-category .notes-grid {
    position: relative;
    z-index: 2;
}

/* Training Content Background */
.training-content {
    position: relative;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(15, 15, 15, 0.98) 50%,
            rgba(0, 0, 0, 0.95) 100%);
}

.training-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/full_body_tattoo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.02;
    z-index: 1;
}

.training-container {
    position: relative;
    z-index: 2;
}

/* Training CTA Section Enhancement */
.training-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    border-radius: 20px;
    padding: 50px;
    margin-top: 50px;
    overflow: hidden;
}

.training-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/preparation_of_tattoo_making.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 1;
}

.training-cta * {
    position: relative;
    z-index: 2;
}

/* Training Features Enhancement */
.training-features {
    position: relative;
    z-index: 2;
}

.training-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.training-feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.training-feature-icon i {
    color: #000;
    font-size: 20px;
}

/* Section Dividers for Training */
.training-section-divider {
    position: relative;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
    margin: 60px 0;
    border-radius: 3px;
}

.training-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.training-section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #000000;
    border-radius: 50%;
}

/* ===== RESPONSIVE DESIGN FOR SERVICES AND TRAINING PAGES ===== */

@media (max-width: 1024px) {

    .services-hero,
    .training-hero {
        min-height: 50vh;
    }

    .services-hero-content,
    .training-hero-content {
        padding: 1.5rem;
    }

    .service-category,
    .training-category {
        margin-bottom: 50px;
        padding: 30px;
    }

    .pricing-card,
    .training-pricing-card {
        padding: 25px;
    }

    .size-pricing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {

    .services-hero,
    .training-hero {
        min-height: 40vh;
    }

    .services-hero-content,
    .training-hero-content {
        padding: 1rem;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .service-category,
    .training-category {
        margin-bottom: 40px;
        padding: 20px;
        border-radius: 10px;
    }

    .pricing-card,
    .training-pricing-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Tattoo Pricing by Size - Mobile Responsive */
    .size-pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    .size-pricing-card {
        padding: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 20px !important;
        background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%) !important;
        border: 1px solid rgba(255, 215, 0, 0.2) !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .size-header {
        text-align: center !important;
        margin-bottom: 0 !important;
        padding: 25px 20px !important;
        border-bottom: 2px solid rgba(255, 215, 0, 0.2) !important;
        background: rgba(0, 0, 0, 0.4) !important;
    }

    .size-category {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
        color: #FFD700 !important;
    }

    .size-dimensions {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .size-price {
        font-size: 1.6rem !important;
        margin-top: 0 !important;
        font-weight: 800 !important;
        color: #FFD700 !important;
    }

    .size-examples {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 25px 20px !important;
    }

    .example-image {
        width: 100% !important;
        height: 220px !important;
        margin-bottom: 0 !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
    }

    .example-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .example-content {
        width: 100% !important;
        padding: 0 !important;
    }

    .example-content h4 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
        text-align: left !important;
        color: #FFD700 !important;
        font-weight: 600 !important;
    }

    .example-list {
        text-align: left !important;
        margin-bottom: 20px !important;
        padding-left: 0 !important;
    }

    .example-list li {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .example-samples {
        border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
        padding-top: 15px !important;
        margin-top: 15px !important;
    }

    .sample-title {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .sample-tags {
        gap: 8px !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }

    .sample-tag {
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
        border-radius: 15px !important;
        background: rgba(255, 215, 0, 0.1) !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
        color: #FFD700 !important;
    }

    .training-section-divider {
        margin: 40px 0;
    }

    .training-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    /* Fix for background attachment on mobile */
    .services-content::before,
    .training-content::before {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {

    .services-hero,
    .training-hero {
        min-height: 35vh;
    }

    .services-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-subtitle {
        font-size: 0.9rem;
    }

    .service-category,
    .training-category {
        margin-bottom: 30px;
        padding: 15px;
    }

    .pricing-card,
    .training-pricing-card {
        padding: 15px;
    }

    .pricing-header .service-name {
        font-size: 1.1rem;
    }

    .price-range {
        font-size: 1.1rem;
    }

    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .training-section-divider {
        margin: 30px 0;
    }

    .training-cta {
        padding: 25px 15px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }
}

/* ===== STYLE SHOWCASE GRIDS FOR TATTOO STYLES PAGE ===== */
.style-showcase {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.showcase-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.showcase-img:hover {
    transform: scale(1.05);
    border-color: #ff6b6b;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .showcase-img {
        height: 100px;
    }
}

/* Cursive Tagline Override - Added for tattoo-style lettering */
.hero-tagline {
    font-family: "Dancing Script", cursive !important;
    font-size: 2.2rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 1px !important;
    font-style: italic !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* End of cursive tagline override */

/* Rolling Text Animation for Hero Special Offer - Fixed Version */
.hero-special-offer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1)) !important;
    border: 2px solid rgba(255, 215, 0, 0.4) !important;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    margin-bottom: 3rem !important;
    backdrop-filter: blur(10px) !important;
    animation: glow 2s ease-in-out infinite alternate !important;
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-special-offer i {
    color: #FFD700 !important;
    font-size: 1.2rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
    z-index: 2 !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.hero-special-offer .offer-text-container {
    flex: 1 !important;
    overflow: hidden !important;
    position: relative !important;
    height: 1.5em !important;
    display: flex !important;
    align-items: center !important;
}

.hero-special-offer .offer-text-rolling {
    font-family: "Montserrat", sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #FFD700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
    animation: rollText 6s linear infinite !important;
    position: absolute !important;
    top: 0 !important;
    width: 100% !important;
    text-align: left !important;
}

@keyframes rollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* End of rolling text animation */




/* Hero Background Video Styling - Fixed Z-Index */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Hide the background image when video is present */
.hero-background {
    z-index: 0 !important;
    opacity: 0 !important;
}

/* Show background image only on mobile or when video fails to load */
@media (max-width: 768px) {
    .hero-video-background {
        display: none;
    }

    .hero-background {
        opacity: 1 !important;
        z-index: 1 !important;
    }
}

/* Video fallback for older browsers */
@supports not (object-fit: cover) {
    .hero-video-background {
        display: none;
    }

    .hero-background {
        opacity: 1 !important;
        z-index: 1 !important;
    }
}

/* Ensure content and overlay stay on top */
.hero-overlay {
    z-index: 2 !important;
    background: rgba(0, 0, 0, 0.4) !important;
}

.hero-content {
    z-index: 3 !important;
    position: relative !important;
}

/* Hide video controls */
.hero-video-background .hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video-background .hero-video::-webkit-media-controls-panel {
    display: none !important;
}

/* Additional video optimization */
.hero-video {
    pointer-events: none;
}

/* End of hero video styling */

/* ===== NEW GALLERY MASONRY LAYOUT ===== */
.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 200px;
    gap: 20px;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-dark);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.medium {
    grid-row: span 1;
}

.gallery-item.small {
    grid-row: span 1;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

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

.gallery-info {
    color: #ffffff;
    z-index: 2;
}

.gallery-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gallery-tags .tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-zoom-btn {
    align-self: flex-end;
    background: var(--accent-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-zoom-btn:hover {
    background: var(--accent-gold-hover);
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    margin-top: 2rem;
}

.gallery-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.gallery-view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gallery-view-more-btn i {
    transition: transform 0.3s ease;
}

.gallery-view-more-btn:hover i {
    transform: translateX(5px);
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.modal-info {
    padding: 25px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    background: var(--accent-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    font-size: 1.2rem;
}

.modal-nav-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

/* ===== RESPONSIVE GALLERY ===== */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 180px;
        gap: 15px;
    }

    .gallery-item.featured,
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

    .gallery-item.featured,
    .gallery-item.large,
    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-info h4 {
        font-size: 1rem;
    }

    .gallery-tags .tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .gallery-zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .modal-image {
        max-height: 60vh;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-info h3 {
        font-size: 1.3rem;
    }

    .modal-nav {
        padding: 0 10px;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 10px;
    }

    .gallery-item.featured,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===== SERVICE TAGS STYLING ===== */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
    justify-content: center;
}

.service-tag {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.service-tag:hover {
    background: white;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Style tags in tattoo pages */
.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
    justify-content: center;
}

.style-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.style-tag:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.artist-work-samples {
    width: 100%;
    margin-top: 30px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.work-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.view-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Update services more button to use the unified style */
.services-more-btn {
    composes: view-more-btn;
}

/* Update gallery view more button to use the unified style */
.gallery-view-more-btn {
    composes: view-more-btn;
}

/* Update gallery CTA styling */
.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Update services more section styling */
.services-more {
    text-align: center;
    margin-top: 3rem;
}

/* Unified View More Button Style */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #000000;
}

.view-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Container styling */
.gallery-cta,
.services-more {
    text-align: center;
    margin-top: 3rem;
}

/* Remove old button styles */
.services-more-btn,
.gallery-view-more-btn {
    display: none;
}

/* Sample Tags Styling */
.sample-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.sample-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sample-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

/* Remove any last-child or nth-child styles that might affect the tags */
.sample-tags>*:last-child,
.sample-tags>*:nth-child(n) {
    margin: 0;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* Tattoo Styles Page Styles */
.style-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 2rem;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.style-content:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.style-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.style-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.style-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: justify;
}

.style-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
}

.feature-item i {
    color: #FFD700;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.style-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.style-pricing h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.style-pricing .price-range {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFD700;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.price-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.4;
    text-align: center;
}

.style-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.example-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.style-showcase {
    margin-top: 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.showcase-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

/* Style Tags */
.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.style-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.style-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .style-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .style-content {
        padding: 20px;
    }

    .style-title {
        font-size: 1.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .style-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Tattoo Style Divider */
.style-divider {
    position: relative;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
    margin: 60px 0;
    border-radius: 3px;
}

.style-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.style-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #000000;
    border-radius: 50%;
}

/* Services CTA Section */
.services-cta {
    text-align: center;
    padding: 60px;
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.services-cta:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.cta-btn.secondary:hover {
    background: #FFD700;
    color: #000000;
    transform: translateY(-3px);
}

.cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-cta {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

.blog-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}
/* ========================================
   COMPREHENSIVE RESPONSIVE STYLES
   Mobile & Tablet - All Pages
   ======================================== */

/* ===== TABLET STYLES (768px - 1024px) ===== */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-left,
    .nav-right {
        gap: 25px;
    }
    
    .nav-left a,
    .nav-right a {
        font-size: 13px;
    }
    
    /* Services Nav */
    .services-nav .nav-container {
        padding: 0 20px;
    }
    
    .back-home span,
    .nav-contact span {
        display: none;
    }
    
    .back-home,
    .nav-contact {
        padding: 0.5rem 1rem;
    }
    
    /* Hero Sections */
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Container */
    .container {
        padding: 0 30px;
    }
    
    .services-container {
        padding: 0 30px;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE STYLES (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Base - Improved Typography & Spacing */
    html {
        font-size: 16px; /* Better readability */
    }
    
    body {
        line-height: 1.8; /* More breathing room for text */
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    /* Section Spacing - More Breathing Room */
    section {
        padding: 60px 0 !important;
        margin-bottom: 40px;
    }
    
    .section-divider {
        margin: 50px 0 !important;
    }
    
    /* Navigation - Mobile Fix - Make Links Clickable */
    .navbar {
        top: 0;
        padding: 15px 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1000;
    }
    
    .nav-container {
        padding: 0 20px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1001;
    }
    
    .nav-logo {
        order: 1;
        width: 100%;
        text-align: center;
        margin: 10px 0 15px 0;
        position: relative;
        z-index: 1002;
    }
    
    .nav-logo img {
        max-width: 120px;
        height: auto;
    }
    
    .nav-left,
    .nav-right {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin: 0;
        flex-wrap: wrap;
        position: relative;
        z-index: 1003;
        display: flex;
        flex-direction: row;
    }
    
    /* Navigation - Two Rows Layout with Proper Spacing */
    .nav-left {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
        padding: 0;
    }
    
    .nav-right {
        width: 100%;
        justify-content: center;
        margin-top: 0;
        padding: 0;
    }
    
    /* Ensure nav links are properly spaced in rows */
    .nav-left li:not(:last-child),
    .nav-right li:not(:last-child) {
        margin-right: 8px;
    }
    
    .nav-left li,
    .nav-right li {
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 0 0 auto;
    }
    
    .nav-left a,
    .nav-right a {
        font-size: 12px;
        padding: 8px 18px;
        display: block;
        position: relative;
        z-index: 1004;
        pointer-events: auto;
        cursor: pointer;
        background: rgba(255, 215, 0, 0.1);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 20px;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .nav-left a:hover,
    .nav-right a:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.5);
        transform: translateY(-2px);
    }
    
    /* FAQ Section Homepage - Horizontal Scroll on Mobile */
    .faq-section {
        padding: 60px 0 !important;
    }
    
    .faq-container {
        padding: 0 20px !important;
    }
    
    .faq-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }
    
    .faq-content {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding: 10px 0 30px 0 !important;
        margin: 0 -20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .faq-content::-webkit-scrollbar {
        height: 6px;
    }
    
    .faq-content::-webkit-scrollbar-track {
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
    }
    
    .faq-content::-webkit-scrollbar-thumb {
        background: rgba(255, 215, 0, 0.5);
        border-radius: 10px;
    }
    
    .faq-left,
    .faq-right {
        flex: 0 0 auto !important;
        width: 85vw !important;
        max-width: 320px !important;
        scroll-snap-align: start !important;
    }
    
    .faq-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .faq-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .faq-section .faq-item {
        padding: 20px !important;
        border-radius: 15px !important;
        margin-bottom: 0 !important;
        background: rgba(255, 215, 0, 0.08) !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        min-height: 200px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .faq-section .faq-question {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
        text-transform: uppercase !important;
    }
    
    .faq-section .faq-answer {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        flex: 1 !important;
        text-align: left !important;
    }
    
    .faq-image {
        width: 100% !important;
        height: 200px !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        margin-bottom: 20px !important;
        flex-shrink: 0 !important;
    }
    
    .faq-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .faq-additional-questions {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    /* Services Nav - Mobile */
    .services-nav .nav-container {
        padding: 15px 20px;
        flex-wrap: nowrap;
    }
    
    .services-nav .nav-logo {
        order: 2;
        width: auto;
        margin: 0;
    }
    
    .services-nav .nav-logo img {
        max-width: 100px;
    }
    
    .services-nav .back-home {
        order: 1;
        padding: 0.5rem;
    }
    
    .services-nav .back-home span {
        display: none;
    }
    
    .services-nav .nav-contact {
        order: 3;
        padding: 0.5rem 1rem;
    }
    
    .services-nav .nav-contact span {
        display: none;
    }
    
    /* Hero Sections */
    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .services-hero {
        min-height: 50vh; /* Taller hero */
        padding: 100px 0 60px;
    }
    
    .services-hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .services-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    /* Section Titles - Better Typography */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        padding-bottom: 15px;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    }
    
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    /* About Section - Better Mobile Layout */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-content {
        flex-direction: column !important;
        gap: 30px;
        width: 100% !important;
        order: 2;
        padding-left: 0 !important;
        flex: none !important;
    }
    
    .about-image {
        width: 100% !important;
        order: 1;
        margin-bottom: 30px;
        margin-left: 0 !important;
        flex: none !important;
    }
    
    .about-image::before,
    .about-image::after {
        display: none !important;
    }
    
    .about-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 400px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        position: relative !important;
    }
    
    .image-gradient {
        display: none !important;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .about-text {
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 25px;
        text-align: left;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .about-text:last-child {
        margin-bottom: 0;
    }
    
    /* Services Grid - Better Mobile Design */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* More space between cards */
    }
    
    .service-card {
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        min-height: 350px; /* Taller cards for better image display */
    }
    
    .service-card img {
        width: 100%;
        height: 250px; /* Larger image area */
        object-fit: cover;
    }
    
    .service-content {
        padding: 25px;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .service-name {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .service-price {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    /* Artists - Better Mobile Cards */
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* More space between artist cards */
    }
    
    .artist-card {
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .artist-card img {
        width: 100%;
        max-width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 25px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }
    
    .artist-name {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .artist-role {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    /* Pricing - Better Mobile Cards */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* More space between pricing cards */
    }
    
    .pricing-card {
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        margin-bottom: 30px;
        border: 2px solid rgba(255, 215, 0, 0.2);
    }
    
    /* Tattoo Pricing by Size - Mobile Match Other Cards (Override Duplicate) */
    .size-pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }

    .size-pricing-card {
        padding: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 20px !important;
        background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%) !important;
        border: 1px solid rgba(255, 215, 0, 0.2) !important;
        overflow: hidden !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }

    .size-header {
        text-align: center !important;
        margin-bottom: 0 !important;
        padding: 25px 20px !important;
        border-bottom: 2px solid rgba(255, 215, 0, 0.2) !important;
        background: rgba(0, 0, 0, 0.4) !important;
    }

    .size-category {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
        color: #FFD700 !important;
        font-weight: 700 !important;
    }

    .size-dimensions {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .size-price {
        font-size: 1.6rem !important;
        margin-top: 0 !important;
        font-weight: 800 !important;
        color: #FFD700 !important;
    }

    .size-examples {
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 25px 20px !important;
    }

    .example-image {
        width: 100% !important;
        height: 220px !important;
        margin-bottom: 0 !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
    }

    .example-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .example-content {
        width: 100% !important;
        padding: 0 !important;
    }

    .example-content h4 {
        font-size: 1.2rem !important;
        margin-bottom: 15px !important;
        text-align: left !important;
        color: #FFD700 !important;
        font-weight: 600 !important;
    }

    .example-list {
        text-align: left !important;
        margin-bottom: 20px !important;
        padding-left: 0 !important;
        list-style: none !important;
    }

    .example-list li {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .example-samples {
        border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
        padding-top: 15px !important;
        margin-top: 15px !important;
    }

    .sample-title {
        font-size: 0.9rem !important;
        margin-bottom: 12px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        display: block !important;
    }

    .sample-tags {
        gap: 8px !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        display: flex !important;
    }

    .sample-tag {
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
        border-radius: 15px !important;
        background: rgba(255, 215, 0, 0.1) !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
        color: #FFD700 !important;
    }
    
    .example-list {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    /* FAQ - Better Mobile Layout */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px; /* More space between FAQ items */
    }
    
    .faq-item {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 15px;
        background: rgba(255, 215, 0, 0.08);
        border: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .faq-question {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0;
        margin-bottom: 15px;
    }
    
    .faq-answer {
        font-size: 1rem;
        line-height: 1.8;
        padding-top: 15px;
    }
    
    .faq-answer p {
        margin-bottom: 15px;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        margin: 15px 0;
        padding-left: 25px;
    }
    
    .faq-answer li {
        margin-bottom: 10px;
        line-height: 1.7;
    }
    
    .category-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-btn {
        width: 100%;
        padding: 0.7rem 1rem;
    }
    
    /* FAQ Search */
    #faq-search {
        font-size: 0.9rem;
        padding: 0.8rem 2.5rem 0.8rem 1rem;
    }
    
    /* Contact Section - Better Mobile Layout */
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
    
    .contact-info-minimal {
        padding: 30px 25px !important;
        border-radius: 20px !important;
    }
    
    .contact-quick-info {
        gap: 25px !important;
    }
    
    .info-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    .info-item i {
        font-size: 1.4rem !important;
        margin-right: 15px;
    }
    
    .contact-link {
        font-size: 1rem !important;
        line-height: 1.7;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .whatsapp-contact-section {
        padding: 30px 20px;
    }
    
    .whatsapp-icon-wrapper {
        width: 90px !important;
        height: 90px !important;
        margin-bottom: 25px;
    }
    
    .whatsapp-icon-wrapper i {
        font-size: 2.8rem !important;
    }
    
    /* Footer - Mobile Fix - Proper Centering */
    .footer-section {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .footer-column {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 35px !important;
    }
    
    .footer-column:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-title {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        color: #FFD700 !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .footer-link {
        font-size: 0.95rem !important;
        padding: 8px 0 !important;
        text-align: center !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .footer-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .footer-info-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .footer-info-item i {
        font-size: 1.3rem !important;
        color: #FFD700 !important;
        margin-bottom: 5px !important;
    }
    
    .footer-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .footer-social {
        margin-top: 25px !important;
        text-align: center !important;
    }
    
    .footer-social-title {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    .social-icons {
        display: flex !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-bottom {
        margin-top: 40px !important;
        padding-top: 30px !important;
        border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    
    .footer-copyright {
        font-size: 0.85rem !important;
        text-align: center !important;
    }
    
    .footer-bottom-links {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
    }
    
    .footer-bottom-link {
        font-size: 0.85rem !important;
        text-align: center !important;
    }
    
    /* Blog - Better Mobile Cards */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 35px; /* More space between blog cards */
    }
    
    .blog-card {
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .blog-card img {
        width: 100%;
        height: 250px; /* Larger blog images */
        object-fit: cover;
    }
    
    .blog-card-content {
        padding: 25px;
    }
    
    .blog-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .blog-card p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    /* Reviews - Better Mobile Cards */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* More space between reviews */
    }
    
    .review-card {
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .review-text {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .review-author {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    /* CTA Sections */
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    /* Stats Widget */
    .sticky-stats {
        display: none;
    }
    
    /* Section Dividers */
    .section-divider {
        margin: 40px 0;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-btn {
        width: 45px;
        height: 45px;
    }
    
    /* Why Choose Section - Better Mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-point {
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
        margin-bottom: 20px;
    }
    
    .point-number {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .point-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .point-description {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* ===== SMALL MOBILE STYLES (max-width: 480px) ===== */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-left,
    .nav-right {
        gap: 10px;
    }
    
    .nav-left a,
    .nav-right a {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .nav-logo img {
        max-width: 100px;
    }
    
    /* Hero */
    .hero {
        min-height: 50vh;
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content .lead {
        font-size: 0.9rem;
    }
    
    .services-hero {
        min-height: 35vh;
        padding: 60px 0 30px;
    }
    
    .services-hero-title {
        font-size: 1.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    /* Cards - Consistent Mobile Styling */
    .service-card,
    .pricing-card,
    .artist-card,
    .review-card {
        padding: 25px 20px;
    }
    
    /* Text Content Improvements */
    p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    ul, ol {
        margin: 20px 0;
        padding-left: 25px;
    }
    
    li {
        margin-bottom: 10px;
        line-height: 1.7;
    }
    
    /* Buttons */
    .hero-btn,
    .cta-btn,
    .contact-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }
    
    /* Footer */
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-item {
        height: 200px;
    }
    
    /* Blog */
    .blog-card img {
        height: 180px;
    }
}

/* ===== LANDSCAPE MOBILE ORIENTATION ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
    }
    
    .services-hero {
        min-height: 50vh;
    }
    
    .nav-left,
    .nav-right {
        gap: 15px;
    }
}

/* ===== RESPONSIVE FOR INLINE STYLES ===== */
@media (max-width: 768px) {
    /* Contact Section Inline Styles */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info-minimal {
        padding: 2rem 1.5rem !important;
    }
    
    .contact-quick-info {
        gap: 1.5rem !important;
    }
    
    .info-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    
    .info-item i {
        font-size: 1.2rem !important;
    }
    
    .contact-buttons-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .contact-btn {
        width: 100% !important;
    }
    
    /* FAQ Search Inline Styles */
    #faq-search {
        font-size: 0.9rem !important;
        padding: 0.8rem 2.5rem 0.8rem 1rem !important;
    }
    
    /* FAQ Category Filters */
    .category-filters {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .category-btn {
        width: 100% !important;
        padding: 0.7rem 1rem !important;
    }
    
    /* Services CTA Inline Styles - Better Mobile */
    .services-cta {
        padding: 3rem 2rem !important;
        margin-top: 4rem !important;
        border-radius: 25px !important;
    }
    
    .cta-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .cta-text {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        margin-bottom: 2.5rem !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .cta-btn {
        width: 100% !important;
        padding: 1.2rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    /* Contact Section */
    .contact-info-minimal {
        padding: 1.5rem 1rem !important;
    }
    
    .contact-quick-info {
        gap: 1rem !important;
    }
    
    .info-item {
        font-size: 0.9rem !important;
    }
    
    /* FAQ */
    #faq-search {
        font-size: 0.85rem !important;
        padding: 0.7rem 2rem 0.7rem 0.8rem !important;
    }
    
    /* Services CTA */
    .services-cta {
        padding: 1.5rem 1rem !important;
    }
    
    .cta-title {
        font-size: 1.5rem !important;
    }
    
    .cta-text {
        font-size: 0.9rem !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer-section,
    .back-to-top,
    .sticky-stats {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
