/* ============================================================
   STARTFORM FITNESS - COMPLETE STYLESHEET
   Exact PE Pilates style match
   ============================================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    font-family: "Open Sans", sans-serif !important;
    line-height: 1.6;
}

/* Hide default theme header/footer when using our custom ones */
.site-header, .site-footer, .elementor-location-header, .elementor-location-footer {
    display: none !important;
}

/* Show our custom wrapper */
#sf-site-wrapper {
    display: block !important;
    background: #ffffff;
    color: #1a1a1a;
    font-family: "Open Sans", sans-serif;
}

/* Container */
.sf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.sf-announcement-bar {
    background: #bef4db;
    color: #1a1a1a;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
}

/* ===== NAVBAR ===== */
.sf-navbar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
body.admin-bar .sf-navbar { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .sf-navbar { top: 46px; }
}
.sf-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sf-logo img { height: 50px; width: auto; display: block; }
.sf-nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}
.sf-nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.sf-nav-menu a:hover { color: #22c55e; }
.sf-nav-cta {
    background: #1a1a1a;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    white-space: nowrap;
}
.sf-nav-cta:hover { background: #333; }

/* ===== HERO ===== */
.sf-hero {
    background: #000000;
    color: #ffffff;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 80px 24px;
}
.sf-hero-inner {
    max-width: 700px;
    margin: 0 auto 0 10%;
}
.sf-hero-title {
    font-family: "Montserrat", "Open Sans", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}
.sf-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}
.sf-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.sf-btn-primary {
    background: #22c55e;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    display: inline-block;
}
.sf-btn-primary:hover { background: #16a34a; }
.sf-btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: border-color 0.2s;
    display: inline-block;
}
.sf-btn-outline:hover { border-color: #ffffff; }

/* ===== STATS BAR ===== */
.sf-stats-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 40px 0;
}
.sf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.sf-stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}
.sf-stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION HEADER ===== */
.sf-section-header {
    text-align: center;
    margin-bottom: 56px;
}
.sf-section-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #22c55e;
    margin-bottom: 12px;
}
.sf-section-title {
    font-family: "Montserrat", "Open Sans", sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}
.sf-section-desc {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.sf-products-section {
    background: #ffffff;
    padding: 80px 0;
}
.sf-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sf-product-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sf-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.sf-product-img-wrap {
    background: #f8f9fa;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sf-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sf-product-info { padding: 24px; }
.sf-product-name {
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.sf-product-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.sf-product-btn {
    display: inline-block;
    border: 2px dashed #22c55e;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.sf-product-btn:hover {
    background: #22c55e;
    color: #ffffff;
    border-style: solid;
}

/* ===== SPECS BAR ===== */
.sf-specs-bar {
    background: #1a1a1a;
    color: #ffffff;
    padding: 48px 0;
}
.sf-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.sf-spec-num {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 8px;
}
.sf-spec-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== WHY CHOOSE ===== */
.sf-why-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.sf-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sf-why-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s;
}
.sf-why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.sf-why-icon { font-size: 32px; margin-bottom: 16px; }
.sf-why-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.sf-why-desc { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== APPLICATIONS ===== */
.sf-applications-section {
    background: #ffffff;
    padding: 80px 0;
}
.sf-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sf-app-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.2s;
}
.sf-app-card:hover { transform: translateY(-4px); }
.sf-app-icon { font-size: 36px; margin-bottom: 16px; }
.sf-app-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.sf-app-desc { font-size: 13px; color: #666; margin-bottom: 20px; line-height: 1.6; }
.sf-app-link {
    color: #22c55e;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
}

/* ===== TESTIMONIALS ===== */
.sf-testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.sf-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sf-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid #e9ecef;
}
.sf-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.sf-testimonial-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.sf-testimonial-author { display: flex; align-items: center; gap: 14px; }
.sf-author-avatar {
    width: 44px; height: 44px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
    flex-shrink: 0;
}
.sf-author-name { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.sf-author-role { font-size: 12px; color: #888; }

/* ===== CERTIFICATIONS ===== */
.sf-certs-section {
    background: #ffffff;
    padding: 80px 0;
}
.sf-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.sf-cert-item {
    padding: 32px 20px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: box-shadow 0.2s;
}
.sf-cert-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.sf-cert-badge {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}
.sf-cert-name { font-size: 13px; color: #666; font-weight: 600; }

/* ===== FAQ ===== */
.sf-faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}
.sf-faq-list { max-width: 800px; margin: 0 auto; }
.sf-faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.sf-faq-q {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sf-faq-q::-webkit-details-marker { display: none; }
.sf-faq-q::after { content: "+"; font-size: 20px; color: #22c55e; font-weight: 300; }
details[open] .sf-faq-q::after { content: "−"; }
.sf-faq-a {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ===== CTA ===== */
.sf-cta-section {
    background: #bef4db;
    padding: 80px 0;
    text-align: center;
}
.sf-cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.sf-cta-desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 36px;
}
.sf-btn-dark {
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: background 0.2s;
}
.sf-btn-dark:hover { background: #333; }

/* ===== FOOTER ===== */
.sf-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 64px 0 0;
}
.sf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sf-footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}
.sf-footer-links { list-style: none; }
.sf-footer-links li { margin-bottom: 10px; }
.sf-footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.sf-footer-links a:hover { color: #22c55e; }
.sf-social-links { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.sf-social-link {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.sf-social-link:hover { color: #22c55e; }
.sf-footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.sf-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.2s;
    text-decoration: none;
}
.sf-whatsapp-btn:hover { transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sf-products-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-footer-grid { grid-template-columns: 1fr 1fr; }
    .sf-app-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sf-nav-menu { display: none; }
    .sf-hero-inner { margin: 0; }
    .sf-hero { padding: 60px 24px; }
    .sf-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-products-grid { grid-template-columns: 1fr; }
    .sf-why-grid { grid-template-columns: 1fr; }
    .sf-app-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-testimonials-grid { grid-template-columns: 1fr; }
    .sf-certs-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-specs-grid { grid-template-columns: repeat(2, 1fr); }
    .sf-footer-grid { grid-template-columns: 1fr; }
}
