/*
Theme Name: IAMA Clone
Description: Pixel-perfect clone of joiniama.org - International Alternative Medicine Association
Author: Antigravity
Version: 2.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

/* ==========================================
   CSS VARIABLES - Exact joiniama.org colors
   ========================================== */
:root {
    --gold: #C5A059;
    --gold-dark: #b08c42;
    --gold-light: #d4b476;
    --black: #000000;
    --dark: #2d2d2d;
    --white: #ffffff;
    --light-grey: #f2f2f2;
    --mid-grey: #e8e8e8;
    --text-grey: #555555;
    --border-light: #e0e0e0;
    --font-body: 'Raleway', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ==========================================
   SITE HEADER - Exact joiniama.org structure
   Two-tier: Logo centered top + Nav bar below
   ========================================== */
#site-header {
    background: var(--white);
    border-bottom: 1px solid #efefef;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

/* Top row: email left | logo center | social right */
.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 40px;
    border-bottom: 1px solid #f0f0f0;
}

.header-email {
    font-size: 12px;
    color: var(--text-grey);
    text-align: left;
}
.header-email a:hover { color: var(--gold); }

.header-logo {
    text-align: center;
}
.header-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}
.header-logo .logo-text {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    line-height: 1;
}

.header-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}
.header-social a {
    color: var(--dark);
    font-size: 18px;
    transition: color 0.25s;
}
.header-social a:hover { color: var(--gold); }
.header-social svg { width: 20px; height: 20px; fill: currentColor; }

/* Bottom row: Navigation */
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.main-nav > li {
    position: relative;
}
.main-nav > li > a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-transform: none;
    letter-spacing: 0.3px;
    transition: color 0.25s;
}
.main-nav > li > a:hover,
.main-nav > li.active > a {
    color: var(--gold);
}

/* Dropdown */
.main-nav li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
    border-top: 2px solid var(--gold);
}
.main-nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--dark);
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}
.dropdown li a:hover {
    background: var(--light-grey);
    color: var(--gold);
    padding-left: 26px;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #f5f0e8;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.85);
}
.hero-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 40px 20px;
}
.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}
.btn-outline-gold {
    display: inline-block;
    padding: 12px 40px;
    border: 2px solid var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}
.btn-gold {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}
.btn-dark {
    display: inline-block;
    padding: 14px 40px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--dark);
    cursor: pointer;
}
.btn-dark:hover { background: #111; }

/* ==========================================
   PAGE LAYOUT WRAPPER
   ========================================== */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-pad { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    text-align: center;
}
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 36px);
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}
.section-text {
    font-size: 15px;
    color: var(--text-grey);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 16px auto;
}

/* ==========================================
   ABOUT SECTION (Home page)
   ========================================== */
.about-home {
    background: var(--white);
}
.about-home-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-home-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}
.about-home-text p {
    color: var(--text-grey);
    line-height: 1.9;
    margin-bottom: 16px;
}
.about-home-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ==========================================
   MEMBERS SECTION (Home page)
   ========================================== */
.members-home {
    background: var(--light-grey);
    text-align: center;
    padding: 80px 0;
}
.members-home .world-map {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.3;
}

/* ==========================================
   JOIN IAMA CTA BANNER
   ========================================== */
.join-cta-banner {
    background: var(--gold);
    color: var(--white);
    text-align: center;
    padding: 22px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.join-cta-banner a { color: var(--white); }
.join-cta-banner a:hover { opacity: 0.85; }

/* ==========================================
   CONTACT SECTION (Home Page)
   ========================================== */
.contact-home {
    background: var(--light-grey);
    padding: 80px 0;
}
.contact-form-card {
    background: var(--white);
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.contact-form-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    text-align: center;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.form-group { margin-bottom: 12px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; font-style: italic; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { text-align: right; margin-top: 8px; }
.form-submit button {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.25s;
}
.form-submit button:hover { background: #111; }

/* ==========================================
   SUBSCRIBE / FOOTER
   ========================================== */
.subscribe-section {
    background: var(--white);
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid var(--border-light);
}
.subscribe-section h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--dark);
}
.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto 20px;
}
.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}
.subscribe-form button {
    padding: 12px 24px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
}
.subscribe-form button:hover { background: #333; }
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}
.footer-social a {
    color: var(--dark);
    font-size: 18px;
    transition: color 0.25s;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-copy {
    font-size: 12px;
    color: var(--text-grey);
    margin-top: 12px;
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
    background: var(--light-grey);
    padding: 60px 40px;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 42px);
    color: var(--gold);
    margin-bottom: 12px;
}
.page-hero p {
    font-size: 15px;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT PAGE (Parallax Redesign)
   ========================================== */
.about-parallax-section {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--light-grey);
}
.about-parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.4); 
    pointer-events: none;
}
.about-parallax-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.parallax-floating-card {
    background: var(--white);
    max-width: 600px;
    padding: 70px 60px;
    margin-bottom: 150px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-radius: 2px;
}
.parallax-floating-card:last-child {
    margin-bottom: 0;
}
.parallax-floating-card.align-left {
    margin-right: auto;
}
.parallax-floating-card.align-right {
    margin-left: auto;
}
.parallax-floating-card h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.2;
}
.parallax-floating-card .gold-sub {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}
.parallax-floating-card p {
    color: var(--text-grey);
    line-height: 2;
    margin-bottom: 16px;
    font-size: 15px;
}
.parallax-floating-card ul {
    list-style: none;
    padding: 0;
}
.parallax-floating-card ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.8;
}
.parallax-floating-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 2px;
    background: var(--gold);
}

@media (max-width: 768px) {
    .parallax-floating-card {
        padding: 40px 30px;
        margin-bottom: 60px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .about-parallax-section {
        background-attachment: scroll; /* Disable parallax on touch for better performance */
    }
}

/* ==========================================================================
   Directory Pages (Educational Institutes, Approved Companies, Individuals)
   ========================================================================== */
.directory-card { display: flex; align-items: flex-start; margin-bottom: 50px; padding: 0; background: transparent; box-shadow: none; border-radius: 0; }
.directory-card img { max-width: 180px; max-height: 120px; margin-right: 40px; object-fit: contain; margin-top: 5px; }
.directory-card-text { flex: 1; }
.directory-card-text h4 { margin-top: 0; font-size: 20px; color: var(--dark); font-weight: 500; margin-bottom: 8px; }
.directory-card-text a { color: var(--gold); text-decoration: underline; font-weight: 400; font-size: 15px; }
.directory-card-text p { margin-bottom: 4px; line-height: 1.5; font-size: 15px; color: #555; }
@media (max-width: 768px) { .directory-card { flex-direction:column; text-align:left; } .directory-card img { margin: 0 0 20px 0; } }


/* ==========================================
   MEMBERS PAGE (3-column cards)
   ========================================== */
.members-page {
    padding: 80px 0;
}
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.member-card {
    border: 1px solid var(--border-light);
    background: var(--white);
    text-align: center;
    transition: box-shadow 0.3s ease;
}
.member-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.member-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.member-card-body {
    padding: 24px 20px;
}
.member-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}
.member-card-divider {
    width: 40px;
    height: 1px;
    background: var(--border-light);
    margin: 14px auto;
}
.member-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s;
}
.member-card-link:hover { color: var(--gold); }

/* ==========================================
   DIRECTORY PAGES (Educational Inst. etc.)
   ========================================== */
.directory-page { padding: 80px 0; }
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.directory-card {
    border: 1px solid var(--border-light);
    padding: 24px;
    background: var(--white);
    transition: all 0.3s;
}
.directory-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(197,160,89,0.15);
}
.directory-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.directory-card p { font-size: 13px; color: var(--text-grey); line-height: 1.6; }
.directory-card a {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.directory-card a:hover { color: var(--gold-dark); }

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page { padding: 0; }
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}
.contact-info-panel {
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}
.contact-info-inner { max-width: 480px; width: 100%; text-align: center; }
.contact-info-inner h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}
.contact-info-inner .contact-email {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--dark);
}
.contact-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}
.contact-social-row a { color: var(--dark); font-size: 20px; }
.contact-social-row a:hover { color: var(--gold); }
.contact-info-inner .contact-address {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
    margin-top: 16px;
}
.contact-image-panel { overflow: hidden; }
.contact-image-panel img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-page { padding: 80px 0; }
.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}
.faq-question {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.faq-answer {
    display: none;
    padding-top: 16px;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question::after { content: '−'; }

/* ==========================================
   JOIN IAMA PAGE
   ========================================== */
.join-page { padding: 80px 0; }
.join-form-wrap {
    background: var(--white);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid var(--border-light);
}
.join-form-wrap h2 { font-size: 22px; font-weight: 600; margin-bottom: 30px; text-align: center; }
.checkbox-group { display: flex; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
    width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer;
}
.required { color: red; font-size: 12px; vertical-align: super; }

/* ==========================================
   WORLD CHAMPIONSHIP PAGE (Black & Gold)
   ========================================== */
.champ-body {
    background-color: #030303;
    background-image: radial-gradient(circle at 50% 20%, #1a1a1a 0%, #030303 60%);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}
.champ-body.is-expired {
    filter: grayscale(100%) contrast(1.1);
}
/* Safety: Ensure Admin Bar is never grayscale */
#wpadminbar {
    filter: none !important;
}
.champ-body.is-expired .hero-banner-image::after {
    background: rgba(0, 0, 0, 0.85); /* Slightly darker overlay when expired */
}
.champ-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.champ-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.hero-banner-image {
    width: 100%;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1549468057-5b7fa1a41d7a?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}
.hero-banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-banner-text h1 {
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin: 0;
    font-family: 'Playfair Display', serif;
}
.hero-banner-text p {
    color: #d4af37;
    font-size: 1.2rem;
    letter-spacing: 12px;
    margin-top: 10px;
}
.champ-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 60px;
}
.champ-header .logo-iama {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 5px;
    margin: 20px 0 0;
}
.champ-header .subtitle {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 25px;
}
.champ-header .dates {
    color: #d4af37;
    font-size: 1.3rem;
    letter-spacing: 6px;
    font-weight: 600;
    margin-bottom: 15px;
}
.champ-section { margin-bottom: 80px; }
.champ-title-gold {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}
.champ-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}
.general-terms-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: 4px;
    position: relative;
}
.terms-list { list-style: none; padding: 0; margin: 0; }
.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #bbb;
}
.terms-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.terms-list li .icon {
    font-size: 1.5rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.styles-header {
    background: #d4af37;
    color: #000;
    text-align: center;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.style-card { background: #fff; color: #000; height: 100%; }
.style-card-header {
    background: #deb853;
    padding: 15px 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
}
.style-card-header h4 { margin: 0; font-size: 1.1rem; font-weight: 600; letter-spacing: 1px; color: #000; text-transform: uppercase; }
.style-card-body { padding: 20px; }
.style-card-body p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 15px; color: #333; }
.style-duration {
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.pricing-section { text-align: center; padding: 60px 0; }
.pricing-title { color: #d4af37; font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }
.pricing-text { font-size: 1.2rem; color: #fff; margin-bottom: 40px; }
.early-bird {
    display: inline-block;
    border: 2px dashed #d4af37;
    padding: 20px 40px;
    font-size: 1.1rem;
    color: #d4af37;
}
.btn-gold-champ {
    display: inline-block;
    background: #d4af37;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}
.btn-gold-champ:hover { background: transparent; color: #d4af37; }

/* ==========================================
   CERTIFIED THERAPISTS PAGE
   ========================================== */
.therapist-search {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 0;
}
.therapist-search input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}
.therapist-search button {
    padding: 14px 24px;
    background: var(--gold);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.25s;
}
.therapist-search button:hover { background: var(--gold-dark); }

/* ==========================================
   CONTACT FORM (CF7 STYLE)
   ========================================== */
.iama-contact-form {
    margin: 40px 0;
    text-align: left;
}
.iama-contact-form .form-group {
    margin-bottom: 28px;
}
.iama-contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.iama-contact-form input[type="text"],
.iama-contact-form input[type="email"],
.iama-contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    background: transparent;
    transition: all 0.3s ease;
}
.iama-contact-form input:focus,
.iama-contact-form textarea:focus {
    border-bottom-color: var(--gold);
    outline: none;
    padding-left: 8px; /* Subtle expansion feel */
}
.iama-contact-form .input-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.btn-submit-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-submit-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .header-top { padding: 12px 20px; }
    .header-nav { padding: 10px 20px; }
    .about-home-inner, .about-block, .contact-split,
    .championship-info-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-block.reverse { direction: ltr; }
    .members-grid { grid-template-columns: 1fr 1fr; }
    .contact-info-panel { justify-content: center; padding: 50px 30px; }
    .page-wrapper { padding: 0 20px; }
}
@media (max-width: 640px) {
    .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.1); padding: 10px 0; }
    .main-nav.open { display: flex; }
    .main-nav > li > a { padding: 12px 24px; }
    .nav-toggle { display: block; }
    .members-grid { grid-template-columns: 1fr; }
    .header-logo img { height: 60px; }
    .form-row { grid-template-columns: 1fr; }
    .join-form-wrap, .contact-form-card { padding: 30px 20px; }
}
