:root {
    /* Colors */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    --text-muted: #d4d4d4;

    /* Accents - Classic DJ OK */
    --accent-blue: #00f3ff;
    --accent-purple: #bc13fe;
    --accent-glow: rgba(0, 243, 255, 0.3);

    --gradient-main: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-text: linear-gradient(to right, var(--accent-blue), #fff);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --header-height: 80px;
    --container-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-accent {
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

/* Sticky Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6), 0 0 20px rgba(0, 243, 255, 0.4);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--accent-blue);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* min-height: 100vh; Removed to reduce gap */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
    padding-bottom: 2rem;
}

/* Simulate cool background */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/background.jpg') center/cover no-repeat;
    opacity: 0.7;
    z-index: -1;
}

.hero-bg-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
}

.hero-container {
    padding-top: 312px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    /* Neon glow effect */
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 600px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Calendar Section */
.calendar-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.events-list {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-blue);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    margin-right: 1.5rem;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-blue);
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-info {
    flex: 1;
}

.event-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.event-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    background: rgba(188, 19, 254, 0.1);
    color: var(--accent-purple);
    border-radius: 20px;
    font-weight: 600;
}

/* Media Section */
.media-section {
    padding: 6rem 0;
    background: #0f0f0f;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-item {
    background: var(--bg-card);
    aspect-ratio: 16/9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.media-item:hover {
    border-color: var(--accent-purple);
}

.placeholder-content {
    text-align: center;
    color: var(--text-muted);
}

.placeholder-content svg {
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Booking Section */
.booking-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.booking-container {
    max-width: 700px;
}

.booking-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border-top: 4px solid var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.2rem;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 243, 255, 0.05);
}

/* Make date picker icon visible on dark background */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer style update */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #080808;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 0.5rem;
        /* Add small padding to prevent edge touching */
    }

    .logo {
        font-size: 1.2rem;
        /* Reduce logo size */
    }

    .header-actions {
        gap: 0.5rem;
        /* Reduce gap between elements */
    }

    .lang-switch {
        margin-right: 0.2rem !important;
        font-size: 0.85rem;
    }

    .main-nav {
        display: none !important;
        /* Keep original hide behavior for the ul list */
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 2rem;
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        display: flex !important;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-cta {
        padding: 0.4rem 0.7rem;
        /* Compact button */
        font-size: 0.7rem;
        white-space: nowrap;
        /* Prevent text wrap */
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }

    .hero-image-wrapper {
        width: 160px;
        height: 160px;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .event-date {
        margin-right: 0;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .event-venue {
        justify-content: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Social Links in Footer */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: #fff;
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

/* Hero Icon */
.hero-icon {
    width: 120px;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}

.hero-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.4));
}


.hero-icon img {
    mix-blend-mode: screen;
}


/* Override for subtitle alignment */
.hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: 100%;
}


/* Force nav items and button on same line */
.main-nav {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
}


/* Profile Image Zoom Effect */
.hero-image-wrapper {
    transition: transform 0.4s ease, z-index 0s, box-shadow 0.3s ease;
    cursor: pointer;
    transform-origin: top center;
}

.hero-image-wrapper.zoomed {
    transform: scale(2) translateY(0);
    z-index: 1000;
    position: relative;
}

.hero-image-wrapper:hover {
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    filter: brightness(1.1);
}

/* Media Link Styling */
.media-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.media-item:hover .visit-link {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.visit-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}


/* YouTube Video Thumbnail Styling */
.video-item {
    position: relative;
    overflow: hidden;
}

.media-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-item:hover .media-thumbnail {
    transform: scale(1.05);
}

.video-item:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}


/* Instagram Item Styling */
.instagram-item {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    position: relative;
}

.instagram-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    padding: 2rem;
}

.media-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.instagram-label {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.instagram-item .visit-link {
    color: rgba(255, 255, 255, 0.9);
}

.instagram-item:hover .visit-link {
    color: white;
}

.instagram-item:hover svg {
    transform: scale(1.1);
}

.instagram-content svg {
    transition: transform 0.3s ease;
}


/* Update Instagram background with disco image */
.instagram-item {
    background: url('../assets/disco-bg.png') center/cover no-repeat !important;
    overflow: hidden !important;
    position: relative;
}

.instagram-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    border-radius: inherit;
}

.instagram-content {
    position: relative;
    z-index: 1;
}

/* Photo Gallery styling */
.gallery-container {
    margin-top: 5rem;
}

.gallery-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Creating variations for identical placeholder images */
.variation-2 img {
    filter: hue-rotate(15deg) contrast(1.1);
}

.variation-3 img {
    filter: hue-rotate(-10deg) brightness(1.1);
    transform: scaleX(-1);
    /* Flip horizontally */
}

.variation-4 img {
    filter: hue-rotate(30deg) saturate(1.2);
}

.variation-5 img {
    filter: sepia(0.2) hue-rotate(-20deg) contrast(1.2);
    transform: scaleX(-1);
    /* Flip horizontally */
}

.variation-6 img {
    filter: hue-rotate(5deg) brightness(0.9) contrast(1.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-subtitle {
        font-size: 1.2rem;
    }
}

/* Enhanced Gallery & Lightbox */
.gallery-item::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 3rem;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    font-weight: 300;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item.non-clickable::before,
.gallery-item.non-clickable::after {
    display: none !important;
}

.gallery-item.non-clickable {
    cursor: default !important;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 243, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2010;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--accent-blue);
    background: rgba(0, 243, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* About Section */
.about-section {
    padding: 0 0 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 2rem;
}

.about-content h3 {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    position: relative;
    display: inline-block;
}

.about-content h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    margin-top: 0.5rem;
    border-radius: 2px;
}

.media-platform-label {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--accent-blue);
    line-height: 1;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent-blue));
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-muted);
    margin: 0.2rem 0;
}

.contact-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--accent-blue);
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Grid & Cards (Refined) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #111;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent-blue);
        background: #161616;
        box-shadow: 0 20px 40px rgba(0, 243, 255, 0.2);
    }
}

/* Base card - default border */
.service-card {
    /* Existing styles... */
    border: 2px solid rgba(255, 255, 255, 0.05);
    /* Default invisible-ish border */
}

/* Featured just adds the ribbon, NO BORDER changes here to avoid conflicts */
/* Featured just adds the ribbon, NO BORDER changes here to avoid conflicts */
.service-card.variant-featured {
    /* No border rules here! Inherits base. */
}

/* Selected state - The ONLY place that makes it blue */
/* Explicit border state - Active */
.service-card.border-active {
    border: 2px solid var(--accent-blue) !important;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15) !important;
    background: #161616 !important;
}

/* Explicit border state - Inactive */
.service-card.border-inactive {
    border: 2px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    background: #111;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
}

.service-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.service-cta {
    width: 100%;
    font-weight: 800;
    letter-spacing: 1px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button styles for cards */
.service-card .btn-outline {
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
    border-radius: 50px;
}

.service-card .btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border: none;
    border-radius: 50px;
}

/* Ribbon */
.service-card.variant-featured::before {
    content: "DOPORUČUJEME";
    position: absolute;
    top: 25px;
    right: -40px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    padding: 8px 45px;
    font-size: 0.7rem;
    font-weight: 900;
    transform: rotate(45deg);
    z-index: 2;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    /* Standardized Padding */
    background: var(--bg-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    /* Added Depth */
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 35px -5px rgba(0, 243, 255, 0.15);
    /* Soft Glow on Hover */
}

.stars {
    color: #ffd700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--accent-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    /* Standardized Padding */
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #111;
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

/* Accent border left for FAQ */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple));
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}