/* Custom CSS for Malatya Halı Yıkama - Premium Corporate Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --primary: #0B132B; /* Deep Ocean Blue */
    --primary-light: #1E293B;
    --accent: #00D4FF; /* Vibrant Aqua/Teal */
    --accent-hover: #00B4D8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #0B132B;
    --text-body: #475569;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 8px 24px rgba(0, 212, 255, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-accent);
    animation: pulse-accent 3s infinite;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--bg-white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    animation: pulse-green 3s infinite;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* Keyframe Animations */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-accent {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(11, 19, 43, 0); /* Transparent initially */
}

.site-header.scrolled {
    background: rgba(11, 19, 43, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent);
}

.header-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #060B14 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, rgba(0,212,255,0) 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, rgba(0,212,255,0) 70%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--bg-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

.hero-visual {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 24px 40px rgba(0,0,0,0.2);
}

.glass-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.service-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.service-item-icon svg { width: 14px; height: 14px; }

.stats-card {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: var(--bg-white);
    padding: 20px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.stats-text h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.stats-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Info Bar */
.info-bar {
    background: var(--bg-white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.info-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.info-text p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.service-card::after {
    display: none;
}

.s-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
    transition: none;
}

.s-icon svg { 
    width: 32px; 
    height: 32px; 
    transition: none;
}

.service-card:hover .s-icon {
    background: var(--primary);
    color: var(--accent);
    transform: none;
    box-shadow: none;
}

.service-card:hover .s-icon svg {
    transform: none;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-body);
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.f-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.f-icon svg { width: 28px; height: 28px; }

.f-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.process-wrapper {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
}

.process-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 32px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-text h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.step-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Areas Section */
.areas {
    padding: 100px 0;
    background: var(--bg-light);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.area-tag {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.area-tag svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

.area-tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a p {
    padding-bottom: 24px;
    color: var(--text-body);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-a {
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #060B14 100%);
    color: white;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.c-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.c-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 auto 20px;
}

.c-card h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.c-card p, .c-card a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.map-wrapper {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: #040810;
    padding: 60px 0 24px;
    color: rgba(255,255,255,0.6);
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.nap {
    font-style: normal;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-copy {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    font-size: 0.875rem;
}

.footer-kws {
    margin-top: 16px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* Floating WA */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.float-wa svg {
    width: 32px;
    height: 32px;
}

.float-wa:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none; /* Hover durumunda durdurup statik olarak büyümesini sağlayalım */
}

.nav-mobile-footer {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .trust-badges {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .why-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        background: rgba(11, 19, 43, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .site-header.menu-open {
        background: #0B132B !important;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .logo-icon svg {
        width: 20px;
        height: 20px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 19, 43, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 24px 32px 24px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        border-bottom: 3px solid var(--accent);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        pointer-events: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        padding: 16px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 1.05rem;
        width: 100%;
        display: block;
        text-align: left;
        transition: var(--transition);
        color: rgba(255,255,255,0.9);
    }

    .main-nav a::after {
        display: none !important;
    }

    .main-nav a:hover, .main-nav a:active {
        color: var(--accent);
        padding-left: 12px;
        background: rgba(255,255,255,0.02);
    }

    /* Mobildeki menü altı hızlı iletişim bilgileri paneli */
    .main-nav .nav-mobile-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px dashed rgba(255,255,255,0.15);
    }

    .main-nav .nav-mobile-footer .nm-title {
        font-family: 'Outfit', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 4px;
        text-align: left;
    }

    .main-nav .nav-mobile-footer a.nm-link {
        display: inline-flex !important;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem !important;
        padding: 12px 18px !important;
        background: rgba(255,255,255,0.05) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        font-weight: 500 !important;
        color: rgba(255,255,255,0.9) !important;
        width: auto !important;
        text-align: left !important;
        transition: var(--transition) !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }

    .main-nav .nav-mobile-footer a.nm-link svg {
        flex-shrink: 0;
        color: var(--accent);
    }

    .main-nav .nav-mobile-footer a.nm-link:hover, 
    .main-nav .nav-mobile-footer a.nm-link:active {
        background: rgba(255,255,255,0.1) !important;
        color: var(--accent) !important;
        padding-left: 18px !important;
        border-color: rgba(0, 212, 255, 0.3) !important;
    }

    .main-nav .nav-mobile-footer a.nm-link.nm-wa {
        background: rgba(37, 211, 102, 0.1) !important;
        border-color: rgba(37, 211, 102, 0.25) !important;
        color: #25D366 !important;
    }

    .main-nav .nav-mobile-footer a.nm-link.nm-wa svg {
        color: #25D366;
    }

    .main-nav .nav-mobile-footer a.nm-link.nm-wa:hover,
    .main-nav .nav-mobile-footer a.nm-link.nm-wa:active {
        background: rgba(37, 211, 102, 0.15) !important;
        border-color: rgba(37, 211, 102, 0.5) !important;
        color: #25D366 !important;
    }

    .main-nav .nav-mobile-footer .nm-hours {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.5);
        margin-top: 8px;
        text-align: center;
    }

    .header-cta {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
        margin-left: auto;
        z-index: 1001;
    }

    .info-item {
        width: 100%;
    }

    .glass-card {
        padding: 24px;
    }

    .stats-card {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 20px auto 0;
        max-width: 280px;
        justify-content: center;
    }

    .process-wrapper {
        padding: 32px 20px;
    }
}