/* 
    IRON PET KUAFÖR - "Caring & Bright" Design System
    Art Direction: Light / Friendly / Welcoming
*/

:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F7FBFF;
    --accent-color: #4DA8DA;
    /* Sky Blue */
    --accent-warm: #FFB7B2;
    /* Soft Pink/Salmon */
    --accent-gold: #D4AF37;
    --text-main: #444444;
    --text-muted: #777777;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(77, 168, 218, 0.1);
    --transition-gentle: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 80px;
    --border-radius: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Quicksand', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.font-heading {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #2D3436;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Styling --- */
section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Header --- */
header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-gentle);
    display: flex;
    align-items: center;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 70px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.logo span {
    color: var(--accent-warm);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 600;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.03);
    padding: 5px 12px;
    border-radius: 30px;
}

.lang-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-gentle);
    padding: 2px 5px;
}

.lang-btn:hover {
    color: var(--accent-color);
}

.lang-btn.active {
    color: var(--accent-color);
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}

.btn-header {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 25px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(77, 168, 218, 0.3);
    white-space: nowrap;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2)), url('hero_bright_salon_1776414399253.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 650px;
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-gentle);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(77, 168, 218, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #3e96c5;
}

.btn-secondary {
    background: var(--accent-warm);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 183, 178, 0.3);
}

.btn-secondary:hover {
    transform: scale(1.05);
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--secondary-bg);
    padding: 40px 0;
    border-radius: 50px;
    margin: -50px 20px 0;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.trust-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.trust-item span {
    display: block;
    font-size: 2.22rem;
    font-weight: 800;
    color: var(--accent-color);
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

.service-card {
    background: #fff;
    border: 1px solid #f0f4f8;
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition-gentle);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-warm);
    margin-bottom: 20px;
    display: block;
}

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

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

/* --- About Section --- */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    box-shadow: var(--shadow-soft);
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: var(--border-radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-gentle);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Testimonials --- */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.test-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.test-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-warm);
    opacity: 0.2;
    line-height: 1;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.test-card p {
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 20px;
}

.test-author {
    font-weight: 700;
    color: var(--accent-color);
}

/* --- CTA Section --- */
.cta-section {
    background: var(--secondary-bg);
    text-align: center;
    border-radius: 50px;
    margin: 40px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* --- Footer --- */
footer {
    padding: 80px 0 30px;
    background: #FDFCF0;
    /* Creamy */
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p,
.footer-col li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: var(--text-muted);
}

/* --- Floating Actions --- */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--white);
    z-index: 1001;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.mobile-cta-flex {
    display: flex;
    height: 100%;
    padding: 8px;
    gap: 8px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.mobile-cta-btn.call {
    background: var(--accent-color);
    color: #fff;
}

.mobile-cta-btn.wa {
    background: #25D366;
    color: #fff;
}

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-gentle);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

    /* Header Mobile Logic */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-gentle);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-links ul li a {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .sticky-mobile-cta {
        display: block;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero {
        padding-top: 20px;
    }

    .btn-header {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}


/* --- Responsive Cleaned --- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}
/* =========================
   MOBILE RESPONSIVE PATCH
   ========================= */

@media (max-width: 992px) {
    header {
        height: 72px;
    }

    header.scrolled {
        height: 68px;
    }

    .logo {
        font-size: 1.3rem;
        line-height: 1.1;
        max-width: 170px;
    }

    .header-actions {
        gap: 10px;
    }

    .lang-switcher {
        padding: 4px 8px;
        gap: 6px;
    }

    .lang-btn {
        font-size: 0.72rem;
    }

    .btn-header {
        display: none;
    }

    .hero {
        height: auto;
        min-height: unset;
        justify-content: center;
        text-align: center;
        padding: 120px 0 70px;
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 34px 24px;
        border-radius: 28px;
    }

    .hero-content h1 {
        font-size: clamp(2.1rem, 8vw, 3rem);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-bar {
        margin: -20px 20px 0;
        padding: 28px 18px;
        border-radius: 28px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-title p {
        font-size: 1rem;
    }

    .about-flex {
        flex-direction: column;
        gap: 32px;
    }

    .cta-section {
        margin: 30px 20px;
        border-radius: 28px;
    }

    .cta-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .floating-whatsapp {
        width: 58px;
        height: 58px;
        font-size: 28px;
        right: 18px;
        bottom: 95px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 82px;
    }

    section {
        padding: 75px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 95px;
    }

    .hero-content {
        padding: 28px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.98rem;
    }

    .services-grid,
    .test-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .test-card {
        padding: 28px 22px;
    }

    .gallery-item {
        height: 220px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .trust-item span {
        font-size: 1.75rem;
    }

    .trust-item p {
        font-size: 0.92rem;
    }

    .sticky-mobile-cta {
        display: block;
        height: 72px;
    }

    .mobile-cta-flex {
        padding: 8px;
        gap: 8px;
    }

    .mobile-cta-btn {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.08rem;
        max-width: 140px;
    }

    .lang-switcher {
        padding: 3px 6px;
    }

    .lang-btn {
        font-size: 0.68rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.92rem;
    }

    .btn {
        padding: 13px 18px;
        font-size: 0.8rem;
    }

    .gallery-item {
        height: 190px;
    }

    .section-title h2,
    .cta-section h2 {
        font-size: 1.65rem;
    }

    .trust-bar {
        margin-left: 12px;
        margin-right: 12px;
        padding: 22px 14px;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 24px;
        right: 14px;
    }

    .mobile-cta-btn {
        font-size: 0.72rem;
        gap: 5px;
    }
}
/* =========================
   LANGUAGE SWITCHER UPGRADE
   ========================= */

.lang-switcher {
    display: flex;
    gap: 6px;
    background: rgba(0,0,0,0.04);
    padding: 4px;
    border-radius: 999px;
}

.lang-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

/* Hover */
.lang-btn:hover {
    color: var(--accent-color);
    background: rgba(77,168,218,0.1);
}

/* Aktif dil */
.lang-btn.active {
    color: #fff;
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(77,168,218,0.35);
    transform: scale(1.05);
}