/*
Theme Name: Kuraj Clinic Custom Theme
Theme URI: 
Author: Davial Agency
Description: Custom premium theme for HALT Clinic, optimized for Advanced Custom Fields (ACF). Fast, secure, and visually stunning.
Version: 1.0
*/

/* --- CSS RESET & VARIABLES --- */
:root {
    --bg-dark-blue: #0f1523;
    --text-light: #f0f0f0;
    --text-white: #ffffff;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: #fff;
    line-height: 1.6;
    background-color: #000000;
}

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

/* --- HEADER --- */
.header {
    background: var(--bg-dark-blue);
    padding: 20px 0;
    color: var(--text-white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.logo-circle.gold-border {
    border: 2px solid transparent;
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--gold-light), var(--gold));
    background-origin: border-box;
    background-clip: content-box, border-box;
}
.logo-h {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(135deg, #a67c00, #bf953f, #fcf6ba, #b38728, #fdbf59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 1px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.main-nav a:hover {
    color: var(--gold);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b38728);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-outline:hover {
    background: var(--gold);
    color: #fff;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 80vh;
    background-color: var(--bg-dark-blue);
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cbd5e1;
}

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

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        margin-top: 40px;
    }
}

/* --- SERVICES --- */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--bg-dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: #666;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--bg-dark-blue);
    color: var(--text-light);
    padding: 80px 0 30px;
    font-family: var(--font-heading);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.col-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #d1d5db;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.col-contact address,
.col-contact p {
    font-style: normal;
    font-size: 15px;
    color: #d1d5db;
    margin-bottom: 5px;
}

.col-contact .contact-details {
    margin-top: 25px;
    margin-bottom: 25px;
}

.bold-text {
    font-weight: 700;
    color: #fff !important;
}

.work-hours p {
    margin-bottom: 3px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 14px;
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.social-icon.fb { background: #1877F2; }
.social-icon.ig { background: #E4405F; }
.social-icon.yt { background: #FF0000; }
.social-icon.x { background: #000; border: 1px solid #333; }
.social-icon.in { background: #0A66C2; }
.social-icon.tk { background: #000; border: 1px solid #333; }

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 5px;
}
.legal-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* === Product Badges (LUXURY, NEW, BESTSELLER, HOT) === */
.product-badge {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.product-badge.hot {
    background: #ffffff;
    color: #000000;
}
