/* 
  MI JEWELRY - Ultra-Luxury Cyber-Gold Edition
  Color Palette: 
  - Pure Black: #000000
  - Deep Onyx: #050505
  - Neon Gold: #FFD700
  - Luxury Gold: #D4AF37
  - Cyber Gold: #FFBF00
  - Glass: rgba(255, 255, 255, 0.03)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
    --primary-black: #000000;
    --deep-onyx: #050505;
    --neon-gold: #FFD700;
    --primary-gold: #D4AF37;
    --cyber-gold: #FFBF00;
    --text-grey: #A0A0A0;
    --light-grey: #1A1A1A;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --container-width: 1400px;
    --section-padding: 140px 0;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--primary-black);
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ANIMATED NEON MESH BACKGROUND */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--primary-black);
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: move 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0) 70%);
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0) 70%);
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30%, 20%) scale(1.1); }
    66% { transform: translate(-20%, 40%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold) 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 8s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.gold-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}



ul {
    list-style: none;
}

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

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-padding);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    text-align: center;
}

/* TEXT EFFECTS */
.gradient-text {
    background: linear-gradient(to right, #FFFFFF, var(--primary-gold), #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textShine 5s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.gold-glow {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 40px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--cyber-gold));
    color: var(--primary-black);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    font-weight: 700;
    border: none;
}

.btn-primary:hover {
    background: #FFFFFF;
    color: var(--primary-black);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255,255,255,0.15), 0 0 20px var(--primary-gold);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    background-color: transparent;
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}


.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* NAVBAR */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

nav.scrolled {
    background-color: var(--primary-black);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

nav.scrolled .logo-img {
    height: 45px;
}

/* Logo span removed in favor of image logo */

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

.nav-links a {
    color: var(--primary-white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInDown 1.2s ease forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease forwards 0.3s;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s ease forwards 0.6s;
    opacity: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* CATEGORY SECTION */
.category {
    background-color: var(--primary-white);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-head .divider {
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 0 auto 20px;
}

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

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--primary-white);
    transition: var(--transition);
}

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

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.4), rgba(0,0,0,0.6));
    box-shadow: inset 0 0 100px rgba(212, 175, 55, 0.3);
}

.category-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.category-overlay span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

/* DETAIL SECTION */
.detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.detail-item:nth-child(even) {
    direction: rtl;
}

.detail-item:nth-child(even) .detail-text {
    direction: ltr;
}

.detail-img {
    position: relative;
    height: 500px;
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.detail-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.detail-text p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-gold);
}

/* CUSTOM SECTION */
.custom-section {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.steps-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.steps-progress {
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: rgba(255,255,255,0.1);
    z-index: 1;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--primary-gold);
    transition: width 1s ease;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

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

.step-num {
    width: 80px;
    height: 80px;
    background-color: var(--primary-black);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step-item.active .step-num {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-grey);
    padding: 0 10px;
}

/* DETAILED SERVICES INFO */
.detailed-services-info {
    background-color: var(--primary-black);
    padding-top: 0;
}

.detailed-services-info .detail-item {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 100px;
}

.detailed-services-info .detail-item:last-child {
    border-bottom: none;
}

.detailed-services-info .detail-text h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
}

/* REPAIR SERVICES */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.repair-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.repair-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}


/* TESTIMONIALS */
.testimonials {
    background-color: #fafafa;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 20px;
}

.testimonial-slide i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    display: block;
}

.testimonial-slide p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-black);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-gold);
    width: 30px;
    border-radius: 10px;
}

/* CTA SECTION */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/watch.png') center/cover no-repeat;
    text-align: center;
    color: var(--primary-white);
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 40px;
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.contact-item span {
    color: var(--text-grey);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* FOOTER */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary-white);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-grey);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .detail-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .detail-item:nth-child(even) {
        direction: ltr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }
    .steps-progress {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
