/* MK Web Studio – Premium Website */

/* --- Variables --- */
:root {
    --primary: #c2a35d; /* Gold/Luxury Tone */
    --secondary: #0f172a; /* Deep Navy */
    --accent: #1e293b;
    --text-dark: #334155;
    --text-light: #f8fafc;
    --white: #ffffff;
    --bg-light: #f1f5f9;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; border-radius: 4px; }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 992px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
}

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--primary);
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.close-announcement {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 40px; /* Below announcement */
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.sticky {
    top: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
}

.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:hover { color: var(--primary); }

.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 2px;
}

/* --- Hero --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; }

/* --- Stats --- */
.stats {
    background: var(--white);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-item { text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); }

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-icon { font-size: 3rem; margin-bottom: 20px; display: block; }

/* --- Process --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.step { text-align: center; flex: 1; position: relative; }
.step-num {
    width: 60px; height: 60px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    line-height: 60px;
    margin: 0 auto 20px;
    font-weight: 700;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(194, 163, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 40px auto; }
.faq-item { border-bottom: 1px solid #ddd; padding: 20px 0; cursor: pointer; }
.faq-question { font-weight: 600; display: flex; justify-content: space-between; }
.faq-answer { height: 0; overflow: hidden; transition: var(--transition); padding-top: 0; opacity: 0; }
.faq-item.active .faq-answer { height: auto; padding-top: 15px; opacity: 1; }

/* --- Contact Form --- */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    background: var(--bg-light);
}

/* --- Floating Buttons --- */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn { background: #25d366; }
.call-btn { background: #34b7f1; }
.top-btn { background: var(--secondary); border: none; cursor: pointer; display: none; }

/* --- Footer --- */
.footer { background: #0a0f1a; color: white; padding: 80px 0 20px; }
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--secondary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.w-100 { width: 100%; }