/* Modern New Generation Design - Lion Koltuk ve Halı Yıkama */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #050505;
    --gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #D4AF37, #F4C430, #D4AF37);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --font-heading: 'Outfit', sans-serif;
    /* Modern Sans-serif */
    --font-body: 'Inter', sans-serif;
}


body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

#gold-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    /* Base gradient */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar - Glassmorphism */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

/* Navbar Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 60px;
    width: 60px;
    /* Force square for perfect circle */
    border-radius: 50%;
    /* Make it round */
    object-fit: cover;
    /* Crop content to circle */
    border: 2px solid var(--gold);
    /* Optional premium border */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand-lion {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-suffix {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: capitalize;
    /* Ensures nice casing */
}

.cta-button {
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    /* Fully rounded modern button */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

/* Hero Section - Immersive */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('assets/hero_bg.png') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9));
    /* Gradient Overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    /* Massive Modern Type */
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-size: 3.5rem;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Mobile Hero Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        /* Significantly smaller for mobile */
    }

    .hero-title .highlight {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        /* Force override inline styles if needed, or better clean up inline first */
        padding: 0 15px;
    }
}

/* Secondary Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Services Section - Modern Cards with Images */
.services {
    padding: 120px 5%;
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}


/* --- New Premium Services (Zig-Zag Layout) --- */
.services-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    /* Apple crispness */
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.015em;
    /* Tighter Apple-style tracking */
    gap: 100px;
    position: relative;
    width: 100%;
}

.service-row {
    display: flex;
    align-items: flex-start;
    /* Changed from center to allow sticky to work better */
    justify-content: space-between;
    gap: 50px;
    position: relative;
    padding: 20px 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img-col {
    flex: 1;
    position: relative;
    min-height: 400px;
    /* Ensure height for image */
}

.sticky-col {
    position: sticky;
    top: 120px;
    z-index: 5;
    height: fit-content;
}

.img-frame {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.img-frame:hover img {
    transform: scale(1.1);
}

.service-text-col {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-num {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.service-title {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
}

.service-desc {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.service-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #eee;
}

.service-features i {
    color: #000;
    background: var(--gold);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.btn-small {
    padding: 12px 35px;
    font-size: 0.9rem;
    align-self: flex-start;
}

/* Update Sticky for About Section too */
.about-image {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    /* Required for sticky in flexbox to work */
}

/* Mobile Responsive for new Layout */
@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .service-text-col {
        padding: 0;
    }

    .sticky-col {
        position: relative;
        /* Disable sticky on mobile */
        top: 0;
    }

    .service-num {
        font-size: 5rem;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .service-row.reverse .service-num {
        left: 50%;
        right: auto;
    }
}


/* Mobile Bottom Menu (Hidden on Desktop) */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 900px) {

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .service-img-col {
        width: 100%;
    }

    .sticky-col {
        position: static;
    }

    .service-num {
        display: none;
        /* Hide big number on mobile */
    }

    .service-text-col {
        text-align: center;
        align-items: center;
    }

    .btn-small {
        align-self: center;
    }

    /* Show Mobile Bottom Menu */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 0.75rem;
        gap: 5px;
    }

    .nav-item i {
        font-size: 1.2rem;
        color: var(--gold);
    }

    /* Hide WhatsApp float on mobile as it's in the bottom nav */
    .whatsapp-float {
        display: none !important;
    }
}


/* --- Corporate Additions --- */

/* Stats Bar */
.stats-bar {
    background-color: var(--gold);
    color: #000;
    padding: 30px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 10;
    margin-top: -1px;
    /* Connects smoothly to hero if needed, or sits below */
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 120px 5%;
    background-color: #0b0b0b;
    /* Slightly lighter than main bg for contrast */
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: -20px 20px 0 rgba(212, 175, 55, 0.1);
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 10px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--gold);
}

/* Process Section */
.process-section {
    padding: 120px 5%;
    background: var(--bg-dark);
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 120px 5%;
    background-color: #0b0b0b;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #222;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.client-name {
    margin-top: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.client-role {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Contact Form Section */
.contact-section {
    padding: 120px 5%;
    background: url('assets/hero_bg.png') fixed no-repeat center center/cover;
    position: relative;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.85);
    position: absolute;
    inset: 0;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
    font-family: var(--font-body);
}

.form-group select option {
    background-color: #0b0b0b;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-submit {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

.form-submit:hover {
    transform: scale(1.02);
}

/* Responsive Adjustments for new sections */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-container {
        padding: 30px 20px;
    }
}


/* --- Ultra Modern Additions --- */


/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approx height */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--gold);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 600px) {
    .slider-container {
        height: 300px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}


/* Footer - Clean Modern */
.footer {
    padding: 60px 5%;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    opacity: 0.9;
    border: 2px solid #333;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title .highlight {
        font-size: 1.5rem;
    }

    .nav-cta,
    .hero-buttons .btn-outline {
        display: none;
        /* Simplify on mobile */
    }

    .navbar {
        padding: 15px 20px;
    }

    .services {
        padding: 60px 20px;
    }
}