:root {
    --primary-color: #1246D6;
    --secondary-color: #17295A;
    --theme-color: #c7a17a; 
    --text-color: #555555;
    --heading-color: #1a1a1a;
    --background-color: #FFFFFF;
    --light-bg: #f8f8f8;
    --border-color: #eaeaea;
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'Marcellus', serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
    background-color: var(--background-color);
}

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

.text-theme { color: var(--theme-color); }

.btn {
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

.material-icons {
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.material-icons.md-48 { font-size: 48px; }

.header .top-bar {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.header .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}
.header .contact-info li, .header .contact-info a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: 6px;
}
.header .contact-info .material-icons {
    font-size: 16px;
    color: var(--theme-color);
}

.header .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header .social-icons .social-label {
    opacity: 0.8;
    font-size: 12px;
}
.header .social-icons a {
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}
.header .social-icons a:hover { color: var(--theme-color); }

.header .main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    z-index: 100;
}

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

.header .logo img { height: 55px; width: auto; }

.mobile-menu-btn { display: none; }
.mobile-menu-header, .mobile-book-item { display: none; }

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}

.main-menu a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}
.main-menu a:hover, .main-menu a.active { color: var(--theme-color); }

.hero {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: url('/assets/img/bg-1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tagline {
    display: block;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 400;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}
.services-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}
.section-title-center {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--heading-color);
    margin-bottom: 80px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(25% - 23px);
    max-width: calc(25% - 23px);
    margin-top: 40px; 
}
.service-card:nth-last-child(-n+3) {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.card-inner {
    background: #fff;
    padding: 60px 20px 40px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}
.card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--theme-color);
}

.service-icon-circle {
    width: 90px;
    height: 90px;
    background-color: #c7a17a;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 4px solid #fff;
}
.service-icon-circle .material-icons {
    font-size: 40px;
    color: #f3f0ed;
}

.separator-dots {
    color: var(--theme-color);
    letter-spacing: 3px;
    font-size: 12px;
    margin: 15px 0 20px;
}

.service-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 400;
}
.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.quick-contact-section { margin-bottom: 0; }
.container-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.contact-info-box {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 100px 60px;
    width: 50%;
    box-sizing: border-box;
}
.contact-info-content h2 { font-family: var(--font-secondary); font-size: 2.5rem; }
.contact-info-content h3 { color: var(--theme-color); font-size: 12px; letter-spacing: 2px; margin-top: 30px; }

.contact-form-box {
    background-color: #fff;
    padding: 100px 60px;
    width: 50%;
    box-sizing: border-box;
}
.contact-form h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 10px 0 30px;
}
.contact-form .form-group { position: relative; }
.contact-form .input-icon {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #ccc;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    margin-bottom: 0;
    border-radius: 4px;
    box-sizing: border-box;
}

.main-footer {
    background-color: #111;
    color: #aaa;
    padding-top: 70px;
    font-size: 14px;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #222;
}
.footer-col { flex: 1; min-width: 250px; }

.footer-logo {
    max-height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}
.footer-about p { line-height: 1.7; margin-bottom: 25px; }
.footer-socials a {
    width: 35px; height: 35px;
    background: #222;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}
.footer-socials a:hover { background: var(--theme-color); }

.footer-col h3 {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; border-bottom: 1px dashed #222; padding-bottom: 12px; }
.footer-links a { color: #aaa; text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--theme-color); padding-left: 5px; }

.footer-contact li { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.footer-contact .icon { color: var(--theme-color); font-size: 18px; margin-top: 2px; }
.footer-contact a { color: #aaa; text-decoration: none; }
.footer-contact a:hover { color: #fff; }

.map-frame { border: 4px solid #222; border-radius: 4px; overflow: hidden; }

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .service-card, .service-card:nth-last-child(-n+3) {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .desktop-contact { display: none !important; }
    .header .top-bar-content { justify-content: center; }
    
    .header .main-header-content { padding: 0 15px; }
    .header .logo { order: 1; }
    .mobile-menu-btn {
        display: block;
        order: 3;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--secondary-color);
        cursor: pointer;
    }
    .header-right.desktop-only { display: none; }

    .main-menu {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background-color: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: left;
    }
    .main-menu.active { max-height: 800px; padding-bottom: 20px; }

    .mobile-menu-header { display: block; background-color: #f9f9f9; padding: 20px; margin-bottom: 10px; }
    .mobile-contact-info p { margin: 10px 0; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--secondary-color); }
    .mobile-contact-info .material-icons { color: var(--theme-color); font-size: 18px; }
    .mobile-contact-info a { color: inherit; text-decoration: none; }
    
    .main-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }
    .main-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f5f5f5;
    }
    .mobile-book-item { display: block; margin-top: 15px; text-align: center; }
    .mobile-book-item a { color: #fff; border-bottom: none; }

    .hero { height: 450px; }
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; padding: 0 40px; }


}

@media (max-width: 600px) {
    .service-card, .service-card:nth-last-child(-n+3) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* --- ALT SAYFA ORTAK STİLLER --- */
.page-header {
    height: 300px;
    background-image: url('https://www.h-clinic.be/wp-content/uploads/slider/cache/f491e8148e0d893b0476bc08ba58cb2b/h-bg-1-1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.page-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(23, 41, 90, 0.75);
    z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    margin-bottom: 10px;
}
.breadcrumb {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.breadcrumb a { color: #fff; text-decoration: none; opacity: 0.8; }
.breadcrumb span { color: var(--theme-color); font-weight: 700; }

.bg-light { background-color: #f9f9f9; }
.text-theme { color: var(--theme-color); }
.category-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}
.mt-4 { margin-top: 25px; }
.mb-4 { margin-bottom: 25px; }

/* --- ICON TREATMENT SECTIONS (Volume Lift & Wimper) --- */
.icon-treatment-section {
    padding: 80px 0;
}
.icon-treatment-grid {
    display: grid;
    gap: 30px;
}
.icon-treatment-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
}
.icon-treatment-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.icon-treatment-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
    display: flex;
    gap: 20px;
}
.icon-treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--theme-color);
}
.icon-treatment-card.centered {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.it-icon {
    flex-shrink: 0;
    width: 60px; height: 60px;
    background-color: var(--light-background);
    color: var(--theme-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.it-icon.large { width: 80px; height: 80px; margin-bottom: 10px; }
.it-icon .material-icons { font-size: 30px; }
.it-icon.large .material-icons { font-size: 40px; }

.it-content { flex-grow: 1; }
.it-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; border-bottom: 1px dashed #ddd; padding-bottom: 10px;
}
.it-header h3 {
    margin: 0; font-family: var(--font-secondary); font-size: 1.3rem; color: var(--secondary-color);
}
.it-price {
    font-weight: 700; color: var(--theme-color); font-size: 1.2rem;
}
.it-price-large {
    display: block; font-size: 1.5rem; color: var(--theme-color); font-weight: 700; margin-bottom: 15px;
}
.icon-treatment-card p {
    font-size: 14px; color: #666; line-height: 1.6; margin: 0;
}

/* --- FEATURE TREATMENT SECTIONS (Elektro & Laser - Images) --- */
.feature-treatment-section {
    padding: 80px 0;
}
.feature-treatment-item {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}
.feature-treatment-item.reverse {
    flex-direction: row-reverse;
}
.ft-image {
    width: 50%;
    position: relative;
    min-height: 450px;
}
.ft-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.ft-content {
    width: 50%;
    padding: 60px;
    display: flex; flex-direction: column; justify-content: center;
}
.ft-content h3 {
    font-family: var(--font-secondary); font-size: 2.2rem; color: var(--secondary-color); margin-top: 0; margin-bottom: 20px;
}
.sub-title {
    color: var(--theme-color); font-size: 1.2rem; margin-top: -10px; margin-bottom: 20px; font-weight: 500;
}
.lead-text {
    font-size: 1.1rem; color: #444; font-weight: 500; margin-bottom: 20px;
}
.ft-content p { color: #666; margin-bottom: 15px; line-height: 1.7; }
.highlight-info {
    border-left: 3px solid var(--theme-color);
    padding-left: 20px; margin: 20px 0; color: #555; font-style: italic;
}

/* Simple Price List inside Feature */
.price-list-simple {
    margin: 20px 0; background: #f9f9f9; padding: 20px; border-radius: 4px;
}
.pl-row {
    display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #ddd; color: #555;
}
.pl-row:last-child { border-bottom: 0; }
.pl-row b { color: var(--theme-color); }

/* --- CONTACT PAGE CSS --- */
.contact-page-section { padding: 80px 0; }
.contact-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px;
}
.c-card {
    background: #fff; padding: 30px 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee; transition: 0.3s;
}
.c-card:hover { transform: translateY(-5px); border-color: var(--theme-color); }
.c-icon { color: var(--theme-color); margin-bottom: 15px; }
.c-icon .material-icons { font-size: 32px; }
.c-card h3 { font-family: var(--font-secondary); margin-bottom: 10px; font-size: 1.2rem; }
.c-card p, .c-card a { color: #666; text-decoration: none; line-height: 1.6; }

.contact-main-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.map-area { min-height: 500px; }
.form-area { padding: 60px; background: #fff; }
.form-area h2 { font-family: var(--font-secondary); margin-top: 0; margin-bottom: 30px; font-size: 2rem; }
.contact-form-page .form-group { margin-bottom: 20px; }
.contact-form-page input, .contact-form-page textarea {
    width: 100%; padding: 15px; background-color: #f9f9f9; border: 1px solid #eee; border-radius: 4px; box-sizing: border-box;
}
.full-width { width: 100%; }

/* --- RESPONSIVE FOR EXTRA PAGES --- */
@media (max-width: 992px) {
    .icon-treatment-grid.two-cols, .icon-treatment-grid.three-cols { grid-template-columns: 1fr; }
    .feature-treatment-item, .feature-treatment-item.reverse { flex-direction: column; }
    .ft-image, .ft-content { width: 100%; }
    .ft-image { height: 300px; min-height: auto; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; }
    .map-area { height: 350px; min-height: auto; }
    .container-flex {
    display: grid;
    width: 100%;
    }
    .contact-info-box {
        width: 100%;
    }
    .contact-form-box {
        width: 100%;
    }
    .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0px;
    }
}
@media (max-width: 600px) {
    .contact-cards { grid-template-columns: 1fr; }
    .form-area { padding: 30px; }
}
