/* ====== NAV: Golden underline on hover/active ====== */
.site-nav .nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  border-bottom-color: var(--gold, #f4cd70);
}

/* Support legacy about page nav structure */
.main-nav .nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
}
.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
  border-bottom-color: var(--gold, #f4cd70);
}

/* ============================================================
   Quick overrides: nav alignment, hammer spacing, footer logo
   Date: 2025-08-13 (appended at end to win specificity)
============================================================ */

/* NAV: ensure clean horizontal alignment */
.site-nav .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
}
.site-nav .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}
.site-nav .nav-links li {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  position: relative !important; /* anchor for dropdown */
}
.site-nav .nav-links a {
  display: inline-flex !important;
  align-items: center !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

/* Hammer icon: bring it closer to the label */
.site-nav .nav-links a[href*="tools"]::after {
  content: "🛠️";
  margin-left: 2px !important;
  font-size: 0.95em;
  position: relative;
  top: 0;
  filter: drop-shadow(0 0 6px rgba(244,205,112,.85));
}

/* FOOTER: center the FD logo at the top and prevent overlap */
.site-footer .footer-inner {
  position: relative !important;
  padding-top: 92px !important; /* create space for the logo block */
}
.site-footer .footer-corner-logo {
  position: absolute !important;
  top: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important; /* top center */
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
  background: #fff;
  z-index: 1;
}

/* Keep dropdown neatly layered and aligned under its parent */
.site-nav .dropdown-menu {
  position: absolute !important;
  z-index: 1001;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244,205,112,.6);
  border-radius: 12px;
  padding: 8px 10px;
  margin-top: 8px;
}
/* ============================================================
   Quick overrides: nav alignment, hammer spacing, footer logo
   Date: 2025-08-13
   These are appended to ensure they win over earlier rules.
============================================================ */

/* NAV: ensure clean horizontal alignment */
.site-nav .nav-inner {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between;
}
.site-nav .nav-links {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	flex-wrap: nowrap !important;
}
.site-nav .nav-links li {
	display: inline-flex !important;
	align-items: center !important;
	margin: 0 !important;
	position: relative !important; /* anchor for dropdown */
}
.site-nav .nav-links a {
	display: inline-flex !important;
	align-items: center !important;
	letter-spacing: 0 !important;
	white-space: nowrap !important;
}

/* Hammer icon: bring it closer to the label */
.site-nav .nav-links a[href*="tools"]::after {
	content: "🛠️";
	margin-left: 3px !important;
	font-size: 0.95em;
	position: relative;
	top: 0;
	filter: drop-shadow(0 0 6px rgba(244,205,112,.85));
}

/* FOOTER: move FD logo to top corner and reorganize layout */
.site-footer .footer-inner {
	position: relative !important;
	padding-top: 32px !important; /* normal padding */
}
.site-footer .footer-corner-logo {
	position: absolute !important;
	top: 16px !important;
	right: 16px !important; /* top right corner */
	width: 56px;
	height: 56px;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(0,0,0,.18);
	background: #fff;
	z-index: 1;
}

/* If any dropdown still misbehaves, keep it neatly layered */
.site-nav .dropdown-menu {
	position: absolute;
	z-index: 1001; /* above nav but below modals */
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(244,205,112,.6);
	border-radius: 12px;
	padding: 8px 10px;
}
/* GLOBAL SOFT-CREAM BACKGROUND LOCK */
body {
  background-color: #f7f1e1 !important; /* gentle cream tone */
  color: #2e2e2e; /* deep charcoal for text */
}

/* Force all main containers to stay cream */
section,
.container,
.main-content,
.wrapper {
  background-color: #f7f1e1 !important;
  color: #2e2e2e !important;
}

/* Fix for nav and footer if needed */
nav,
footer {
  background-color: #f7f1e1 !important;
  color: #2e2e2e !important;
  border-bottom: 1px solid #e2d8c3; /* subtle divider */
}

/* Link colors on cream */
a {
  color: #5a4e3c;
}

a:hover {
  color: #836f58;
}

/* ===== COLOR THEME ===== */
:root {
    --primary-white: #ffffff;
    --primary-blue: #1E3A8A;
    --accent-green: #2ECC71;
    --accent-gold: #FFD700;
    --accent-charcoal: #333333;
    --light-gray: #f5f6fa;
    --border-gray: #e5e7eb;
}

html, body {
    background: #fff !important;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--accent-charcoal);
    min-height: 100vh;
    padding: 20px;
    padding-top: 100px;
    overflow-x: hidden;
}

.main-title, .page-name, h1, h2, h3, h4 {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ===== NAVIGATION BAR ===== */
.main-nav {
    background: var(--primary-white);
    box-shadow: 0 2px 12px rgba(30,58,138,0.08);
    border: 1.5px solid var(--border-gray);
}
.nav-left .nav-site {
    color: var(--primary-blue);
}
.nav-links li a {
    color: var(--accent-charcoal);
}
.nav-links li a.active, .nav-links li a:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
}
.menu-btn {
    color: var(--primary-blue);
}

/* ===== CARDS & CONTAINERS ===== */
.glass-card, .bento-card, .about-value-bento, .service-bento-card, .store-bento-card, .blog-category-bento {
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
    border: 2px solid var(--color-primary);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover, .bento-card:hover, .about-value-bento:hover, .service-bento-card:hover, .store-bento-card:hover, .blog-category-bento:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 217, 0, 0.2);
    border-color: var(--accent-gold);
}

/* ===== TRUST BADGE ===== */
.trust-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-white);
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-gold) 100%);
    border-radius: 12px;
    padding: 12px 28px;
    margin: 18px auto 18px auto;
    box-shadow: 0 4px 16px rgba(46,204,113,0.12);
    letter-spacing: 1px;
    max-width: 350px;
}

/* ===== PAYMENT BUTTONS ===== */
.payment-note {
    color: var(--primary-blue);
    font-size: 1.01rem;
    margin: 10px 0 0 0;
    text-align: center;
}
.pay-btn {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary-white);
    font-weight: 600;
    border-radius: 8px;
    padding: 7px 18px;
    margin: 0 6px 6px 0;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    border: none;
}
.pay-btn:hover {
    background: var(--accent-gold);
    color: var(--accent-charcoal);
}
.payment-btns {
    margin-bottom: 10px;
}

/* ===== BUTTONS ===== */
.btn {
    background: var(--primary-blue);
    color: var(--primary-white);
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}
.btn-gold {
    background: var(--accent-gold);
    color: var(--accent-charcoal);
}
.btn-outline {
    background: var(--primary-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}
.btn:hover, .btn-gold:hover {
    background: var(--accent-green);
    color: var(--primary-white);
}
.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
}

/* ===== TEXT COLORS ===== */
.page-name, .footer-copyright, .footer-extra, .footer-links, .brand-logos {
    color: var(--primary-blue);
}
.footer-copyright {
    color: var(--accent-charcoal);
}

/* ===== ACCENT COLORS ===== */
.highlight, .pidgin {
    color: var(--accent-green);
    font-weight: 600;
}

/* ===== REMOVE WHATSAPP STICKY ICON ===== */
.whatsapp-sticky { display: none !important; }

/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

/* ===== MAIN TITLE ===== */
.main-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

/* ===== WEBSITE CONTAINER ===== */
.website-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===== GLASSMORPHISM CARD STYLES ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== HEADER SECTION ===== */
.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.profile-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== SERVICES SECTION ===== */
.services-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== ABOUT SECTION ===== */
.about-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ===== SKILLS SECTION ===== */
.skills-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 1s ease;
}

/* ===== CONTACT SECTION ===== */
.contact-section h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-method {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-method i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.contact-method h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== STORY SECTION IMAGE FRAMES ===== */
.story-images {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 24px;
    margin-bottom: 16px;
}

.story-img-frame {
    background: rgba(255,255,255,0.18);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    min-width: 180px;
    max-width: 260px;
}

.story-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-bottom: 8px;
}

.img-caption {
    font-size: 0.98rem;
    color: #333;
    opacity: 0.85;
    text-align: center;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .story-images {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .story-img-frame {
        width: 90%;
        max-width: 320px;
    }
    .story-img {
        width: 100%;
        height: auto;
        min-width: 120px;
        max-width: 260px;
    }
}

/* ===== OFFER SECTION BENTO CARDS ===== */
.offer-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin: 32px 0 18px 0;
    justify-content: center;
    align-items: stretch;
}

.bento-card {
    background: rgba(255,255,255,0.22);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10), 0 2px 8px rgba(0,0,0,0.07);
    padding: 28px 20px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
    z-index: 1;
    border: 1.5px solid rgba(118,75,162,0.10);
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 4px 16px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.28);
}
.bento-card i {
    font-size: 2.3rem;
    color: #764ba2;
    margin-bottom: 14px;
}
.bento-card h4 {
    font-size: 1.18rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.bento-card p {
    color: #444;
    font-size: 1.01rem;
    text-align: center;
    margin-bottom: 0;
}
.bento-card .pidgin {
    color: #764ba2;
    font-size: 0.98rem;
    font-style: italic;
    display: block;
    margin-top: 4px;
}

.bento-cta {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

@media (max-width: 768px) {
    .offer-bento {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .bento-card {
        padding: 22px 10px 18px 10px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .glass-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .profile-details h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-section {
        gap: 20px;
    }
    
    .profile-info {
        gap: 15px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .profile-details h2 {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .glass-card {
        padding: 15px;
    }
    
    .services-section h3,
    .about-section h3,
    .skills-section h3,
    .contact-section h3 {
        font-size: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    animation: fadeInUp 0.6s ease forwards;
}

.glass-card:nth-child(1) { animation-delay: 0.1s; }
.glass-card:nth-child(2) { animation-delay: 0.2s; }
.glass-card:nth-child(3) { animation-delay: 0.3s; }
.glass-card:nth-child(4) { animation-delay: 0.4s; }
.glass-card:nth-child(5) { animation-delay: 0.5s; }
.glass-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
} 

/* ===== TOP SLOGAN ===== */
.top-slogan {
    width: 100%;
    background: var(--primary-white);
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1.5px;
    padding: 18px 0 12px 0;
    border-bottom: 2px solid var(--border-gray);
    margin-bottom: 0;
    z-index: 1000;
}

/* ===== PAGE NAME: MOBILE ONLY ===== */
.page-name {
    display: none;
}
@media (max-width: 768px) {
    .page-name.mobile-only {
        display: block;
        text-align: center;
        font-size: 1.12rem;
        font-weight: 600;
        color: var(--primary-blue);
        margin-bottom: 10px;
        letter-spacing: 1px;
        font-family: 'Inter', sans-serif;
    }
} 

/* ===== FOOTER BEAUTIFICATION ===== */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 32px 0 10px 0;
    flex-wrap: wrap;
}
.brand-logo {
    height: 44px;
    width: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(102,126,234,0.10);
    padding: 6px 14px;
    object-fit: contain;
    transition: transform 0.18s, box-shadow 0.18s;
    opacity: 0.92;
}
.brand-logo:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(102,126,234,0.18);
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    color: var(--primary-white);
    font-size: 1.01rem;
    margin-top: 10px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 18px 0 0 0;
    flex-wrap: wrap;
}
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}
.social-icon:hover {
    background: var(--primary-white);
    color: var(--primary-blue);
    transform: scale(1.12) rotate(-4deg);
}

.footer-extra {
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 1.01rem;
    color: var(--primary-white);
}

.footer-extra a {
    color: var(--primary-white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-extra a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .brand-logos {
        gap: 18px;
        margin: 22px 0 8px 0;
    }
    .brand-logo {
        height: 32px;
        padding: 4px 8px;
    }
    .footer-links {
        gap: 10px;
    }
    .footer-extra {
        font-size: 0.97rem;
    }
} 

/* ===== TOP NAVIGATION BAR ===== */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 60px;
    margin-bottom: 18px;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(102,126,234,0.08);
    background: rgba(255,255,255,0.95);
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    border: 3px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}
.nav-left .nav-site {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #764ba2;
    letter-spacing: 1px;
}
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.nav-links li a.active, .nav-links li a:hover {
    background: #764ba2;
    color: #fff;
}
.menu-btn {
    background: none;
    border: none;
    color: #764ba2;
    font-size: 1.7rem;
    cursor: pointer;
    display: none;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.18s;
}
.menu-btn:hover {
    background: rgba(102,126,234,0.10);
}

.page-name {
    text-align: center;
    font-size: 1.12rem;
    font-weight: 600;
    color: #764ba2;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
    .nav-links {
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .main-nav {
        flex-direction: row;
        padding: 0 10px;
        min-height: 52px;
    }
    .nav-center {
        justify-content: flex-end;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 32px rgba(102,126,234,0.10);
        border-radius: 0 0 18px 18px;
        z-index: 101;
        padding: 10px 0;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links li a {
        color: #764ba2;
        font-size: 1.08rem;
        padding: 12px 0;
        border-radius: 0;
        width: 100vw;
        text-align: center;
    }
    .menu-btn {
        display: block;
    }
} 

/* ===== ABOUT PAGE BENTO CARDS FOR CORE VALUES ===== */
.about-values-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
    margin: 28px 0 10px 0;
    justify-content: center;
    align-items: stretch;
}
.about-value-bento {
    background: rgba(255,255,255,0.22);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10), 0 2px 8px rgba(0,0,0,0.07);
    padding: 22px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
    z-index: 1;
    border: 1.5px solid rgba(118,75,162,0.10);
    overflow: hidden;
    min-height: 140px;
}
.about-value-bento:hover {
    transform: translateY(-6px) scale(1.04) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 4px 16px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.28);
}
.about-value-bento strong {
    font-size: 1.13rem;
    color: #764ba2;
    font-weight: 700;
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}
.about-value-bento p {
    color: #444;
    font-size: 1.01rem;
    text-align: center;
    margin-bottom: 0;
}
.about-value-bento .pidgin {
    color: var(--accent-green);
    font-size: 0.98rem;
    font-style: italic;
    display: block;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-values-bento {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .about-value-bento {
        padding: 16px 8px 14px 8px;
    }
} 

/* ===== SERVICES PAGE BENTO CARDS ===== */
.services-bento-section {
    margin: 32px 0 18px 0;
    padding: 0;
    background: none;
    box-shadow: none;
}
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}
.service-bento-card {
    background: rgba(255,255,255,0.22);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10), 0 2px 8px rgba(0,0,0,0.07);
    padding: 28px 20px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
    z-index: 1;
    border: 1.5px solid rgba(118,75,162,0.10);
    overflow: hidden;
    min-height: 260px;
}
.service-bento-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 4px 16px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.28);
}
.service-bento-card h2 {
    font-size: 1.25rem;
    color: #764ba2;
    font-weight: 700;
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}
.service-bento-card .service-subtitle {
    font-size: 1.05rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-bento-card p {
    color: #444;
    font-size: 1.01rem;
    margin-bottom: 18px;
    text-align: left;
}
.service-bento-card .pidgin {
    color: #764ba2;
    font-size: 0.98rem;
    font-style: italic;
    display: block;
    margin-top: 4px;
}
.service-bento-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.services-header-section {
    text-align: center;
    margin-bottom: 18px;
}

.services-footer-cta {
    text-align: center;
    margin: 32px 0 0 0;
    padding: 32px 0 24px 0;
    background: none;
    box-shadow: none;
}
.services-footer-cta h2 {
    font-size: 1.4rem;
    color: #764ba2;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .services-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-bento-card {
        padding: 18px 8px 14px 8px;
        min-height: 180px;
    }
    .services-footer-cta {
        padding: 18px 0 12px 0;
    }
} 

/* ===== STORE/DIGITALHOUSE PAGE BENTO CARDS ===== */
.store-bento-section {
    margin: 32px 0 18px 0;
    padding: 0;
    background: none;
    box-shadow: none;
}
.store-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}
.store-bento-card {
    background: rgba(255,255,255,0.22);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.10), 0 2px 8px rgba(0,0,0,0.07);
    padding: 22px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
    z-index: 1;
    border: 1.5px solid rgba(118,75,162,0.10);
    overflow: hidden;
    min-height: 320px;
}
.store-bento-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 4px 16px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.28);
}
.store-bento-card h2 {
    font-size: 1.18rem;
    color: #764ba2;
    font-weight: 700;
    margin: 12px 0 7px 0;
    letter-spacing: 0.01em;
}
.store-bento-card p {
    color: #444;
    font-size: 1.01rem;
    margin-bottom: 10px;
    text-align: left;
}
.store-bento-card .pidgin {
    color: #764ba2;
    font-size: 0.98rem;
    font-style: italic;
    display: block;
    margin-top: 4px;
}
.store-bento-card .btn {
    align-self: flex-start;
    margin-top: auto;
}
.store-img-frame {
    width: 100%;
    height: 140px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(102,126,234,0.10);
}
.store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.store-features {
    list-style: disc inside;
    color: #333;
    font-size: 0.98rem;
    margin: 0 0 10px 0;
    padding: 0 0 0 12px;
}

.store-header-section {
    text-align: center;
    margin-bottom: 18px;
}

.store-footer-cta {
    text-align: center;
    margin: 32px 0 0 0;
    padding: 32px 0 24px 0;
    background: none;
    box-shadow: none;
}
.store-footer-cta h2 {
    font-size: 1.4rem;
    color: #764ba2;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .store-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .store-bento-card {
        padding: 14px 4px 10px 4px;
        min-height: 200px;
    }
    .store-img-frame {
        height: 100px;
    }
    .store-footer-cta {
        padding: 18px 0 12px 0;
    }
} 

/* ===== BLOG/WEALTHY SECRETS PAGE STYLES ===== */
.blog-header-section {
    text-align: center;
    margin-bottom: 18px;
}
.blog-header-section .btn {
    margin-top: 14px;
}

.blog-categories-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin: 18px 0 0 0;
    justify-content: center;
    align-items: stretch;
}
.blog-category-bento {
    background: rgba(255,255,255,0.22);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(102,126,234,0.10), 0 2px 8px rgba(0,0,0,0.07);
    padding: 18px 10px 14px 10px;
    text-align: center;
    font-size: 1.05rem;
    color: #764ba2;
    font-weight: 600;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1.2px solid rgba(118,75,162,0.10);
    cursor: pointer;
    user-select: none;
}
.blog-category-bento:hover {
    transform: translateY(-4px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(102,126,234,0.18), 0 4px 16px rgba(0,0,0,0.10);
    background: rgba(255,255,255,0.28);
}

.blog-pillars-list, .blog-posts-list {
    margin: 18px 0 0 0;
    padding: 0 0 0 18px;
    color: #333;
    font-size: 1.01rem;
    line-height: 1.7;
}

.blog-post-footer-cta {
    margin-top: 18px;
    text-align: left;
}

.blog-sidebar-cta, .blog-category-cta {
    margin: 28px 0 0 0;
    text-align: center;
    padding: 18px 0 10px 0;
    background: rgba(255,255,255,0.13);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(102,126,234,0.08);
}
.blog-sidebar-cta h3, .blog-category-cta h3 {
    color: #764ba2;
    font-size: 1.13rem;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .blog-categories-bento {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .blog-header-section .btn {
        margin-top: 8px;
    }
    .blog-sidebar-cta, .blog-category-cta {
        padding: 10px 0 6px 0;
    }
} 

/* ===== LINKUP/CONTACT PAGE STYLES ===== */
.contact-header-section {
    text-align: center;
    margin-bottom: 18px;
}
.contact-cta-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin: 18px 0 10px 0;
    flex-wrap: wrap;
}
.contact-pricing-note {
    font-size: 0.98rem;
    color: #764ba2;
    margin-top: 8px;
}
.contact-form-section {
    max-width: 500px;
    margin: 0 auto 24px auto;
    padding: 24px 18px 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.13);
    box-shadow: 0 2px 12px rgba(102,126,234,0.08);
}
.contact-form-section h2 {
    text-align: center;
    color: #764ba2;
    margin-bottom: 14px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-form label {
    font-size: 1.01rem;
    color: #333;
    font-weight: 500;
}
.contact-form input, .contact-form textarea {
    border: 1.2px solid #ccc;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255,255,255,0.7);
    transition: border 0.18s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1.2px solid #764ba2;
    outline: none;
}
.contact-form button {
    margin-top: 8px;
    width: 100%;
}

.contact-info-section {
    max-width: 600px;
    margin: 0 auto 24px auto;
    padding: 24px 18px 18px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.13);
    box-shadow: 0 2px 12px rgba(102,126,234,0.08);
    text-align: center;
}
.contact-info-section h2 {
    color: #764ba2;
    margin-bottom: 10px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    color: #333;
    font-size: 1.01rem;
}
.contact-info-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.contact-info-list a {
    color: #764ba2;
    text-decoration: underline;
}
.contact-whatsapp-cta {
    margin: 18px 0 0 0;
}
.contact-whatsapp-cta .btn {
    font-size: 1.08rem;
    padding: 10px 24px;
}

.contact-footer-cta {
    text-align: center;
    margin: 32px 0 0 0;
    padding: 32px 0 24px 0;
    background: none;
    box-shadow: none;
}
.contact-footer-cta h2 {
    font-size: 1.4rem;
    color: #764ba2;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .contact-cta-row {
        flex-direction: column;
        gap: 10px;
    }
    .contact-form-section, .contact-info-section {
        padding: 14px 4px 10px 4px;
    }
    .contact-footer-cta {
        padding: 18px 0 12px 0;
    }
} 

/* Enhanced Contact Form Styles */
.contact-form-section {
    padding: 4rem 0;
    background: var(--primary-white);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

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

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--accent-charcoal);
    margin-top: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-green);
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    position: relative;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.info-card p {
    margin: 0.25rem 0;
    color: var(--accent-charcoal);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--primary-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.close {
    color: var(--accent-charcoal);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-green);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-gray);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
} 

/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.testimonial-card {
    background: var(--light-gray);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(30,58,138,0.06);
    border: 1.5px solid var(--border-gray);
    padding: 22px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 160px;
}
.testimonial-card .quote {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.05rem;
}
.testimonial-meta {
    color: var(--accent-charcoal);
    font-size: 0.98rem;
    margin-top: 10px;
    font-style: italic;
} 

.hero-phrase-below-image {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.45rem;
    font-weight: 900;
    margin-top: 28px;
    margin-bottom: 0;
    letter-spacing: 0.7px;
}

.about-purpose {
    color: var(--accent-green);
    font-style: italic;
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 6px;
    text-align: center;
}

.hero-slogan { display: none !important; } 

/* ===== SOFT LIFE PAGE STYLES ===== */

/* Philosophy Section */
.philosophy-section {
    text-align: center;
    margin: 2rem 0;
    padding: 3rem 2rem;
}

.philosophy-quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.philosophy-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-charcoal);
    max-width: 800px;
    margin: 0 auto;
}

/* Collection Section */
.collection-section {
    margin: 2rem 0;
    padding: 2rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.collection-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--primary-white);
    box-shadow: 0 4px 20px rgba(30,58,138,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(30,58,138,0.15);
}

.collection-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.collection-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.collection-item p {
    color: var(--accent-charcoal);
    font-size: 1rem;
    line-height: 1.6;
}

.collection-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--accent-charcoal);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* About Soft Life Section */
.about-softlife-section {
    margin: 2rem 0;
    padding: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-charcoal);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(30,58,138,0.15);
}

/* Values Section */
.values-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: var(--primary-white);
    border: 1px solid rgba(30,58,138,0.1);
    box-shadow: 0 4px 20px rgba(30,58,138,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30,58,138,0.15);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--accent-charcoal);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 2rem 0;
    padding: 3rem 2rem;
    background: var(--primary-blue);
    color: var(--primary-white);
    border-radius: 16px;
}

.cta-section h2 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-white);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: var(--primary-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-white);
}

.cta-buttons .cta-button:hover {
    background: transparent;
    color: var(--primary-white);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.cta-buttons .cta-button.secondary:hover {
    background: var(--primary-white);
    color: var(--primary-blue);
}

/* Responsive Design for Soft Life Page */
@media (max-width: 768px) {
    .philosophy-quote {
        font-size: 1.3rem;
    }
    
    .philosophy-quote::before,
    .philosophy-quote::after {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.large {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .philosophy-section,
    .collection-section,
    .about-softlife-section,
    .values-section,
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .collection-item,
    .value-card {
        padding: 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
} 

/* Success Calculator Section */
.success-calculator-section {
    padding: 4rem 0;
    background: var(--primary-white);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

.input-group input,
.input-group select {
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.result-card {
    background: var(--primary-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.result-card.highlight {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold), #FFA500);
    color: var(--accent-charcoal);
}

.result-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.result-card.highlight h3 {
    color: var(--accent-charcoal);
}

.result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.result-card.highlight .result-amount {
    color: var(--accent-charcoal);
}

.result-description {
    font-size: 0.9rem;
    color: var(--accent-charcoal);
    opacity: 0.8;
}

.calculator-note {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.calculator-note p {
    margin: 0;
    color: var(--accent-charcoal);
}

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--light-gray);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

/* Recent Achievements Section */
.achievements-section {
    padding: 4rem 0;
    background: var(--primary-white);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* Bento Tools Section */
.bento-tools-section {
    padding: 4rem 0;
    background: var(--primary-white);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}

/* ============= Global Layout System ============= */
:root{
  --nav-h: 64px;            /* navbar height */
  --page-max: 1200px;       /* max content width */
  --gutter: 16px;           /* side padding */
}

/* FORCE OVERRIDE - Make sure these rules win! */

/* Center everything inside a consistent page container */
.page-wrap{
  width: 100% !important;
  display: block !important;
}
.container{
  max-width: var(--page-max) !important;
  margin: 0 auto !important;         /* centers the block */
  padding: 0 var(--gutter) !important;
  width: 100% !important;
}

/* Give all main pages enough top space so sticky nav never overlaps */
main{
  display: block !important;
  padding-top: calc(var(--nav-h) + 16px) !important;
}

/* FORCE BODY & HTML CENTERING */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  overflow-x: hidden !important;
}

body {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  min-height: 100vh !important;
}

/* Center each big section (cards, bento, etc.) */
.section{
  max-width: var(--page-max) !important;
  margin: 0 auto !important;
  padding: 32px var(--gutter) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Many grids use this—keeps them centered */
.center-grid{
  margin: 0 auto;
  max-width: var(--page-max);
}

/* ============= Sticky Transparent Navbar ============= */
.site-nav{
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  height: var(--nav-h) !important;
  display: flex !important;
  align-items: center !important;
  backdrop-filter: blur(10px) !important;
  background: rgba(255,255,255,0.8) !important;      /* glass effect */
  border: 3px solid var(--accent-gold) !important;    /* golden border */
  border-radius: 16px !important;                     /* rounded corners */
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3) !important;
  margin: 16px !important;
  width: calc(100% - 32px) !important;
  box-sizing: border-box !important;
}

/* Dropdown fix for current .site-nav structure */
.nav-links li { position: relative; }
.site-nav .dropdown-menu{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border: 2px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 8px 0;
  z-index: 1200;
}
.site-nav .dropdown-menu li a{
  display: block;
  padding: 10px 14px;
  color: #333;
  white-space: nowrap;
}
.site-nav .dropdown-menu li a:hover{
  background: #fff7dd;
  color: #333;
}
.nav-links li.dropdown:hover > .dropdown-menu{ display: block; }

/* Bring back glowing hammer beside Tools (tight, next to text) */
.nav-links a[href*="tools"]{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a[href*="tools"]:before{
  content: "🛠️";
  text-shadow: 0 0 6px #ffe699, 0 0 12px #f4cd70;
}
.nav-links a[href*="tools"]:after{ content: none; }

/* nav links styling (optional) */
.site-nav .nav-inner{
  max-width: var(--page-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ============= 500+ badge doesn't hide behind nav ============= */
/* If your badge is fixed in top-right corner, nudge it below nav */
.badge-500{
  position: fixed !important;                /* or absolute, if you used that */
  right: 20px !important;
  top: calc(var(--nav-h) + 24px) !important;  /* sit below sticky nav */
  z-index: 999 !important;
  background: rgba(255,255,255,0.9) !important;
  border: 2px solid var(--accent-gold) !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

/* ============= Footer (mossy olive) with centered FD logo ============= */
.site-footer{
  background: #5A7048 !important;   /* mossy olive */
  color: #F1F1ED !important;
  margin-top: 40px !important;
  width: 100% !important;
  position: relative !important;
  bottom: 0 !important;
}

/* Ensure FD logo sits centered at top of footer, not overlaying */
.site-footer .footer-corner-logo{
  position: static !important;
  display: block !important;
  margin: 0 auto 12px !important;
  width: 64px !important; height: 64px !important;
  border-radius: 12px !important; object-fit: cover !important;
  box-shadow: 0 3px 10px rgba(0,0,0,.18) !important; background: #fff !important;
}

/* REMOVE ALL OLD FOOTER CLASSES - THEY'RE CONFLICTING! */
.old-footer-tools-section, .old-footer-tools-grid, .old-footer-tool-link, .old-brand-logos, .old-brand-logo, .old-footer-copyright {
  display: none !important;
}
.site-footer .footer-inner{
  max-width: var(--page-max) !important;
  margin: 0 auto !important;
  padding: 32px var(--gutter) !important;
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  justify-items: center !important;          /* centers EVERYTHING */
  row-gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* FD logo centered */
.footer-brand{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-brand img{
  width: 56px; height: 56px; border-radius: 12px;
}
.footer-copy{ margin: 0; opacity: .9; }

.footer-nav{
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.footer-nav a{ color:#DCE5D0; text-decoration:none; }
.footer-nav a:hover{ color:#fff; }

.footer-social{
  display: flex; gap: 14px; justify-content: center;
}
.footer-social a{ color:#F1F1ED; text-decoration:none; }
.footer-social a:hover{ opacity:.75; }

/* ============= Utility: center any big block ============= */
.centered{ margin-left:auto; margin-right:auto; }

/* ===== HOMEPAGE SECTION GOLDEN BORDERS ===== */
/* === Hotfix: nav hammer spacing, nav alignment, footer logo positioning === */

/* Keep brand at left and links aligned without overlapping */
.site-nav .nav-inner{
  justify-content: space-between !important;
}

/* Tighter hammer next to "Tools" text; kill floating :after variant */
.nav-links a[href*="tools"]{
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  position: relative;
}
.nav-links a[href*="tools"]::before{
  content: "🛠️";
  text-shadow: 0 0 6px #ffe699, 0 0 12px #f4cd70;
  font-size: 1rem;
  line-height: 1;
}
.nav-links a[href*="tools"]::after{ content: none !important; }

/* Ensure footer logo sits inside footer, centered at the top, not hovering */
.site-footer .footer-corner-logo{
  position: static !important;
  display: block !important;
  margin: 0 auto 10px !important;
  z-index: 0 !important;
}
.site-footer .footer-inner{
  justify-items: center !important;
  align-content: start !important;
}
.hero {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.story-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.home-frames-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.offer-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.success-calculator-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.video-testimonial-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.cta-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.story-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.home-frames-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.offer-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.success-calculator-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.video-testimonial-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.cta-section {
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.bento-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .bento-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .bento-tools-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0 0 0.25rem 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.testimonial-title {
    margin: 0 0 0.5rem 0;
    color: var(--accent-charcoal);
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-rating {
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--accent-charcoal);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 4rem 0;
    background: var(--primary-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-placeholder img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: var(--accent-green);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.video-card p {
    padding: 0 1.5rem 1rem;
    margin: 0;
    color: var(--accent-charcoal);
    font-size: 0.9rem;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Responsive Design for Calculator */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
} 

/* Progress Tracking Section */
.progress-tracking-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.progress-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.progress-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.progress-card:hover {
    transform: translateY(-5px);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.progress-header h3 {
    margin: 0;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.progress-percentage {
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--border-gray);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.progress-stats .stat {
    background: var(--light-gray);
    color: var(--accent-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.achievement-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge.earned {
    background: var(--accent-gold);
    color: var(--accent-charcoal);
}

.badge.locked {
    background: var(--border-gray);
    color: var(--accent-charcoal);
    opacity: 0.5;
}

.badge.earned:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

/* Achievement Gallery */
.achievement-gallery {
    margin-top: 3rem;
}

.achievement-gallery h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-item h4 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.achievement-item p {
    color: var(--accent-charcoal);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.achievement-date {
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Interactive Tools Section */
.interactive-tools-section {
    padding: 4rem 0;
    background: var(--primary-white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: var(--primary-white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.tool-card p {
    color: var(--accent-charcoal);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

/* Loading Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* Responsive Design for Progress Tracking */
@media (max-width: 768px) {
    .progress-dashboard {
        grid-template-columns: 1fr;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-stats {
        flex-direction: column;
    }
} 

/* Compact Trust Badge */
.trust-badge-compact {
    position: fixed;
    top: 15px;
    right: 15px;
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    z-index: 100;
    text-align: center;
    min-width: 70px;
}

.badge-number {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 0.2rem;
}

/* Services Section Styling */
.services-section {
    padding: 4rem 0;
    background: var(--primary-white);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
    max-width: 1200px;
    width: 90%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-bento-card {
    background: var(--primary-white);
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-bento-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-bento-card h3 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    text-align: center;
}

.service-bento-card p {
    color: var(--accent-charcoal);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: var(--light-gray);
    color: var(--accent-charcoal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.duration {
    color: var(--accent-charcoal);
    font-size: 0.9rem;
}

.payment-info {
    text-align: center;
}

.payment-note {
    font-size: 0.8rem;
    color: var(--accent-charcoal);
    margin-bottom: 1rem;
}

.payment-btns {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pay-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pay-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badge-compact {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.5rem;
        min-width: 55px;
    }
    
    .badge-number {
        font-size: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.55rem;
    }
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-contact-card {
    background: var(--primary-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.quick-contact-card.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

.quick-contact-card.email:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

.quick-contact-card.phone:hover {
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quick-contact-card h3 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.quick-contact-card p {
    color: var(--accent-charcoal);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.contact-action {
    background: var(--accent-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.quick-contact-card:hover .contact-action {
    background: var(--primary-blue);
    transform: scale(1.05);
}

/* Improved Contact Form Layout */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-form {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-gray);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--primary-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid var(--border-gray);
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.info-card p {
    margin: 0.25rem 0;
    color: var(--accent-charcoal);
    font-size: 0.95rem;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== GLOBAL RESET FOR MOBILE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(30,58,138,0.06);
    border: 1.5px solid var(--border-gray);
    margin-bottom: 3rem;
}

.hero img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(30,58,138,0.15);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.hero img:hover {
    transform: scale(1.02);
}

.hero h1 {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--accent-charcoal);
    line-height: 1.4;
    margin-top: 1rem;
}

.hero .highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
    width: 100%;
}

.hero .cta-buttons a {
    background: var(--accent-gold);
    padding: 10px 16px;
    text-decoration: none;
    font-weight: bold;
    color: var(--accent-charcoal);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 100%;
}

.hero .cta-buttons a:hover {
    background: var(--primary-blue);
    color: var(--primary-white);
}

/* ===== HERO BADGE STYLING ===== */
.hero .badge {
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* ===== MEDIA QUERY FOR MOBILE ===== */
@media (max-width: 768px) {
    /* Ensure the hero container centers its children */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1rem !important;
    }

    /* Scale down the logo and add some breathing room */
    .hero img {
        max-width: 80% !important;
        height: auto !important;
        margin-bottom: 1rem !important;
    }

    /* Center the 500+ badge and remove any absolute positioning */
    .hero .badge {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 0.5rem auto !important;
        display: block !important;
    }

    /* Make headings and paragraphs full-width for readability */
    .hero h1,
    .hero p {
        width: 100% !important;
        margin-top: 0.75rem !important;
        font-size: 1.1rem;
    }

    /* Stack and center your CTA buttons */
    .hero .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-top: 1rem !important;
    }

    .hero .cta-buttons a {
        width: 100% !important;
        max-width: 300px;
        text-align: center !important;
        padding: 0.75rem 1rem !important;
    }
}

/* ===== STORY SECTION ===== */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem;
    margin-bottom: 3rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--accent-charcoal);
}

.story-phrase {
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.story-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(30,58,138,0.12);
    background: var(--primary-white);
    border: 2px solid var(--border-gray);
    transition: transform 0.3s ease;
}

.story-img-frame:hover {
    transform: translateY(-5px);
}

.story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.story-img:hover {
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30,58,138,0.9);
    color: var(--primary-white);
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.story-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
}

.story-cta .cta-phrase {
    font-style: italic;
    color: var(--accent-charcoal);
    margin-top: 1rem;
    font-size: 1rem;
}

/* Mobile Responsive for Story Section */
@media (max-width: 768px) {
    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .story-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-img {
        height: 180px;
    }
    
    .story-content h3 {
        font-size: 1.8rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 1.5rem 1rem;
    }
    
    .story-img {
        height: 150px;
    }
    
    .story-content h3 {
        font-size: 1.6rem;
    }
    
    .story-phrase {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

/* ===== OFFER SECTION ===== */
.offer-section {
    padding: 3rem;
    margin-bottom: 3rem;
}

.offer-section h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.offer-bento {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 20px;
    background: var(--primary-white);
    box-shadow: 0 6px 24px rgba(30,58,138,0.08);
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.offer-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30,58,138,0.15);
}

.offer-tile i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.offer-tile h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-tile p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--accent-charcoal);
}

.offer-tile .pidgin {
    color: var(--accent-green);
    font-weight: 600;
    font-style: italic;
}

.offer-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Mobile Responsive for Offer Section */
@media (max-width: 768px) {
    .offer-section {
        padding: 2rem 1.5rem;
    }
    
    .offer-section h3 {
        font-size: 1.8rem;
    }
    
    .offer-bento {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-tile {
        padding: 1.5rem;
    }
    
    .offer-tile i {
        font-size: 2.5rem;
    }
    
    .offer-tile h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .offer-section {
        padding: 1.5rem 1rem;
    }
    
    .offer-section h3 {
        font-size: 1.6rem;
    }
    
    .offer-tile {
        padding: 1.2rem;
    }
    
    .offer-tile i {
        font-size: 2rem;
    }
    
    .offer-tile h4 {
        font-size: 1.2rem;
    }
}

/* ===== MEDIA QUERY FOR DESKTOP ===== */
@media (min-width: 769px) {
    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        padding: 3rem;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero img {
        height: 500px;
        width: 100%;
        margin-bottom: 0;
        max-width: 100%;
        justify-self: center;
    }
    
    .hero .badge {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-top: 0;
        text-align: left;
    }
    
    .hero p {
        font-size: 1.3rem;
        margin-top: 0;
        text-align: left;
    }
    
    .hero .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        width: auto;
        justify-content: flex-start;
    }
    
    .hero .cta-buttons a {
        width: auto;
        padding: 12px 24px;
    }
}

/* =============================
   FORCE MOBILE HERO TO CENTER
   ============================= */
@media only screen and (max-width: 768px) {
    /* hide any overflow so nothing sticks off the side */
    html, body {
        overflow-x: hidden !important;
    }

    /* TARGET YOUR HERO WRAPPER – 
       replace .hero with the actual class/ID of your hero section 
       if you named it something else */
    .hero {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* MAKE THE LOGO SCALE DOWN AND CENTER */
    .hero img {
        width: 80% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto 1rem !important;
        display: block !important;
    }

    /* PIN THE BADGE IN THE MIDDLE */
    .hero .badge {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        display: block !important;
        margin: 0.5rem auto !important;
    }

    /* LET TEXT FULL-WIDTH FOR READABILITY */
    .hero h1,
    .hero p {
        width: 100% !important;
        margin: 0.75rem 0 !important;
    }

    /* STACK & CENTER THE BUTTONS */
    .hero .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-top: 1rem !important;
    }
    .hero .cta-buttons a {
        width: 100% !important;
        max-width: 300px;
        text-align: center !important;
    }
}

/* ===== FRAME SECTION STYLING ===== */
.frame-section {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.frame {
  max-width: 100%;
  text-align: center;
}

.frame img {
  width: 100%;
  max-width: 400px;    /* adjust as needed */
  height: auto;
  border: 4px solid #f8d900;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.frame figcaption {
  margin-top: 0.5rem;
  font-style: italic;
  color: #555;
}

/* Mobile tweak */
@media (max-width: 600px) {
  .frame-section {
    padding: 1rem;
  }
  
  .frame img {
    max-width: 80%;
    height: auto;
  }
  
  .frame figcaption {
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
}

/* Force mobile stacking for story section */
@media (max-width: 768px) {
  .story-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .story-content {
    order: 1;
  }
  
  .frame-section {
    order: 2;
    margin: 1rem 0;
  }
  
  .story-cta {
    order: 3;
  }
}

/* ===== HOME FRAMES LAYOUT ===== */
/* Base: stack everything centered */
.home-frames {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.frame img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border: 6px solid #f8d900;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(248, 217, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frame img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(248, 217, 0, 0.4);
}

.frame figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
  color: #555;
}

.pro-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.quote {
  max-width: 400px;
  background: #f0f0f0;
  padding: 1rem;
  border-left: 4px solid #f8d900;
  font-style: italic;
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--primary-blue);
  line-height: 1.6;
}

/* DESKTOP: put pro-image & quote side-by-side, young-me on the left */
@media (min-width: 769px) {
  .home-frames {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .home-frames .young {
    margin-right: 2rem;
  }

  .pro-quote {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .quote {
    margin: 0; /* remove extra mobile margins */
  }
}

/* MOBILE: return to vertical stack so quote sits between the two frames */
@media (max-width: 768px) {
  .pro-quote {
    flex-direction: column;
  }

  .quote {
    margin: 1rem 0;
  }
}

/* ===== ABOUT PAGE HERO SECTION ===== */
.hero-section {
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  text-align: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15);
  background: var(--primary-white);
  border: 3px solid var(--accent-gold);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-phrase-below-image {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsive for About hero */
@media (max-width: 768px) {
  .hero-section {
    padding: 1rem;
    margin: 1rem auto;
  }
  
  .hero-image-frame {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .hero-image {
    height: 350px;
  }
  
  .hero-phrase-below-image {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}

/* === GLOBAL HERO STYLING (identical to Home) === */
.hero {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 2rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  overflow-x: hidden !important;
}

.hero img {
  width: 90% !important;
  max-width: 500px !important;
  height: auto !important;
  display: block !important;
  margin-bottom: 1.5rem !important;
}

/* MOBILE ADJUSTMENT */
@media only screen and (max-width: 768px) {
  .hero {
    padding: 1rem !important;
  }
  .hero img {
    width: 100% !important;
    max-width: 90% !important;
  }
}

/* ==============================
   About Page: Story Section
   ============================== */
.story-section {
  margin-top: 2rem;               /* space below your story text */
}

/* ======= story-frames-with-quote container ======= */
.story-frames-with-quote {
  display: flex;
  align-items: center;      /* vertical center of the quote */
  justify-content: center;  /* center whole group on page */
  gap: 4rem;
  margin: 4rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}

/* ======= NEW SERVICES SECTION DESIGN ======= */
:root {
  /* Brand Colors */
  --color-primary: #F8D900;      /* golden yellow accent */
  --color-secondary: #000000;    /* pure black for text */
  --color-accent: #4CAF50;       /* green for CTAs */
  --color-bg: #F9F9F9;           /* light gray background */
  --color-card-bg: #FFFFFF;      /* white card background */
  --color-text: #000000;         /* pure black for body text */
}

/* --- Services Section Wrapper --- */
.services-section {
  background: var(--color-bg);
  padding: 4rem 1rem;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.services-subtitle {
  font-size: 1.125rem;
  color: #000000;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* --- Grid Layout --- */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Individual Card --- */
.service-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-primary);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(248, 217, 0, 0.2);
  border-color: var(--accent-gold);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.card-desc {
  flex-grow: 1;
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}



.card-price {
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* --- CTA Button --- */
.card-cta {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.card-cta:hover {
  background: #388E3C; /* slightly darker green */
}

/* --- Responsive Tweak for Small Mobile --- */
@media (max-width: 400px) {
  .services-title {
    font-size: 2rem;
  }
  .services-subtitle {
    font-size: 1rem;
  }
}

/* ================================
   Services Section: Ensure Text Contrast
   ================================ */

/* 1) Background behind all cards */
.services-section {
  background: var(--color-bg) !important;
}

/* 2) Make sure the grid text inherits the right color */
.services-section {
  color: var(--color-text) !important;
}

/* 3) Titles in each card */
.service-card .card-title {
  color: #000000 !important;
  font-size: 1.5rem !important;
  margin-bottom: 0.75rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}

/* 4) Descriptions */
.service-card .card-desc {
  color: #000000 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  font-weight: 500 !important;
  text-align: center !important;
}

/* 5) Price */
.service-card .card-price {
  color: var(--color-accent) !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
}

/* 6) CTA button text */
.service-card .card-cta {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  display: block !important;
  margin: 0 auto !important;
}

/* 7) Ensure icons show (if using font or SVG icons) */
.service-card .card-icon {
  color: var(--color-primary) !important;
  opacity: 1 !important;
  text-align: center !important;
  display: block !important;
}

/* 8) If any card element was accidentally set transparent, force opacity */
.service-card,
.service-card * {
  opacity: 1 !important;
}

/* 9) Make sure no text is hidden behind overflow */
.service-card {
  overflow: visible !important;
}

/* ===== Fix Service Card Headings Alignment ===== */

/* 1. Make sure the grid items all align to the top */
.services-grid {
  align-items: flex-start;    /* instead of center or stretch */
}

/* 2. Force each card into a strict vertical flow */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 3. Ensure the title always sits full-width at the top */
.service-card .card-title {
  display: block;
  width: 100%;
  margin: 0.75rem 0;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--color-secondary);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 4. Give the icon a little breathing room above the title */
.service-card .card-icon {
  margin-bottom: 0.5rem;
}

/* 5. Keep the rest of the content flowing beneath */
.service-card .card-desc,
.service-card .card-price,
.service-card .card-cta {
  width: 100%;
}

/* =============================================================================
   Recent Achievements – Card Styling (same as service cards)
   ============================================================================= */
.achievement-card {
  background: #ffffff;                           /* white background */
  border: 2px solid var(--color-primary);        /* golden border */
  border-radius: 8px;                            /* rounded corners */
  padding: 1.5rem 1rem;                          /* inner spacing */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);        /* light drop shadow */
  overflow: hidden;                              /* contain contents */
  text-align: center;                            /* center text & icons */
  transition: transform 0.3s ease,               /* hover lift effect */
              box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* If you have icons or titles inside, you can tighten them up too */
.achievement-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.achievement-card .title {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.achievement-card .desc {
  font-size: 1rem;
  color: #444;
}

/* =============================================================================
   Tools Pages Styling
   ============================================================================= */

/* Tools Hub Page */
.tools-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fdfdfd;
}

.tools-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.tools-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tools-subtext {
  font-size: 1rem;
  color: #888;
  margin-top: -10px;
  margin-bottom: 2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.tool-card {
  background: #fff;
  border: 1.5px solid #f4cd70;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: scale(1.02);
}

.tool-card img {
  height: 40px;
  margin-bottom: 10px;
  filter: grayscale(100%) brightness(0%) opacity(0.7);
  display: block;
  margin: 0 auto 15px;
}

.tool-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.tool-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature {
  background: rgba(248, 217, 0, 0.1);
  color: var(--color-secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tool-cta {
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.tool-cta:hover {
  background-color: #229954;
}

.calculator-card {
  border-color: var(--color-primary);
  background: #fff;
}

/* How to Use Section */
.how-to-use {
  padding: 4rem 0;
  background: #f8f9fa;
}

.how-to-use h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-secondary);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.usage-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-primary);
}

.usage-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.usage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.usage-card p {
  color: var(--color-text);
  line-height: 1.6;
}

/* Success Stories */
.success-stories {
  padding: 4rem 0;
  background: var(--color-bg);
}

.success-stories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.stories-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 3rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.story-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.story-author {
  font-weight: 600;
  color: var(--color-secondary);
  text-align: right;
}

/* Workshop, Tracker, and Learning Path Pages */
.workshop-subtitle,
.tracker-subtitle,
.learning-header {
  text-align: center;
  margin-bottom: 3rem;
}

.learning-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  text-align: center;
}

.learning-subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.learning-pidgin {
  margin: 0;
  text-align: center;
}

.learning-pidgin .pidgin {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
}

.workshop-container,
.tracker-container,
.learning-container {
  max-width: 1200px;
  margin: 0 auto;
}

.assessment-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.assessment-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.assessment-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  margin: 0;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.path-results {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.path-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.overview-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.overview-card h4 {
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.learning-phases {
  margin-top: 2rem;
}

.learning-phase {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.learning-phase h4 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.modules {
  margin-top: 1rem;
}

.modules h5 {
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.modules ul {
  list-style: none;
  padding-left: 0;
}

.modules li {
  padding: 0.25rem 0;
  color: var(--color-text);
}

.path-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.saved-paths,
.saved-goals {
  margin-top: 3rem;
}

.paths-grid,
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.path-card,
.goal-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.path-card h4,
.goal-card h4 {
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.path-actions,
.goal-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Performance Tracker Specific Styles */
.metric-input {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.performance-dashboard {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.summary-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.summary-card h4 {
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
  font-size: 1rem;
}

.summary-card p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.charts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.chart-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.chart-section h4 {
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.recent-entries {
  margin-top: 2rem;
}

.entries-list {
  max-height: 300px;
  overflow-y: auto;
}

.entry-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.entry-date {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.entry-metrics {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.entry-metrics span {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.entry-notes {
  font-style: italic;
  color: var(--color-text);
  font-size: 0.9rem;
}

.data-export {
  margin-top: 2rem;
  text-align: center;
}

.export-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .path-overview {
    grid-template-columns: 1fr;
  }
  
  .charts-container {
    grid-template-columns: 1fr;
  }
  
  .summary-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .usage-grid {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .step-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .path-actions {
    flex-direction: column;
  }
  
  .export-buttons {
    flex-direction: column;
  }
}

/* Tools Quick Link Banner */
.tools-quicklink-banner {
  grid-column: 1 / -1;
  text-align: center;
  margin: 2rem 0;
}

.tools-quicklink {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--accent-gold));
  color: var(--color-secondary);
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(248, 217, 0, 0.3);
  border: 2px solid transparent;
}

.tools-quicklink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 217, 0, 0.4);
  border-color: var(--accent-gold);
  color: var(--color-secondary);
}

/* =============================================================================
   Enhanced Tools Navigation & Accessibility
   ============================================================================= */

/* Navigation Text - Make All Bold */
.nav-links a {
  font-weight: 700 !important;
  font-size: 1rem;
}

/* Tools Navigation Highlight */
.nav-links a[href*="tools"] {
  position: relative;
  font-weight: 700;
}

.nav-links a[href*="tools"]:after {
  content: "🛠️";
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.7rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Tools Quick Access Banner */
.tools-quick-access {
  background: linear-gradient(135deg, var(--color-primary), var(--accent-gold));
  padding: 1rem;
  text-align: center;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(248, 217, 0, 0.3);
}

.tools-quick-access a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tools-quick-access a:hover {
  text-decoration: underline;
}

/* Tools Footer Links */
.footer-tools-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--color-primary);
}

.footer-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.footer-tool-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(248, 217, 0, 0.1);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-tool-link:hover {
  background: rgba(248, 217, 0, 0.2);
  transform: translateX(5px);
}

/* Enhanced Mobile Responsiveness for Tools */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tool-card {
    padding: 1.5rem;
  }
  
  .tool-icon {
    font-size: 2.5rem;
  }
  
  .tool-title {
    font-size: 1.3rem;
  }
  
  .tool-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature {
    width: 100%;
    text-align: center;
  }
  
  .usage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-tools-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-quick-access {
    margin: 0.5rem 0;
    padding: 0.75rem;
  }
  
  .tools-quick-access a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .tools-title {
    font-size: 2rem;
  }
  
  .tools-subtitle {
    font-size: 1rem;
  }
  
  .tool-card {
    padding: 1rem;
  }
  
  .tool-icon {
    font-size: 2rem;
  }
  
  .usage-card {
    padding: 1.5rem;
  }
  
  .story-card {
    padding: 1.5rem;
  }
}

/* Tools Page Specific Enhancements */
.tools-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--accent-gold));
  padding: 3rem 0;
  text-align: center;
  color: var(--color-secondary);
}

.tools-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tools-hero p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Tools Search/Filter (for future use) */
.tools-filter {
  margin: 2rem 0;
  text-align: center;
}

.tools-filter select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  margin: 0 0.5rem;
}

/* Tools Stats */
.tools-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.tool-stat {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 16px rgba(248, 217, 0, 0.1);
}

.tool-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.tool-stat-label {
  font-size: 1.1rem;
  color: var(--color-secondary);
  font-weight: 600;
}

/* Accessibility Enhancements */
.tool-card:focus-within {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.tool-cta:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Skip to Tools Link for Accessibility */
.skip-to-tools {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 8px 16px;
  z-index: 999;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.skip-to-tools:focus {
  left: 10px;
}

/* ======= NEW ABOUT FRAMES QUOTE LAYOUT ======= */
/* container: desktop row, mobile column */
.about-frames-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* stack the two frames vertically on the left */
.about-frames-quote .frames-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Hide mobile frames on desktop */
.mobile-frame {
  display: none;
}

/* common frame styling */
.about-frames-quote .frame {
  max-width: 300px;
  width: 100%;
  border: 4px solid #f8d900;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-frames-quote .frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-frames-quote .frame figcaption {
  margin: 0.5rem 0;
  font-style: italic;
  color: #555;
}

/* quote styling */
.about-frames-quote .quote {
  max-width: 400px;
  background: #f9f9f9;
  border-left: 4px solid #f8d900;
  padding: 1rem;
  font-style: italic;
  color: #222;
  line-height: 1.5;
  text-align: center;
}

/* mobile override: stack everything */
@media (max-width: 768px) {
  .about-frames-quote {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  /* Hide desktop frames on mobile */
  .desktop-frames {
    display: none !important;
  }
  
  /* Show mobile frames and set order */
  .mobile-frame {
    display: block !important;
    max-width: 280px;
    margin: 0 auto;
  }
  
  /* Set specific order for mobile stacking */
  .about-frames-quote .frame.young {
    order: 1;
  }
  
  .about-frames-quote .quote {
    order: 2;
    width: 100%;
    max-width: 90%;
    margin: 1rem 0;
    background: #f9f9f9;
    border-left: 4px solid #f8d900;
    padding: 1.5rem;
    font-style: italic;
    color: #222;
    line-height: 1.6;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  
  .about-frames-quote .frame.pro {
    order: 3;
  }
  
  /* Make frames smaller on mobile */
  .about-frames-quote .frame {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .about-frames-quote .frame figcaption {
    font-size: 0.9rem;
    margin: 0.75rem 0;
  }
}

/* LEFT COLUMN: stack frames */
.frames-col {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* REUSE your .frame styling */
.frames-col .frame {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.frames-col .frame img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border: 4px solid #f8d900;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.frames-col .frame figcaption {
  margin-top: 1rem;
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
}

/* RIGHT COLUMN: quote styling */
.quote {
  max-width: 450px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--accent-gold);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.1);
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-blue);
  text-align: center;
  line-height: 1.6;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-gold);
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: 'Georgia', serif;
}

.quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent-gold);
  position: absolute;
  bottom: -30px;
  right: 10px;
  font-family: 'Georgia', serif;
}

/* Center story content */
.story-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.story-content h3,
.story-content h4 {
  text-align: center;
}

.story-content p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ====================================
   About Page – "Complete Story" Details
   ==================================== */
.about-details {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.about-details h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 2.5rem 0 1rem;
  text-align: center;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.about-details p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Mobile Tweak: reduce top/bottom spacing */
@media (max-width: 768px) {
  .about-details {
    margin: 2rem auto;
  }
  .about-details h2 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.75rem;
  }
  .about-details p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

.story-frames {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;        /* center on page */
  gap: 2rem;                      /* space between frames */
  align-items: flex-start;        /* align items to top */
}

/* Frame styling */
.story-frames .frame {
  flex: 1 1 300px;                /* grow/shrink, ideal width 300px */
  max-width: 300px;
  text-align: center;
  background: #fff;
  border: 4px solid #f8d900;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.story-frames .frame img {
  width: 100%;
  height: auto;
  display: block;
}

.story-frames .frame figcaption {
  margin: 0.75rem 0;
  font-style: italic;
  color: #333;
}

/* ==== DESKTOP: side-by-side ==== */
@media only screen and (min-width: 769px) {
  .story-frames {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 3rem;
  }
  
  /* Frames Container - Stack frames vertically */
  .frames-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 0 0 auto;
  }
  
  .story-quote {
    align-self: center;
    margin-top: 0;
    flex: 0 0 auto;
  }
  
  .frame-quote {
    max-width: 350px;
    font-size: 1.2rem;
    padding: 1.5rem;
    height: fit-content;
  }
}

/* —— MOBILE OVERRIDE —— */
@media only screen and (max-width: 768px) {
  .story-frames-with-quote {
    flex-direction: column;   /* stack everything vertically */
    align-items: center;
    gap: 2rem;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .frames-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 90%;
  }
  
  .frames-col .frame {
    max-width: 100%;
  }
  
  .frames-col .frame img {
    max-width: 100%;
  }
  
  .frames-col .frame figcaption {
    font-size: 1rem;
  }
  
  .quote {
    width: 100%;
    max-width: 90%;
    margin: 1rem auto;
    font-size: 1.3rem;
    padding: 1.5rem;
    order: 1; /* Place quote between frames */
  }
  
  .quote::before {
    font-size: 3rem;
    top: -10px;
    left: 10px;
  }
  
  .quote::after {
    font-size: 3rem;
    bottom: -30px;
    right: 10px;
  }
}

/* ====================================
   GOAL SETTING WORKSHOP STYLES
   ==================================== */

/* Workshop Container */
.goal-workshop-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
}

.workshop-subtitle {
  font-size: 1.2rem;
  color: var(--accent-charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

/* Workshop Steps */
.workshop-container {
  position: relative;
  min-height: 500px;
}

.workshop-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.workshop-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Styling */
.goal-form, .smart-goals-form, .action-plan-form, .motivation-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--primary-white);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(248, 217, 0, 0.1);
}

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

.motivation-textarea {
  min-height: 120px;
}

/* SMART Goals Grid */
.smart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.smart-item {
  background: var(--primary-white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.smart-item h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Step Navigation */
.step-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

/* Milestones and Resources */
.milestone-section, .resources-section {
  margin-bottom: 2rem;
}

.milestone-section h4, .resources-section h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.milestone-item, .resource-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 1px solid var(--border-gray);
}

.milestone-input, .resource-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-size: 0.9rem;
}

.milestone-date {
  padding: 0.5rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-size: 0.9rem;
}

.resource-type {
  padding: 0.5rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-size: 0.9rem;
  min-width: 100px;
}

.btn-remove {
  background: #ff4757;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-remove:hover {
  background: #ff3742;
}

/* Goal Summary */
.goal-summary {
  max-width: 800px;
  margin: 0 auto;
}

.summary-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--accent-gold);
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(248, 217, 0, 0.15);
}

.summary-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-gray);
}

.summary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.summary-item strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.summary-item ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.summary-item li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.next-steps {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-green);
}

.next-steps h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  padding-left: 1.5rem;
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.next-steps li:last-child {
  border-bottom: none;
}

/* Goal Tracking Dashboard */
.goal-tracking-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
}

.tracking-dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.tracking-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
}

.tracking-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Goal Items */
.goal-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-2px);
}

.goal-item.completed {
  background: rgba(46, 204, 113, 0.1);
  border-color: var(--accent-green);
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.goal-header h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
}

.goal-status {
  background: var(--accent-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.goal-item.completed .goal-status {
  background: var(--accent-green);
}

.goal-progress {
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--accent-charcoal);
  font-weight: 600;
}

.goal-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-small {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-small:hover {
  background: var(--accent-charcoal);
}

/* Progress Stats */
.progress-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 1px solid var(--border-gray);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--accent-charcoal);
  font-weight: 600;
}

.no-goals {
  text-align: center;
  color: var(--accent-charcoal);
  font-style: italic;
  padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .goal-workshop-section {
    padding: 1rem;
    margin: 2rem auto;
  }
  
  .smart-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .milestone-item, .resource-item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  
  .tracking-dashboard {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .progress-stats {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .goal-actions {
    flex-direction: column;
  }
  
  .btn-small {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .workshop-container {
    min-height: 400px;
  }
  
  .smart-item {
    padding: 1rem;
  }
  
  .summary-card {
    padding: 1.5rem;
  }
  
  .tracking-card {
    padding: 1.5rem;
  }
}

/* ====================================
   PERFORMANCE TRACKER STYLES
   ==================================== */

/* Performance Tracker Container */
.performance-tracker-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
}

.tracker-subtitle {
  font-size: 1.2rem;
  color: var(--accent-charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

.tracker-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Tracker Cards */
.tracker-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracker-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.12);
}

.tracker-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Activity Form */
.activity-form {
  max-width: 100%;
}

.date-selector {
  margin-bottom: 1.5rem;
}

.date-selector label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.activity-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.activity-item label {
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.9rem;
}

.activity-input {
  padding: 0.75rem;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.activity-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(248, 217, 0, 0.1);
}

.notes-section {
  margin-bottom: 1.5rem;
}

.notes-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
}

/* Overview Tabs */
.overview-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border-gray);
  background: var(--primary-white);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--accent-charcoal);
}

.tab-btn:hover:not(.active) {
  border-color: var(--accent-gold);
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
}

.metric-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--accent-charcoal);
  font-weight: 600;
}

/* Progress Chart */
.progress-chart {
  margin-top: 2rem;
}

.progress-chart h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.chart-container {
  background: var(--light-gray);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
}

/* Goals Section */
.goals-section {
  margin-bottom: 2rem;
}

.goal-input-group {
  margin-bottom: 1rem;
}

.goal-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.active-goals h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.goal-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.goal-item:hover {
  transform: translateY(-2px);
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.goal-header h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
  font-size: 1rem;
}

.goal-deadline {
  background: var(--accent-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.goal-target {
  font-size: 0.9rem;
  color: var(--accent-charcoal);
  margin-bottom: 0.5rem;
}

/* Analytics Grid */
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.analytics-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.analytics-item:hover {
  transform: translateY(-2px);
}

.analytics-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.analytics-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.analytics-desc {
  font-size: 0.8rem;
  color: var(--accent-charcoal);
}

/* Insights Section */
.insights-section {
  margin-top: 2rem;
}

.insights-section h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.insight-item {
  background: var(--primary-white);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--accent-gold);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .performance-tracker-section {
    padding: 1rem;
    margin: 2rem auto;
  }
  
  .tracker-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .activity-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .analytics-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-tabs {
    justify-content: center;
  }
  
  .tracker-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .tracker-card {
    padding: 1rem;
  }
  
  .activity-grid {
    gap: 0.75rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .goal-workshop-section {
    padding: 1rem;
    margin: 2rem auto;
  }
  
  .smart-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .milestone-item, .resource-item {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  
  .tracking-dashboard {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .progress-stats {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .goal-actions {
    flex-direction: column;
  }
  
  .btn-small {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .workshop-container {
    min-height: 400px;
  }
  
  .smart-item {
    padding: 1rem;
  }
  
  .summary-card {
    padding: 1.5rem;
  }
  
  .tracking-card {
    padding: 1.5rem;
  }
}

/* ====================================
   LEARNING PATH STYLES
   ==================================== */

/* Learning Path Container */
.learning-path-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
}

.learning-subtitle {
  font-size: 1.2rem;
  color: var(--accent-charcoal);
  margin-bottom: 2rem;
  text-align: center;
}

.learning-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Assessment Card */
.assessment-card {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
  margin-bottom: 2rem;
}

.assessment-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.assessment-card p {
  color: var(--accent-charcoal);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.assessment-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Path Results */
.path-results {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 8px 25px rgba(248, 217, 0, 0.15);
  margin-bottom: 2rem;
}

.path-results h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.path-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.path-summary, .path-timeline {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
}

.path-summary h4, .path-timeline h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.summary-item, .timeline-item {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-gray);
}

.summary-item:last-child, .timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.summary-item strong, .timeline-item strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Learning Modules */
.learning-modules {
  margin-bottom: 2rem;
}

.learning-modules h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.module-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.module-item:hover {
  transform: translateY(-2px);
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.module-header h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
  font-size: 1rem;
}

.module-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.module-status.pending {
  background: #ffd700;
  color: var(--accent-charcoal);
}

.module-status.completed {
  background: var(--accent-green);
  color: white;
}

.module-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.module-duration, .module-hours {
  font-size: 0.9rem;
  color: var(--accent-charcoal);
  font-weight: 600;
}

.module-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--border-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.module-progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
  transition: width 0.5s ease;
}

/* Resources Section */
.resources-section {
  margin-bottom: 2rem;
}

.resources-section h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.resources-section ul {
  list-style: none;
  padding: 0;
}

.resources-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.resources-section li:last-child {
  border-bottom: none;
}

/* Milestones Section */
.milestones-section {
  margin-bottom: 2rem;
}

.milestones-section h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.milestones-section ul {
  list-style: none;
  padding: 0;
}

.milestones-section li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.milestones-section li:before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.milestones-section li:last-child {
  border-bottom: none;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Progress Tracking */
.progress-tracking {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
  margin-bottom: 2rem;
}

.progress-tracking h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.progress-dashboard {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.progress-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--accent-charcoal);
  font-weight: 600;
}

.module-progress h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Course Recommendations */
.course-recommendations {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.08);
}

.course-recommendations h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.course-card h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.course-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.course-price {
  background: var(--accent-gold);
  color: var(--accent-charcoal);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.course-rating {
  color: var(--accent-charcoal);
  font-size: 0.9rem;
  font-weight: 600;
}

.course-duration {
  color: var(--accent-charcoal);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .learning-path-section {
    padding: 1rem;
    margin: 2rem auto;
  }
  
  .path-overview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .progress-dashboard {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .progress-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .assessment-card,
  .path-results,
  .progress-tracking,
  .course-recommendations {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .progress-stats {
    grid-template-columns: 1fr;
  }
  
  .module-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .course-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .assessment-card,
  .path-results,
  .progress-tracking,
  .course-recommendations {
    padding: 1rem;
  }
}

/* Navigation Text - Make All Bold */
.nav-links a {
  font-weight: 700 !important;
  font-size: 1rem;
}

/* Enhanced Navigation with Dropdown */
.main-nav ul { 
    list-style: none; 
    display: flex; 
    gap: 1rem; 
    margin: 0; 
    padding: 0; 
}
.main-nav li { 
    position: relative; 
}
.main-nav a { 
    text-decoration: none; 
    color: #222; 
    padding: 0.5rem; 
    display: block; 
    transition: color 0.3s ease;
}
.main-nav a:hover { 
    color: var(--color-accent); 
}
.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0; 
    padding: 0.5rem 0;
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
}
.main-nav .dropdown-menu li a { 
    padding: 0.5rem 1rem; 
    font-size: 0.9rem;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}
.main-nav .dropdown-menu li:last-child a { 
    border-bottom: none; 
}
.main-nav .dropdown-menu li a:hover { 
    background: #f8f9fa; 
    color: var(--color-accent);
}
.main-nav li:hover .dropdown-menu { 
    display: block; 
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .main-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 1rem;
    }
    .main-nav .dropdown-menu li a {
        padding: 0.25rem 0;
        font-size: 0.85rem;
        color: #666;
    }
}

/* Professional Tools Section for About Page */
.professional-tools-section {
    padding: 3rem 0;
    margin: 2rem 0;
}

.professional-tools-section .section-title {
    font-size: 2.5rem;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.professional-tools-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.professional-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.professional-tool-card {
    background: #fff;
    border: 1.5px solid #f4cd70;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.professional-tool-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.tool-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tool-icon {
    height: 32px;
    margin-bottom: 8px;
    filter: grayscale(100%) brightness(0%) opacity(0.7);
    display: block;
    margin: 0 auto 12px;
}

.tool-title {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.tool-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: center;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.feature-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.tool-cta-button {
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.tool-cta-button:hover {
    background: #229954;
    transform: translateY(-1px);
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .professional-tools-section .section-title {
        font-size: 2rem;
    }
    
    .professional-tools-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .professional-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .professional-tool-card {
        padding: 1rem;
    }
    
    .tool-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tool-icon {
        height: 28px;
    }
    
    .tool-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .professional-tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .professional-tool-card {
        padding: 1rem;
    }
    
    .tool-icon {
        height: 24px;
    }
    
    .tool-title {
        font-size: 0.9rem;
    }
}

/* Enhanced Tools Responsive Design */
@media (max-width: 768px) {
  .tools-section {
    padding: 20px 15px;
  }
  
  .tools-title {
    font-size: 2rem;
  }
  
  .tools-subtitle {
    font-size: 1rem;
  }
  
  .tools-subtext {
    font-size: 0.9rem;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tool-card {
    padding: 15px;
  }
  
  .tool-card img {
    height: 36px;
  }
  
  .tool-title {
    font-size: 1rem;
  }
  
  .tool-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .tools-section {
    padding: 15px 10px;
  }
  
  .tools-title {
    font-size: 1.8rem;
  }
  
  .tool-card {
    padding: 12px;
  }
  
  .tool-card img {
    height: 32px;
  }
}

.tool-card:hover img {
  filter: grayscale(0%) brightness(100%) opacity(1);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ─── GLOBAL SOFT-CREAM THEME ─── */
:root {
  --bg-cream: #f7f1e1;      /* gentle cream tone */
  --text-dark: #2e2e2e;     /* deep charcoal for text */
  --border-light: #e2d8c3;  /* subtle divider */
  --link-color: #5a4e3c;    /* muted brownish */
  --link-hover: #836f58;    /* warmer brown */
}

/* 1) Base background & text */
html, body {
  background-color: var(--bg-cream) !important;
  color: var(--text-dark) !important;
  margin: 0;
  padding: 0;
}

/* 2) Force all containers/sections/nav/footer to the same cream */
header,
nav,
main,
section,
.container,
.wrapper,
footer {
  background-color: var(--bg-cream) !important;
  color: var(--text-dark) !important;
}

/* 3) Light borders to define areas */
section, 
nav, 
footer,
.card, 
.tool-card {
  border-color: var(--border-light) !important;
}

/* 4) Links */
a {
  color: var(--link-color) !important;
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--link-hover) !important;
  text-decoration: underline;
}

/* 5) Buttons/CTAs (if you use bg-white anywhere) */
button,
.tool-cta {
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
  border: 1px solid var(--border-light) !important;
}

/* 6) Images & icons backgrounds */
img, 
.tool-icon {
  background-color: transparent !important;
}

/* 7) Prevent accidental theme overrides */
* {
  background-image: none !important;
}

/* 8) Optional: subtle box shadows to lift cards off the cream */
.card,
.tool-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

/* ─────────── Site Footer (Mossy Olive) ─────────── */
.cta-section {
  background-color: #5A7048 !important; /* Mossy Olive */
  color: #F1F1ED !important;            /* Soft off-white text */
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-link {
  color: #DCE5D0 !important;           /* pale green link */
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff !important;
}

.footer-extra {
  margin-bottom: 1rem;
}

.footer-extra a {
  color: #DCE5D0 !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-extra a:hover {
  color: #ffffff !important;
}

.footer-tools-section {
  margin-bottom: 1rem;
}

.footer-tools-section h4 {
  color: #F1F1ED !important;
  margin-bottom: 0.5rem;
}

.footer-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #DCE5D0 !important;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.footer-tool-link:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.brand-logos {
  margin-bottom: 1rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  margin: 0 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  filter: brightness(0) invert(1);
}

.brand-logo:hover {
  opacity: 1;
}

.footer-copyright {
  color: #F1F1ED !important;
  font-size: 0.9rem;
  margin: 0;
}

/* Mobile tweak */
@media (max-width: 600px) {
  .footer-links {
    gap: 0.75rem;
  }
  
  .footer-tools-grid {
    gap: 0.5rem;
  }
  
  .brand-logo {
    height: 30px;
    margin: 0 0.25rem;
  }
}

/* ─── Interactive Success Tools Styles ─── */
.interactive-tools-section {
  background-color: #f7f1e1; /* your soft cream */
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.section-icon {
  font-size: 2.2rem;
}

.section-subtext {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-card {
  background: #ffffff;
  border: 2px solid #f4cd70;  /* golden accent */
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card img {
  height: 48px;
  margin-bottom: 12px;
  filter: grayscale(100%) brightness(0%) opacity(0.8);
}

.tool-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2e2e2e;
}

.tool-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.4;
}

.tool-cta {
  display: inline-block;
  background-color: #18a558;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.tool-cta:hover {
  background-color: #147a41;
}

/* Mobile tweak: center grid on small screens */
@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Debug CSS for Tool Cards ─── */
.tools-grid,
.tool-card {
  overflow: visible !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
}

.tool-card, .tools-grid, .interactive-tools-section, .container {
  min-height: 1px !important;
  height: auto !important;
  overflow: visible !important;
}

/* Override any parent overflow rules that might affect tool cards */
.interactive-tools-section,
.interactive-tools-section *,
.tools-grid,
.tools-grid *,
.tool-card,
.tool-card * {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

/* Force all tool-related elements to be visible */
.interactive-tools-section,
.tools-grid,
.tool-card,
.tool-card img,
.tool-card h3,
.tool-card p,
.tool-card a,
.tool-cta {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  z-index: auto !important;
}

/* Force box-sizing and body height */
* { 
  box-sizing: border-box !important; 
}

body, html {
  height: 100% !important;
  background: #f7f1e1 !important;
}

/* ─── Bento Tools Section with Golden Glow ─── */
.bento-tools-section {
  width: 100%;
  padding: 40px 0;
  background: #f9f7f1; /* Soft cream background */
  display: flex;
  justify-content: center;
}

.bento-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.bento-tool-card {
  background: #fff;
  border-radius: 30px;
  border: 3px solid #FFD700; /* Golden border */
  box-shadow: 0 6px 32px 0 rgba(250, 220, 80, 0.12), 0 1.5px 6px 0 #fff;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.bento-tool-card:hover {
  box-shadow: 0 0 0 5px #ffe699, 0 6px 32px 0 rgba(250, 220, 80, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.bento-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  background: #fffbe8;
  border-radius: 50%;
  padding: 14px;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px #ffe69944;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-tool-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.bento-tool-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.5;
}

.bento-btn {
  margin-top: auto;
  background: #d4b800;
  color: #fff;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 10px #ffe69955;
  transition: background 0.2s;
}

.bento-btn:hover {
  background: #b89c00;
}

@media (max-width: 1024px) {
  .bento-tools-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px;
  }
}

@media (max-width: 700px) {
  .bento-tools-grid { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  .bento-tool-card { 
    margin: 0 auto; 
    max-width: 320px;
  }
}

/* ─── FORCE BENTO LAYOUT - OVERRIDE ALL CONFLICTING STYLES ─── */
.bento-tools-section {
  width: 100% !important;
  padding: 40px 0 !important;
  background: #f9f7f1 !important;
  display: flex !important;
  justify-content: center !important;
  margin: 0 !important;
}

.bento-tools-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: 1200px !important;
  padding: 0 20px !important;
}

.bento-tool-card {
  background: #fff !important;
  border-radius: 30px !important;
  border: 3px solid #FFD700 !important;
  box-shadow: 0 6px 32px 0 rgba(250, 220, 80, 0.12), 0 1.5px 6px 0 #fff !important;
  padding: 32px 24px 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  position: relative !important;
  margin: 0 !important;
  text-align: center !important;
}

.bento-tool-card:hover {
  box-shadow: 0 0 0 5px #ffe699, 0 6px 32px 0 rgba(250, 220, 80, 0.18) !important;
  transform: translateY(-4px) scale(1.03) !important;
}

.bento-icon {
  font-size: 2.2rem !important;
  margin-bottom: 10px !important;
  background: #fffbe8 !important;
  border-radius: 50% !important;
  padding: 14px !important;
  border: 2px solid #FFD700 !important;
  box-shadow: 0 0 10px #ffe69944 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bento-tool-card h3 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  color: #333 !important;
  text-align: center !important;
}

.bento-tool-card p {
  font-size: 1rem !important;
  color: #444 !important;
  margin-bottom: 18px !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

.bento-btn {
  margin-top: auto !important;
  background: #d4b800 !important;
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 20px !important;
  font-weight: bold !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  box-shadow: 0 2px 10px #ffe69955 !important;
  transition: background 0.2s !important;
  display: inline-block !important;
}

.bento-btn:hover {
  background: #b89c00 !important;
}

@media (max-width: 1024px) {
  .bento-tools-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 24px !important;
  }
}

@media (max-width: 700px) {
  .bento-tools-grid { 
    grid-template-columns: 1fr !important; 
    gap: 20px !important;
  }
  .bento-tool-card { 
    margin: 0 auto !important; 
    max-width: 320px !important;
  }
}

/* ─── BENTO TOOLS HEADER ─── */
.bento-tools-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.bento-tools-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.bento-tools-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

/* ─── FORCE BENTO LAYOUT - OVERRIDE ALL CONFLICTING STYLES ─── */

/* ─── ADDITIONAL DEBUGGING FOR BENTO LAYOUT ─── */
#interactive-tools {
  display: block !important;
  width: 100% !important;
}

.bento-tools-section {
  width: 100% !important;
  padding: 40px 0 !important;
  background: #f9f7f1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.bento-tools-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: 1200px !important;
  padding: 0 20px !important;
  margin: 0 auto !important;
}

.bento-tool-card {
  background: #fff !important;
  border-radius: 30px !important;
  border: 3px solid #FFD700 !important;
  box-shadow: 0 6px 32px 0 rgba(250, 220, 80, 0.12), 0 1.5px 6px 0 #fff !important;
  padding: 32px 24px 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  position: relative !important;
  margin: 0 !important;
  text-align: center !important;
  min-height: 200px !important;
}

.bento-tool-card:hover {
  box-shadow: 0 0 0 5px #ffe699, 0 6px 32px 0 rgba(250, 220, 80, 0.18) !important;
  transform: translateY(-4px) scale(1.03) !important;
}

.bento-icon {
  font-size: 2.2rem !important;
  margin-bottom: 10px !important;
  background: #fffbe8 !important;
  border-radius: 50% !important;
  padding: 14px !important;
  border: 2px solid #FFD700 !important;
  box-shadow: 0 0 10px #ffe69944 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
}

.bento-tool-card h3 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  color: #333 !important;
  text-align: center !important;
}

.bento-tool-card p {
  font-size: 1rem !important;
  color: #444 !important;
  margin-bottom: 18px !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

.bento-btn {
  margin-top: auto !important;
  background: #d4b800 !important;
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 20px !important;
  font-weight: bold !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  box-shadow: 0 2px 10px #ffe69955 !important;
  transition: background 0.2s !important;
  display: inline-block !important;
}

.bento-btn:hover {
  background: #b89c00 !important;
}

@media (max-width: 1024px) {
  .bento-tools-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 24px !important;
  }
}

@media (max-width: 700px) {
  .bento-tools-grid { 
    grid-template-columns: 1fr !important; 
    gap: 20px !important;
  }
  .bento-tool-card { 
    margin: 0 auto !important; 
    max-width: 320px !important;
  }
}

/* ─── Video Testimonial Section ─── */
.video-testimonial-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9f7f1 0%, #fff 100%);
}

.video-testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #000;
}

.testimonial-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.video-testimonial-content {
  padding: 20px;
}

.video-testimonial-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  border-left: 4px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2d8c3;
  transition: transform 0.2s;
}

.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-icon {
  font-size: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-buttons .btn-gold {
  background: #FFD700;
  color: #333;
  border: 2px solid #FFD700;
}

.cta-buttons .btn-gold:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: #333;
  border: 2px solid #FFD700;
}

.cta-buttons .btn-outline:hover {
  background: #FFD700;
  color: #333;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .video-testimonial-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .video-testimonial-content h3 {
    font-size: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    text-align: center;
  }
}

/* ====== NAV: Glowing hammer beside Tools + spacing fix ====== */
.site-nav .nav-links > li > a[href*="tools"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-nav .nav-links > li > a[href*="tools"]::after {
  content: "🛠️";
  line-height: 1;
  color: #d4b800;
  text-shadow: 0 0 6px #ffe699, 0 0 12px #f4cd70;
}

/* Also support legacy nav structure used on about.html */
.main-nav .nav-links > li > a[href*="tools"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.main-nav .nav-links > li > a[href*="tools"]::after {
  content: "🛠️";
  line-height: 1;
  color: #d4b800;
  text-shadow: 0 0 6px #ffe699, 0 0 12px #f4cd70;
}

/* ====== BADGE 500+ (green, visible) ====== */
.badge-500, .trust-badge-compact {
  background: #18a558 !important;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(24,165,88,0.25);
}
.badge-500 .badge-number, .trust-badge-compact .badge-number {
  font-weight: 800;
}
.badge-500 .badge-text, .trust-badge-compact .badge-text {
  font-weight: 600;
}
/* keep badge above content, tucked under sticky nav */
.badge-500, .trust-badge-compact {
  position: fixed;
  right: 12px;
  top: calc(var(--nav-h, 64px) + 8px);
  z-index: 1100;
}

/* ====== HERO: make LEGACY green ====== */
.hero .highlight {
  color: #18a558 !important;
}

/* ====== FOOTER (Mossy Olive full footer) overrides ====== */
.site-footer {
  background: var(--olive, #5A7048) !important;
  color: #F1F1ED !important;
}
.site-footer .footer-inner {
  position: relative;
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
  padding: 32px var(--gutter, 16px);
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}
.site-footer .footer-nav a {
  color: #DCE5D0 !important;
  text-decoration: none;
}
.site-footer .footer-nav a:hover { color: #ffffff !important; }

.site-footer .footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}
.site-footer .footer-social a {
  color: #F1F1ED !important;
  text-decoration: none;
  font-size: 1.1rem;
}
.site-footer .footer-social a:hover { opacity: .8; }

.footer-tools-section { margin-top: 18px; }
.footer-tools-section h4 { text-align: center; margin: 0 0 10px; }
.footer-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}
.footer-tool-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 12px;
  border-radius: 10px;
  color: #F1F1ED;
  text-decoration: none;
}
.footer-tool-link:hover { background: rgba(255,255,255,0.12); }

.footer-corner-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
}

.footer-copy { text-align: center; margin-top: 14px; opacity: .95; }

@media (max-width: 700px) {
  .footer-tools-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== BRAND LOGOS ROW ====== */
.brand-logos {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.brand-logo {
  height: 40px !important;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.1);
  padding: 8px;
  border-radius: 8px;
}
.brand-logo:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 700px) {
  .brand-logos { gap: 15px; }
  .brand-logo { height: 32px !important; }
}

/* ====== ABOUT PAGE HERO IMAGE FIX ====== */
.about-hero {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 2rem auto !important;
  background: transparent !important;
  min-height: 400px !important;
  overflow: visible !important;
}
.about-hero img {
  max-width: 100% !important;
  width: 100% !important;
  height: 400px !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 25px rgba(244, 205, 112, 0.15) !important;
  border: 3px solid var(--gold, #f4cd70) !important;
  display: block !important;
  object-fit: cover !important;
}

/* ====== FORCE HIDE ANY DUPLICATE FOOTER ELEMENTS ====== */
/* Hide any potential duplicate footer content that might be showing */
.footer-links:not(.site-footer .footer-links),
.footer-extra:not(.site-footer .footer-extra),
.footer-tools-section:not(.site-footer .footer-tools-section),
.footer-tools-grid:not(.site-footer .footer-tools-grid),
.footer-tool-link:not(.site-footer .footer-tool-link),
.brand-logos:not(.site-footer .brand-logos),
.footer-copyright:not(.site-footer .footer-copyright) {
  display: none !important;
  visibility: hidden !important;
}

/* Ensure only ONE footer per page */
footer:not(.site-footer) {
  display: none !important;
}

/* Hide any orphaned footer-like elements outside the main footer */
body > .footer-center,
body > .footer-social,
body > .footer-cta,
main .footer-center,
main .footer-social,
main .footer-cta {
  display: none !important;
}

/* ---- base / container (keeps everything centered like local) ---- */
:root{
  --olive:#5A7048; --gold:#f4cd70; --cream:#f7f1e1;
  --light:#F1F1ED; --text:#2b2b2b;
  --page:1200px; --gutter:16px;
}
body{background:var(--cream);color:var(--text)}
.container,.footer-inner{max-width:var(--page);margin-inline:auto;padding-inline:var(--gutter)}

/* ---- footer (mossy olive, serene, single) ---- */
.site-footer{background:var(--olive);color:var(--light);margin-top:40px;
  border-top-left-radius:18px;border-top-right-radius:18px}
.footer-inner{position:relative;padding:28px var(--gutter) 34px}

/* corner FD logo: RIGHT TOP */
.footer-corner-logo{position:absolute;top:14px;width:56px;height:56px;
  border-radius:12px;object-fit:cover;background:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.25)}
.footer-corner-logo.left{right:16px}

/* golden hairlines */
.footer-line{height:3px;background:var(--gold);border-radius:999px;opacity:.9}
.footer-line--bottom{margin-top:18px}

/* footer header section */
.footer-header{text-align:center;margin:20px auto 16px;padding-top:20px}
.footer-header h3{color:var(--light);font-size:1.4rem;margin:0 0 12px;font-weight:700}
.footer-header .btn{display:inline-block;background:var(--gold);color:#1b1b1b;font-weight:700;
  padding:12px 20px;border-radius:8px;text-decoration:none;box-shadow:0 4px 12px rgba(0,0,0,.15)}
.footer-header .btn:hover{filter:brightness(.9)}

/* center stack (matches your local look) */
.footer-center{text-align:center;max-width:720px;margin:16px auto 18px}
.footer-tag{margin:8px 0 12px;font-weight:700;letter-spacing:.2px}
.footer-social{display:flex;gap:14px;justify-content:center;margin:8px 0 12px;font-size:1.15rem}
.footer-social a{color:var(--light);text-decoration:none}
.footer-social a:hover{opacity:.78}
.footer-cta{display:inline-block;background:#ffd74a;color:#1b1b1b;font-weight:800;
  padding:10px 18px;border-radius:10px;text-decoration:none;box-shadow:0 4px 14px rgba(0,0,0,.18)}
.footer-cta:hover{filter:brightness(.95)}

/* pills grid */
.footer-pills{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:10px;margin-top:14px}
.pill{display:inline-block;padding:8px 12px;border-radius:12px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);
  color:var(--light);text-decoration:none;font-weight:600}
.pill:hover{background:rgba(255,255,255,.16)}
.pill--light{background:#e9efe1;border-color:rgba(0,0,0,.06);color:#2a2a2a}

.footer-copy{text-align:center;margin:18px 0 0;opacity:.9;font-size:.95rem}

/* badge in footer (TOP LEFT, smaller) */
.footer-badge{
  position:absolute; left:16px; top:16px;
  background:#1db954; color:#fff; font-weight:700;
  padding:6px 8px; border-radius:10px; display:flex; align-items:center; gap:4px;
  box-shadow:0 4px 12px rgba(0,0,0,.15),inset 0 0 0 1px rgba(255,255,255,.2);
  font-size:0.85rem;
}
.footer-badge span{font-weight:500;opacity:.95}

/* kill list bullets/stray builder styles that scramble nav/footer */
ul,ol{list-style:none;margin:0;padding:0}

/* TEMP: show we're loading THIS file (remove after confirm) */
html::before{content:"global.css v=240813d FINAL";position:fixed;right:8px;bottom:6px;padding:3px 6px;background:#0008;color:#fff;font:12px/1 monospace;border-radius:4px;z-index:99999;pointer-events:none}


/* ====== FD Footer (Mossy Olive) ====== */
:root{
  --olive:#5A7048;
  --cream:#f7f1e1;
  --gold:#f4cd70;
  --textLight:#F1F1ED;
  --pillLight:#e9efe1;
  --pillText:#2a2a2a;
}

.fd-footer{
  background: var(--olive);
  color: var(--textLight);
  margin-top: 40px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.fd-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 16px 34px;
  position: relative;
}
.fd-footer__logo{
  position: absolute;
  top: 14px;
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.fd-footer__logo.logo-right{ right: 16px; }
.fd-footer__logo.logo-left{ left: 16px; }
.fd-footer__rule{
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  opacity: .9;
}
.fd-footer__rule--bottom{ margin-top: 18px; }
.fd-footer__center{
  max-width: 720px;
  margin: 16px auto 18px;
  text-align: center;
}
.fd-footer__tag{
  margin: 8px 0 12px;
  font-weight: 600;
  letter-spacing: .2px;
}
.fd-footer__social{
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 6px 0 12px;
  font-size: 1.15rem;
}
.fd-footer__social a{
  color: var(--textLight);
  text-decoration: none;
  transition: opacity .2s ease;
}
.fd-footer__social a:hover{ opacity:.75; }
.fd-footer__cta{
  display: inline-block;
  background: #ffd74a;
  color: #1b1b1b;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease;
}
.fd-footer__cta:hover{ transform: translateY(-1px); filter: brightness(0.95); }
.fd-footer__pills{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.pill{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--textLight);
  text-decoration: none;
  font-weight: 600;
  backdrop-filter: blur(2px);
}
.pill:hover{ background: rgba(255,255,255,.16); }
.pill--light{
  background: var(--pillLight);
  border-color: rgba(0,0,0,.06);
  color: var(--pillText);
}
.fd-footer__copy{
  text-align: center;
  margin: 18px 0 0;
  opacity: .9;
  font-size: .95rem;
}
@media (max-width: 780px){
  .fd-footer__logo{ width: 48px; height: 48px; }
  .fd-footer__center{ margin-top: 22px; }
}

