/*
Theme Name: Eugene Foot Reflexology
Theme URI: https://eugenefootreflexology.com
Author: Eugene Foot Reflexology
Author URI: https://eugenefootreflexology.com
Description: A premium wellness theme for Eugene Foot Reflexology Center with booking system, services, treatments, and packages.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: eugene-reflexology
Tags: wellness, reflexology, booking, spa, health
*/

/* =========================================================
   CSS VARIABLES
========================================================= */
:root {
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --teal: #2D6A5E;
    --teal-dark: #1A4A40;
    --teal-light: #4A9B8A;
    --cream: #FAF7F2;
    --cream-dark: #F0EAE0;
    --text-dark: #1C1C1C;
    --text-mid: #4A4A4A;
    --text-light: #8A8A8A;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 40px;
}

/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-sans); }

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    font-weight: 500;
    font-family: var(--font-sans);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--teal);
}

.section-sub {
    font-size: 16px;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

/* =========================================================
   LAYOUT
========================================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

section { padding: 90px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    border: none;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--teal-dark);
}
.btn-primary:hover { background: #b8935a; transform: translateY(-1px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-outline-teal {
    background: transparent;
    color: var(--teal);
    border: 1px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: white; }

.btn-teal {
    background: var(--teal);
    color: white;
}
.btn-teal:hover { background: var(--teal-dark); }

.btn-lg { padding: 16px 38px; font-size: 15px; }

/* =========================================================
   NAVIGATION
========================================================= */
#site-header {
    background: var(--white);
    height: 78px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--cream-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.site-logo,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.site-logo-image,
.custom-logo {
    display: block;
    width: auto;
    height: 60px;
    max-width: 360px;
}
.site-logo span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 10px; }

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

.main-nav ul li a {
    font-size: 13px;
    color: var(--text-mid);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    display: block;
    letter-spacing: 0.02em;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
    color: var(--teal);
    background: rgba(45,106,94,0.06);
}

.nav-book-btn {
    background: var(--teal);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 500 !important;
    margin-left: 8px;
}
.nav-book-btn:hover { background: var(--teal-dark) !important; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #3a8c7e 100%);
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.12);
}

.hero-section::after {
    content: '';
    position: absolute;
    right: 100px; top: 60px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(201,169,110,0.04);
    border: 1px solid rgba(201,169,110,0.08);
}

.hero-content { max-width: 600px; position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
}
.hero-badge span {
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-section h1 {
    font-family: var(--font-serif);
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
}
.hero-section h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 38px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item {}
.stat-num {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-image {
    position: relative;
    z-index: 1;
}
.hero-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    height: 520px;
}
.hero-image-placeholder {
    width: 100%;
    height: 520px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* =========================================================
   BENEFITS STRIP
========================================================= */
.benefits-strip {
    background: var(--teal-dark);
    padding: 28px 0;
}
.benefits-strip .container {
    display: flex;
    justify-content: space-between;
    gap: 0;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    padding: 0 24px;
}
.benefit-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}
.benefit-item:first-child { padding-left: 0; }
.benefit-item:last-child { padding-right: 0; }
.benefit-icon {
    width: 40px; height: 40px;
    background: rgba(201,169,110,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.benefit-text strong { display: block; font-size: 14px; font-weight: 500; color: white; }
.benefit-text span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* =========================================================
   ABOUT SECTION
========================================================= */
.about-section { background: var(--white); }

.about-image-wrap { position: relative; }
.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream-dark);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #c8e6df 0%, #8bbdb4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 14px;
    opacity: 0.7;
}

.about-float-badge {
    position: absolute;
    bottom: 32px; left: -32px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.badge-icon {
    width: 44px; height: 44px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.badge-icon svg { width: 22px; height: 22px; fill: white; }
.badge-text strong { display: block; font-size: 22px; font-weight: 500; color: var(--teal-dark); }
.badge-text span { font-size: 12px; color: var(--text-light); }

.checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
}
.check-dot {
    width: 24px; height: 24px;
    background: rgba(45,106,94,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.check-dot svg { width: 11px; height: 11px; stroke: var(--teal); fill: none; stroke-width: 2.5; }

/* =========================================================
   SERVICES SECTION
========================================================= */
.services-section { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.service-card.featured { background: var(--teal); }

.service-num {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 20px;
}
.service-card.featured .service-num { color: rgba(255,255,255,0.2); }

.service-icon-wrap {
    width: 50px; height: 50px;
    background: var(--teal);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,0.2); }
.service-icon-wrap svg { width: 24px; height: 24px; fill: white; }

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--teal-dark);
    margin-bottom: 10px;
}
.service-card.featured h3 { color: white; }

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
}
.service-card.featured p { color: rgba(255,255,255,0.7); }

/* =========================================================
   TREATMENTS SECTION
========================================================= */
.treatments-section {
    background: var(--teal-dark);
}
.treatments-section .section-tag { color: var(--gold); }
.treatments-section .section-title { color: white; }
.treatments-section .section-sub { color: rgba(255,255,255,0.6); }

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.treatment-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: background 0.25s;
}
.treatment-card:hover { background: rgba(255,255,255,0.1); }

.treatment-duration {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 14px;
}

.treatment-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 300;
    color: white;
    margin-bottom: 18px;
}

.treatment-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.treatment-tag {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(201,169,110,0.12);
    color: var(--gold-light);
    border: 1px solid rgba(201,169,110,0.2);
}

/* =========================================================
   PACKAGES SECTION
========================================================= */
.packages-section { background: var(--cream); }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.pkg-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pkg-card.popular { border: 2px solid var(--teal); }

.popular-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: white;
    font-size: 11px;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: var(--font-sans);
}

.pkg-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.pkg-price {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 300;
    color: var(--teal-dark);
    line-height: 1;
}
.pkg-price sup { font-size: 24px; vertical-align: super; }

.pkg-duration {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
    margin-bottom: 28px;
}

.pkg-features {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0;
}
.pkg-features li {
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pkg-features li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal-light);
    flex-shrink: 0;
}

.pkg-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--teal);
    background: transparent;
    color: var(--teal);
    font-size: 13px;
    font-family: var(--font-sans);
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    font-weight: 500;
}
.pkg-btn:hover { background: var(--teal); color: white; }
.pkg-card.popular .pkg-btn { background: var(--teal); color: white; }
.pkg-card.popular .pkg-btn:hover { background: var(--teal-dark); }

/* =========================================================
   BENEFITS PAGE SECTION
========================================================= */
.benefits-section { background: var(--cream); }

.benefits-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 64px;
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.benefit-card-icon {
    width: 58px; height: 58px;
    background: rgba(45,106,94,0.1);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.benefit-card-icon svg { width: 26px; height: 26px; fill: var(--teal); }

.benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--teal-dark);
    margin-bottom: 10px;
}
.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =========================================================
   TESTIMONIALS SECTION
========================================================= */
.testimonials-section { background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.testi-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: box-shadow 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }

.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-star { color: var(--gold); font-size: 18px; }

.testi-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.55;
    margin-bottom: 22px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 500;
    color: white;
    flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.testi-role { font-size: 12px; color: var(--text-light); }

/* =========================================================
   BOOKING FORM SECTION
========================================================= */
.booking-section { background: var(--white); }

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.booking-info h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; }
.booking-info p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }

.booking-highlights { display: flex; flex-direction: column; gap: 20px; }
.booking-highlight { display: flex; align-items: flex-start; gap: 16px; }
.highlight-icon {
    width: 46px; height: 46px;
    background: rgba(45,106,94,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.highlight-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.highlight-text strong { display: block; font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 2px; }
.highlight-text span { font-size: 13px; color: var(--text-light); }

/* Booking Form */
.booking-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.booking-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--teal-dark);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45,106,94,0.08); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.03em;
    margin-top: 8px;
}
.form-submit-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

.form-notice {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

/* Form messages */
.form-success {
    background: rgba(45,106,94,0.08);
    border: 1px solid rgba(45,106,94,0.25);
    color: var(--teal-dark);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}
.form-error {
    background: rgba(200,50,50,0.08);
    border: 1px solid rgba(200,50,50,0.25);
    color: #8b2020;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

/* =========================================================
   CTA SECTION
========================================================= */
.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    left: -100px; top: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 300;
    color: white;
    margin-bottom: 16px;
    position: relative;
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    position: relative;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; position: relative; }

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact-section { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-items { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px;
    background: rgba(45,106,94,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.contact-item-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-item-value { font-size: 15px; color: var(--text-dark); }

.map-embed {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    background: var(--cream-dark);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* =========================================================
   FOOTER
========================================================= */
#site-footer { background: var(--teal-dark); padding: 70px 0 30px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 240px;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.social-link:hover { background: rgba(255,255,255,0.15); }
.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; padding: 0; list-style: none; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* =========================================================
   PAGE HERO (inner pages)
========================================================= */
.page-hero {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    padding: 80px 0;
    text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(36px, 4vw, 56px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; }
.page-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--gold); }

/* =========================================================
   BOOKING ADMIN TABLE (wp-admin)
========================================================= */
.bookings-table { width: 100%; border-collapse: collapse; }
.bookings-table th {
    background: var(--teal);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
}
.bookings-table td { padding: 12px 16px; border-bottom: 1px solid #eee; font-size: 13px; }
.bookings-table tr:hover td { background: #f9f9f9; }
.status-pending { color: #b77800; background: #fff3cd; padding: 3px 10px; border-radius: 12px; font-size: 12px; }
.status-confirmed { color: #155724; background: #d4edda; padding: 3px 10px; border-radius: 12px; font-size: 12px; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
    .grid-4, .services-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-strip .container { flex-wrap: wrap; gap: 16px; }
    .benefit-item { flex: 1 1 40%; border-right: none !important; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .container { padding: 0 20px; }
    .site-logo-image,
    .custom-logo {
        height: 48px;
        max-width: 250px;
    }
    .hero-section { min-height: auto; padding: 60px 0; }
    .hero-section .grid-2 { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .hero-stats { gap: 24px; }
    .about-section .grid-2,
    .booking-wrapper,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-float-badge { left: 0; position: relative; margin-top: 16px; }
    .services-grid,
    .packages-grid,
    .treatments-grid,
    .testimonials-grid,
    .benefits-cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .main-nav ul { display: none; }
    .mobile-menu-toggle { display: flex; }
    .main-nav.open ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 78px; left: 0; right: 0;
        background: white;
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--cream-dark);
        gap: 4px;
    }
    .checks-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}
