@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&display=swap');

:root {
    /* Design Tokens (Premium Directory v3) */
    --navy-primary: #0B1F3A;
    --navy-medium: #12315C;
    --gold-accent: #E8B33D;
    --green-whatsapp: #1FA855;
    
    --bg-main: #FCFBF8;
    --bg-surface: #FFFFFF;
    --border-color: #E6ECF3;
    
    --text-primary: #0B1F3A;
    --text-secondary: #5B6B7C;
    
    --shadow-sm: 0 2px 4px rgba(11,31,58,0.04);
    --shadow-rest: 0 4px 12px rgba(11,31,58,0.06);
    --shadow-hover: 0 12px 32px rgba(11,31,58,0.12);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Fraunces', serif;
    color: var(--navy-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

/* Header */
.main-header {
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header-links a:hover {
    color: var(--navy-primary);
}

.btn-outline {
    border: 1px solid var(--border-color) !important;
    padding: 8px 16px !important;
    border-radius: 999px;
    color: var(--navy-primary) !important;
    font-weight: 600 !important;
}
.btn-outline:hover {
    background: var(--navy-primary);
    color: white !important;
    border-color: var(--navy-primary) !important;
}

/* Hero Section */
.hero-section {
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional subtle glow behind hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,179,61,0.1) 0%, rgba(252,251,248,0) 70%);
    z-index: -1;
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--navy-medium); text-decoration: none; }
.breadcrumb span.current { color: var(--gold-accent); }

.hero-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Search Box */
.search-box {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 24px;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}
.search-box:focus-within {
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-rest);
}

.search-icon {
    color: var(--text-secondary);
    margin-left: 16px;
    align-self: center;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--navy-primary);
    font-size: 16px;
    padding: 12px 16px;
    outline: none;
    font-family: inherit;
}

.btn-search {
    background-color: var(--gold-accent);
    color: var(--navy-primary);
    border: none;
    border-radius: 999px;
    padding: 12px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.btn-search:hover { background-color: #F1C453; }

/* Hero Pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.hero-pills .pill {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.dot-green {
    width: 6px;
    height: 6px;
    background-color: var(--green-whatsapp);
    border-radius: 50%;
    display: inline-block;
}

/* Directory Section */
.directory-section {
    padding: 48px 24px;
}

.directory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.dir-overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.dir-title {
    font-size: 32px;
    font-weight: 600;
}

.dir-meta {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Cards */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.workshop-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-rest);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: var(--navy-primary);
}

.workshop-card .card-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; /* Slight tint based on mockup if dark */
}

.card-badge-gold {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card-badge-gold i { color: var(--gold-accent); }

.card-avatar-placeholder {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy-medium);
    border: 4px solid #FFFFFF;
}

.card-content {
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.workshop-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.rating-star { color: var(--gold-accent); font-size: 14px; }
.rating-score { color: var(--navy-primary); font-weight: 700; font-size: 13px; }
.rating-count { color: var(--text-secondary); font-size: 13px; }

.card-meta-list {
    list-style: none;
    margin-bottom: 16px;
}
.card-meta-list li {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.card-meta-list li i { width: 14px; height: 14px; color: var(--text-secondary); }

.card-price {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.card-price strong { color: var(--navy-primary); font-weight: 700; }

.card-trust-chips {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.trust-chip {
    font-size: 11px;
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
    background: var(--bg-main);
}

.card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--green-whatsapp);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 168, 85, 0.2);
}

.btn-ghost-navy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-navy:hover {
    background: var(--bg-main);
    border-color: var(--navy-primary);
}

/* Banner Section */
.banner-section {
    padding: 48px 24px;
}
.banner-box {
    background: var(--navy-primary);
    border-radius: 16px;
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    color: white;
}
.banner-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}
.sponsor-logo {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.banner-text h3 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
}
.banner-text p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    max-width: 400px;
}
.banner-right {
    text-align: right;
}
.sponsor-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.btn-yellow {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--navy-primary);
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
}

/* How it works */
.how-it-works-section {
    padding: 64px 24px;
}
.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}
.overline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    font-size: 32px;
    font-weight: 600;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}
.step-num {
    width: 48px;
    height: 48px;
    background: #FEF3C7;
    color: #B45309;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 24px;
}
.step-card h3 {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Split Section */
.split-section {
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.split-card {
    border-radius: 16px;
    padding: 48px;
}
.split-left {
    background: white;
    border: 1px solid var(--border-color);
}
.split-right {
    background: var(--navy-primary);
    color: white;
}
.overline-yellow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.split-left h2 { font-family: 'Fraunces', serif; font-size: 28px; margin-bottom: 16px; }
.split-right h2 { font-family: 'Fraunces', serif; font-size: 28px; margin-bottom: 16px; color: white; }

.split-card > p { font-size: 15px; margin-bottom: 32px; line-height: 1.6; }
.split-left > p { color: var(--text-secondary); }
.split-right > p { color: rgba(255,255,255,0.7); }

.check-list {
    list-style: none;
    margin-bottom: 40px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.split-left .check-list li { color: var(--navy-primary); }
.split-right .check-list li { color: rgba(255,255,255,0.9); }
.check-list li i {
    width: 20px;
    height: 20px;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.btn-navy {
    display: inline-block;
    background: var(--navy-primary);
    color: white;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 16px;
}
.micro-text {
    font-size: 12px;
    color: var(--text-secondary);
}

/* SEO */
.seo-section {
    padding: 64px 24px;
}
.seo-container {
    background: white;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--border-color);
}
.seo-container h2 {
    font-size: 24px;
    margin-bottom: 16px;
}
.seo-container h3 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.seo-container p {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}
.seo-container ul {
    list-style: none;
}
.seo-container ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}
.seo-container ul li i {
    color: var(--green-whatsapp);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Locations */
.locations-section {
    padding: 48px 24px;
    text-align: center;
}
.locations-title {
    font-size: 20px;
    margin-bottom: 32px;
}
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.loc-pill {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    background: white;
    transition: all 0.2s;
}
.loc-pill:hover {
    border-color: var(--navy-primary);
    color: var(--navy-primary);
}

/* Footer */
footer {
    background: var(--navy-primary);
    color: white;
    padding: 64px 24px 24px;
    margin-top: 64px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}
.footer-logo-text {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.footer-logo-text img { height: 28px; filter: brightness(0) invert(1); }
.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 24px;
    max-width: 300px;
}
.footer-phone {
    color: var(--green-whatsapp);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .header-links { display: none; }
    .hero-title { font-size: 36px; }
    .steps-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
