/* ==========================================================
   Ehlikeyf Masaj Salonu Konya - Custom CSS
   ========================================================== */

:root {
    --primary: #b08968;
    --primary-dark: #8b6a4a;
    --primary-light: #d4b896;
    --accent: #7f5539;
    --dark: #2b2b2b;
    --text: #4a4a4a;
    --muted: #7a7a7a;
    --light: #faf6f1;
    --bg-soft: #f5ede2;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark); font-weight: 600; line-height: 1.3; }

a { color: var(--primary); text-decoration: none; transition: all .25s ease; }
a:hover { color: var(--primary-dark); }

.btn { font-family: var(--font-body); font-weight: 500; letter-spacing: .3px; transition: all .3s ease; }

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 137, 104, .35);
}

.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.btn-outline-light:hover { color: var(--primary); }

.btn-light:hover { background: var(--light); color: var(--primary-dark); }

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 18px; }
.section-subtitle { color: var(--muted); max-width: 700px; margin: 0 auto; }

/* ===== Top Bar ===== */
.top-bar {
    background-color: var(--dark);
    color: rgba(255,255,255,.85);
    font-size: 14px;
}
.top-bar a { color: rgba(255,255,255,.85); margin-left: 14px; font-size: 16px; }
.top-bar a:hover { color: var(--primary-light); }
.top-bar i { color: var(--primary-light); }

/* ===== Navbar ===== */
.navbar {
    background-color: #fff;
    padding: 16px 0;
    transition: all .3s ease;
}
.navbar-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-main { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--primary); }
.brand-sub { font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

.navbar .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px !important;
    position: relative;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary);
}
.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #3d2c1f 0%, #6b4a31 40%, #b08968 100%);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 184, 150, 0.15) 0%, transparent 50%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20zm-30 0c0-11 9-20 20-20s20 9 20 20-9 20-20 20-20-9-20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-tagline {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
}
.hero-title span { color: var(--primary-light); font-style: italic; }
.hero-desc { max-width: 700px; color: rgba(255,255,255,.9); font-size: 17px; margin-bottom: 32px; }
.hero-buttons .btn { margin-top: 10px; }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #3d2c1f 0%, #6b4a31 100%);
    padding: 130px 0 60px;
    position: relative;
}
.page-header h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
}
.page-header .breadcrumb { margin: 0; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,.85); }
.page-header .breadcrumb-item.active { color: var(--primary-light); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ===== Features ===== */
.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(176, 137, 104, .3);
}
.feature-card h3 { color: var(--dark); margin-bottom: 10px; font-family: var(--font-heading); }

/* ===== About ===== */
.about-img-wrapper { position: relative; padding: 20px; }
.about-img {
    width: 100%;
    height: 520px;
    background: linear-gradient(135deg, #b08968 0%, #7f5539 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.about-img::before {
    content: "\F2A0";
    font-family: "bootstrap-icons";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    color: rgba(255,255,255,.15);
}
.about-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
}
.badge-number { font-family: var(--font-heading); font-size: 44px; font-weight: 700; color: var(--primary); line-height: 1; }
.badge-text { font-size: 13px; color: var(--muted); font-weight: 500; line-height: 1.3; }

.about-list li { padding: 6px 0; color: var(--text); }
.about-list i { color: var(--primary); margin-right: 10px; font-size: 18px; }

/* ===== Service Cards ===== */
.service-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 16px;
    height: 100%;
    transition: all .35s ease;
    border: 1px solid rgba(0,0,0,.06);
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 16px; }
.service-link { font-weight: 500; color: var(--primary); }
.service-link:hover { color: var(--primary-dark); }

/* ===== Benefits ===== */
.benefit-item {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all .3s ease;
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-item i { color: var(--primary); font-size: 22px; flex-shrink: 0; margin-top: 3px; }
.benefit-item p { color: var(--muted); }

/* ===== Massage Section (Sub-page) ===== */
.massage-section { scroll-margin-top: 100px; }
.massage-img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.massage-img::before {
    font-family: "bootstrap-icons";
    font-size: 160px;
    color: rgba(255,255,255,.22);
}
.massage-img-1 { background: linear-gradient(135deg, #b08968 0%, #7f5539 100%); }
.massage-img-1::before { content: "\F2A0"; } /* droplet */
.massage-img-2 { background: linear-gradient(135deg, #5a7d7c 0%, #2d4a4b 100%); }
.massage-img-2::before { content: "\F407"; } /* heart-pulse */
.massage-img-3 { background: linear-gradient(135deg, #d4b896 0%, #a88968 100%); }
.massage-img-3::before { content: "\F2F5"; } /* flower */
.massage-img-4 { background: linear-gradient(135deg, #6a4f3b 0%, #3d2c1f 100%); }
.massage-img-4::before { content: "\F3B6"; } /* hand */

.massage-list li { padding: 4px 0; }
.massage-list i { color: var(--primary); margin-right: 8px; font-size: 18px; }
.effect-item {
    padding: 6px 0;
    font-size: 15px;
    color: var(--text);
}
.effect-item i { color: var(--primary); font-size: 24px; margin-right: 2px; vertical-align: middle; }

.quick-nav .btn { font-size: 14px; }

/* ===== Accordion / FAQ ===== */
.accordion-item {
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--bg-soft);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--primary); }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #b08968 0%, #7f5539 100%);
    padding: 60px 0;
}
.cta-section h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.cta-section p { color: rgba(255,255,255,.9); margin: 0; }

/* ===== Contact ===== */
.contact-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all .3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--primary); }

.contact-form .form-control, .contact-form .form-select {
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    font-size: 15px;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(176, 137, 104, .15);
}
.form-label { font-weight: 500; font-size: 14px; color: var(--dark); }

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    line-height: 0;
}

/* ===== Footer ===== */
.footer {
    background: #1f1a15;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}
.footer h3 { color: #fff; font-family: var(--font-heading); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact li { margin-bottom: 10px; }
.footer-contact i { color: var(--primary-light); margin-right: 10px; width: 18px; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--primary-light); }
.footer hr { border-color: rgba(255,255,255,.1); }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    margin-right: 8px;
    transition: all .25s ease;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
    z-index: 1000;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    color: #fff;
    background: #1ebe57;
    transform: scale(1.1);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 16px 0 10px;
        margin-top: 12px;
        border-top: 1px solid rgba(0,0,0,.06);
    }
    .navbar .nav-item { margin: 4px 0; }
    .navbar .nav-link.active::after { display: none; }
    .hero { min-height: auto; padding: 120px 0 80px; }
    .about-img { height: 400px; }
    .about-badge { right: 20px; }
    .massage-img { height: 380px; }
    .page-header { padding: 110px 0 50px; }
    .cta-section .text-lg-end { text-align: center !important; margin-top: 20px; }
}

@media (max-width: 575.98px) {
    .about-img, .massage-img { height: 280px; }
    .about-img::before, .massage-img::before { font-size: 100px; }
    .about-badge { position: static; margin-top: -30px; display: inline-flex; }
    .hero-buttons .btn { display: block; margin: 8px auto; max-width: 260px; }
    .hero-buttons .btn + .btn { margin-left: auto !important; }
    .feature-card, .service-card, .contact-card { padding: 28px 20px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}
