/* ========== FREEKS CUSTOM FRAMEWORK - FK- CLASSES ========== */

/* Root Colors */
:root {
    --fk-primary-gold: #bd790a;
    --fk-primary-dark: #28b6ca;
    --fk-secondary-dark: #228bd0;
    --fk-text-light: #ffffff;
    --fk-text-dark: #333333;
    --fk-accent-gold: #d4af37;
    --fk-border-color: rgba(201, 169, 98, 0.3);
    --fk-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --fk-transition: all 0.3s ease;
    
    /* Backward compatibility */
    --navy: #28b6ca;
    --navy-deep: #228bd0;
    --gold: #d4af37;
    --white: #ffffff;
    --text-navy: #333333;
    --text-muted: #666666;
    --bg-light: #f5f5f5;
    --charcoal: #444444;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-navy);
    background: white;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== CONTAINERS ========== */
.fk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fk-container-md {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.fk-container-sm {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========== TYPOGRAPHY ========== */
.fk-h1 {
    margin-top: 1rem;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.25;
    font-size: clamp(28px, 5vw, 45px);
}

.fk-h2 {
    color: var(--text-navy);
    font-weight: bold;
    font-size: 1.875rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .fk-h2 {
        font-size: 2.25rem;
    }
}

.fk-h3 {
    margin-top: 0.75rem;
    color: var(--text-navy);
    font-weight: bold;
    font-size: 1.125rem;
}

.fk-p-large {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.625;
    letter-spacing: 1px;
}

.fk-font-bold {
    font-weight: bold;
}

.fk-text-white {
    color: white;
    letter-spacing: 1px;
}

.fk-text-gold {
    color: var(--gold);
}

.fk-text-navy {
    color: var(--text-navy);
}

.fk-text-muted {
    color: var(--text-muted);
    letter-spacing: 1px;
    text-align: center;
}

.fk-text-sm {
    font-size: 0.875rem;
}

.fk-text-xs {
    font-size: 0.75rem;
}

.fk-text-base {
    font-size: 1rem;
}

.fk-text-center {
    text-align: center;
}

.fk-text-left {
    text-align: left;
}

/* ========== BACKGROUNDS ========== */
.fk-bg-white {
    background: white;
}

.fk-bg-navy {
    background: var(--navy);
}

.fk-bg-light {
    background: var(--bg-light);
}

.fk-bg-charcoal {
    background: var(--charcoal);
}

/* ========== SECTIONS ========== */
.fk-section {
    padding: 3.5rem 1rem;
}

@media (min-width: 768px) {
    .fk-section {
        padding: 5rem 1rem;
    }
}

.fk-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.fk-py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ========== BUTTONS ========== */
.fk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.15s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 1rem;
}

.fk-btn-primary {
    background: var(--gold);
    color: var(--text-navy);
}

.fk-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.fk-btn-secondary {
    color: white;
}

.fk-btn-secondary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ========== BADGES ========== */
.fk-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    white-space: nowrap;
}

.fk-badge-white {
    background: white;
    color: var(--text-navy);
}

.fk-badge-gold {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.fk-badge-amber {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 0.5rem 1rem;
}

/* ========== GRID ========== */
.fk-grid {
    display: grid;
    gap: 1.5rem;
}

.fk-grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fk-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fk-grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fk-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fk-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fk-grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fk-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fk-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fk-grid-5 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .fk-grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========== FLEX ========== */
.fk-flex {
    display: flex;
}

.fk-flex-col {
    flex-direction: column;
}

.fk-flex-center {
    align-items: center;
    justify-content: center;
}

.fk-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fk-gap-2 {
    gap: 0.5rem;
}

.fk-gap-3 {
    gap: 0.75rem;
}

.fk-gap-4 {
    gap: 1rem;
}

.fk-gap-5 {
    gap: 1.25rem;
}

.fk-gap-6 {
    gap: 1.5rem;
}

/* ========== SPACING ========== */
.fk-mt-1 { margin-top: 0.25rem; }
.fk-mt-2 { margin-top: 0.5rem; }
.fk-mt-3 { margin-top: 0.75rem; }
.fk-mt-4 { margin-top: 1rem; }
.fk-mt-5 { margin-top: 1.25rem; }
.fk-mt-6 { margin-top: 1.5rem; }
.fk-mt-8 { margin-top: 2rem; }
.fk-mt-10 { margin-top: 2.5rem; }

.fk-mb-2 { margin-bottom: 0.5rem; }
.fk-mb-4 { margin-bottom: 1rem; }
.fk-mb-6 { margin-bottom: 1.5rem; }
.fk-mb-10 {margin-bottom: 2.5rem;}

.fk-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.fk-py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* ========== BORDER & ROUNDED ========== */
.fk-rounded {
    border-radius: 0.75rem;
}

.fk-rounded-lg {
    border-radius: 1.25rem;
}

.fk-rounded-full {
    border-radius: 9999px;
}

/* ========== POSITIONING ========== */
.fk-relative {
    position: relative;
}

.fk-absolute {
    position: absolute;
}

.fk-bottom-4 {
    bottom: 1rem;
}

.fk-left-4 {
    left: 1rem;
}

/* ========== SHADOW ========== */
.fk-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ========== UTILITY ========== */
.fk-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fk-space-y-4 > * + * {
    margin-top: 1rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fk-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========== HERO SECTION ========== */
.fk-hero-wrapper {
    background: linear-gradient(135deg, #1a3a52 0%, #0f2438 100%);
    padding: 5rem 1rem 3rem;
}

@media (min-width: 768px) {
    .fk-hero-wrapper {
        padding: 7rem 2rem 5rem;
    }
}

.fk-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .fk-hero-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
}

/* Mobile Image - Hidden on Desktop */
.fk-hero-image-mobile {
    display: flex;
    justify-content: center;
}

.fk-hero-image-mobile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
}

@media (min-width: 768px) {
    .fk-hero-image-mobile {
        display: none;
    }
}

/* Left Content Section */
.fk-hero-left {
    text-align: center;
}

@media (min-width: 768px) {
    .fk-hero-left {
        text-align: left;
    }
}

/* Right Image Section - Hidden on Mobile */
.fk-hero-right {
    display: none;
    position: relative;
}

.fk-hero-right img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: cover;
}

@media (min-width: 768px) {
    .fk-hero-right {
        display: block;
    }
}

/* Info Box Below Image */
.fk-hero-info-box {
    position: absolute;
    bottom: -1.5rem;
    left: -1rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fk-info-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--text-navy);
    font-weight: bold;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fk-info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.fk-info-title {
    font-weight: bold;
    font-size: 0.875rem;
    color: var(--text-navy);
    letter-spacing: 1px;
}

.fk-hero-badges {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ========== SERVICES SECTION ========== */
.fk-services-wrapper {
    background: white;
}

.fk-services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fk-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fk-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fk-service-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    border-top: 4px solid var(--gold);
    text-align: center;
    padding: 1.5rem;
    transition: box-shadow 0.15s ease;
}

.fk-service-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fk-service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.fk-service-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.fk-service-title {
    margin-top: 0.75rem;
    color: var(--text-navy);
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.fk-service-desc {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* ========== STATS SECTION ========== */
.fk-stats-wrapper {
    background: var(--navy);
}

.fk-stats-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fk-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fk-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fk-stat-item {
    text-align: center;
}

.fk-stat-number {
    color: #515151;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    display: inline;
    letter-spacing: 1px;
}

.fk-stat-suffix {
    color: #515151;
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.fk-stat-label {
    color: rgb(255 255 255);
    font-size: 0.875rem;
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* ========== WHY CHOOSE US SECTION ========== */
.fk-whychoose-wrapper {
    background: var(--bg-light);
}

.fk-whychoose-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fk-whychoose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .fk-whychoose-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fk-whychoose-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    border-top: 4px solid var(--gold);
    text-align: center;
    padding: 1.5rem;
    transition: box-shadow 0.15s ease;
}

.fk-whychoose-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fk-whychoose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.fk-whychoose-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 2;
}

.fk-whychoose-title {
    margin-top: 0.75rem;
    color: var(--text-navy);
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.fk-whychoose-desc {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* ========== PROCESS SECTION ========== */
.fk-process-wrapper {
    background: white;
}

.fk-process-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fk-process-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.fk-process-step {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    text-align: center;
}

.fk-process-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--text-navy);
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.fk-process-title {
    margin-top: 0.75rem;
    color: var(--text-navy);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.fk-process-desc {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
}

/* ========== REVIEWS SECTION ========== */
.fk-reviews-wrapper {
    background: var(--bg-light);
}

.fk-reviews-carousel {
    padding: 0 2rem;
}

.fk-review-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    transition: box-shadow 0.15s ease;
}

.fk-review-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fk-review-stars {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.fk-review-text {
    font-size: 0.875rem;
    color: var(--text-navy);
    margin: 0.5rem 0;
    line-height: 1.5;
    letter-spacing: 1px;
}

.fk-review-author {
    margin-top: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-navy);
    letter-spacing: 1px;
}

/* ========== PRIVACY SECTION ========== */
.fk-privacy-wrapper {
    background: var(--navy);
}

.fk-privacy-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fk-privacy-icon-box svg {
    width: 40px;
    height: 40px;
    color: #292929;
    stroke-width: 2;
}

.fk-privacy-title {
    color: white;
    letter-spacing: 1px;
}

.fk-privacy-desc {
    color: white;
    font-size: 15px;
    line-height: 1.625;
    letter-spacing: 1px;
}

/* ========== CTA SECTION ========== */
.fk-cta-wrapper {
    background: white;
}

.fk-cta-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fk-cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fk-cta-step {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    text-align: center;
}

.fk-cta-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--text-navy);
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.fk-cta-title {
    margin-top: 0.75rem;
    color: var(--text-navy);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
}

.fk-cta-desc {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* ========== FAQ SECTION ========== */
.fk-faq-wrapper {
    background: var(--bg-light);
}

.fk-faq-list {
    margin-top: 2rem;
}

.fk-faq-item {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.fk-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-navy);
    text-align: left;
    width: 100%;
    padding: 0;
    letter-spacing: 1px;
}

.fk-faq-icon {
    margin-left: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--gold);
}

.fk-faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0px;
    margin-top: 0;
}

.fk-faq-answer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.fk-faq-item.fk-active .fk-faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

.fk-faq-item.fk-active .fk-faq-icon {
    transform: rotate(180deg);
}


/* ========== MEDIA QUERIES ========== */
@media (max-width: 768px) {
    .fk-btn {
        width: 100%;
        justify-content: center;
    }

    .fk-hero-badges {
        flex-direction: column;
    }

    .fk-hero-badges .fk-badge {
        width: 100%;
        text-align: center;
    }
}
