/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    cursor: default;
}

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

.tab-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.4rem 0;
    transition: 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #fff;
}
.tab-btn.active {
    color: #2563eb;
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #2563eb;
    border-radius: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* ===== PAGES ===== */
.page {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page.active-page {
    display: block;
    animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6)), url('images/m340igas.jpg');
    background-size: cover;      /* was cover */
    background-repeat: no-repeat;  /* new */
    background-position: center 40%;
    background-attachment: fixed;
    padding: 0 1.5rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15), transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero h1 span {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 14px 38px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2563eb;
    box-shadow: none;
}
.btn-outline:hover {
    background: rgba(37, 99, 235, 0.1);
}


/* ===== SECTIONS ===== */
.section {
    padding: 5rem 5%;
}

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

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
}

.section-header h2 span {
    color: #2563eb;
}

.section-header .sub {
    color: #888;
    font-size: 1rem;
    margin-top: 0.3rem;
}

/* ===== SERVICE CARDS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(8px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    cursor: default;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.card h3 {
    color: #2563eb;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: #aaa;
    margin-bottom: 0.8rem;
}

.card .btn-small {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
}

.card .btn-small:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* ===== CONTACT BANNER ===== */
.contact-banner {
    text-align: center;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.contact-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-banner .email {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== GALLERY ===== */
/* ===== WORK CARDS (Mixed Media) ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* was 320px */
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.work-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.work-image {
    position: relative;
    height: 300px; /* was 220px */
    overflow: hidden;
}

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

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

/* Video Thumbnail */
.video-thumbnail {
    cursor: pointer;
}

.video-thumbnail video {
    display: none;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-thumbnail:hover .play-button-overlay {
    background: rgba(37, 99, 235, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Tags */
.work-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #2563eb;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.work-tag.video-tag {
    background: #dc2626;
}

.work-info {
    padding: 1.2rem 1.5rem;
}

.work-info h3 {
    color: #2563eb;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.work-info p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.work-date {
    color: #666;
    font-size: 0.8rem;
}

/* ===== FORM ===== */
.form-wrap {
    max-width: 580px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ccc;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
}

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

/* ===== SUCCESS MESSAGE ===== */
.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

/* ===== PAYMENT ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(8px);
    padding: 1.8rem 1.2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.payment-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
}

.payment-card .icon {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.payment-card h3 {
    color: #2563eb;
    margin-bottom: 0.3rem;
}

.payment-card .detail {
    font-weight: 700;
    color: #fff;
    margin-top: 0.3rem;
    font-size: 0.95rem;
}

.policy-box {
    max-width: 800px;
    margin: 2rem auto 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 0.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-row:last-child {
    border-bottom: none;
}

.policy-row span:last-child {
    color: #2563eb;
    font-weight: 700;
}

.note {
    text-align: center;
    margin-top: 1.5rem;
    color: #888;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
    background: #050505;
    text-align: center;
    padding: 2rem;
    color: #555;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0.8rem 5%;
    }
    .nav-tabs {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .tab-btn {
        font-size: 0.8rem;
    }
    .hero h1 {
        font-size: 2.6rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .section {
        padding: 3rem 5%;
    }
    .form-wrap {
        padding: 1.5rem;
    }
    .policy-row {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== INSTAGRAM LINK ===== */
.instagram-link {
    margin-top: 1rem;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #E4405F;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid #E4405F;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.instagram-link a:hover {
    background: #E4405F;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(228, 64, 95, 0.3);
}

.instagram-link a i {
    font-size: 1.4rem;
}
/* ===== TIKTOK LINK ===== */
.tiktok-link {
    margin-top: 1rem;
}

.tiktok-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 2px solid #fff;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.tiktok-link a:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.tiktok-link a i {
    font-size: 1.4rem;
}
/* ===== SHOP INFO (Hours + Location) ===== */
.shop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
}

.info-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span:first-child {
    color: #ccc;
}

.hour-row span:last-child {
    font-weight: 600;
    color: #fff;
}

.hours-note {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Address */
.address {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.address p {
    margin: 0;
}

/* Map Button */
.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #2563eb;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .shop-info-grid {
        grid-template-columns: 1fr;
    }
    
    .hour-row {
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
    }
}