/* ===== CSS VARIABLES (5 PRIMARY COLORS) ===== */
:root {
    /* Primary Color Palette */
    --primary-orange: #FF6B35;
    --primary-teal: #2E8B8B;
    --primary-charcoal: #2C3E3F;
    --primary-forest: #27AE60;
    --primary-slate: #7F8C8D;
    
    /* Light Variations */
    --light-orange: #FF8A65;
    --light-teal: #4DD0E1;
    --light-charcoal: #5D6D7E;
    --light-forest: #58D68D;
    --light-slate: #AEB6BF;
    
    /* Dark Variations */
    --dark-orange: #E65100;
    --dark-teal: #004D4D;
    --dark-charcoal: #1B2631;
    --dark-forest: #1E8449;
    --dark-slate: #566573;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
    --gradient-secondary: linear-gradient(135deg, var(--primary-forest), var(--primary-charcoal));
    --gradient-accent: linear-gradient(45deg, var(--primary-slate), var(--primary-forest));
    
    /* Typography */
    --font-primary: 'Arial', sans-serif;
    --font-secondary: 'Helvetica', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: #ffffff;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HEADER STYLES ===== */
.navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.3rem !important;
    font-weight: bold;
    color: white !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-orange) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FIN_images/fat_hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--light-orange);
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

section h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

section p {
    font-size: 0.95rem;
    color: var(--primary-slate);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===== CARDS AND COMPONENTS ===== */
.feature-card, .service-card, .price-card, .team-card, .blog-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .team-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-orange);
}

.feature-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-card .price {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
}

.price-card.featured {
    border: 3px solid var(--primary-orange);
    transform: scale(1.05);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-forest);
    margin-top: 1rem;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* ===== SWIPER STYLES ===== */
.reviews-swiper {
    padding: 20px 0 50px;
}

.review-card {
    background: white;
    color: var(--primary-charcoal);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 0 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(46, 139, 139, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-quote {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--primary-charcoal);
    font-style: italic;
    padding: 0 1rem;
}

.review-rating {
    margin-bottom: 1.5rem;
}

.review-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0 2px;
}

.review-author {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.review-position {
    font-size: 0.9rem;
    color: var(--primary-slate);
    margin: 0;
    font-weight: 500;
}

.swiper-pagination-bullet {
    background: var(--primary-orange);
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary-teal);
    opacity: 1;
    transform: scale(1.2);
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-orange);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-teal);
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    top: 20px;
}

.timeline-item:nth-child(odd)::before {
    right: -11px;
}

.timeline-item:nth-child(even)::before {
    left: -11px;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* ===== ACCORDION STYLES ===== */
.accordion-button {
    background: var(--light-teal);
    color: var(--primary-charcoal);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-teal);
    color: white;
}

/* ===== CONTACT FORM ===== */
.contact-form .form-control {
    border: 2px solid var(--light-slate);
    border-radius: 10px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* ===== GALLERY STYLES ===== */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== FOOTER STYLES ===== */
footer {
    background: var(--gradient-secondary) !important;
    color: white;
}

footer a {
    color: var(--light-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-section {
    background: var(--light-slate);
    padding: 1rem 0;
    text-align: center;
}

.breadcrumb-section img {
    max-width: 50px;
    opacity: 0.7;
}

/* ===== BACKGROUND VARIATIONS ===== */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* ===== ADDITIONAL COMPONENTS ===== */
.info-card, .career-card, .case-card, .technique-card, .movement-card, .strategy-card, .mental-card, .comp-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-orange);
}

.info-card:hover, .career-card:hover, .case-card:hover, .technique-card:hover, .movement-card:hover, .strategy-card:hover, .mental-card:hover, .comp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
  overflow-x: hidden;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: #ffffff;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== HEADER STYLES ===== */
.navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: bold;
    color: white !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-orange) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FIN_images/fat_hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--light-orange);
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

section h3 {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

section p {
    font-size: 1rem;
    color: var(--primary-slate);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===== CARDS AND COMPONENTS ===== */
.feature-card, .service-card, .price-card, .team-card, .blog-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .team-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-orange);
}

.feature-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.service-card .price {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    display: inline-block;
}

.price-card.featured {
    border: 3px solid var(--primary-orange);
    transform: scale(1.05);
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-forest);
    margin-top: 1rem;
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* ===== SWIPER STYLES ===== */
.reviews-swiper {
    padding: 20px 0 50px;
}

.review-card {
    background: var(--gradient-accent);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 10px;
}

.swiper-pagination-bullet {
    background: var(--primary-orange);
}

.swiper-pagination-bullet-active {
    background: var(--primary-teal);
}

/* ===== TIMELINE STYLES ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-orange);
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-teal);
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    top: 20px;
}

.timeline-item:nth-child(odd)::before {
    right: -11px;
}

.timeline-item:nth-child(even)::before {
    left: -11px;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* ===== ACCORDION STYLES ===== */
.accordion-button {
    background: var(--light-teal);
    color: var(--primary-charcoal);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-teal);
    color: white;
}

/* ===== CONTACT FORM ===== */
.contact-form .form-control {
    border: 2px solid var(--light-slate);
    border-radius: 10px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* ===== GALLERY STYLES ===== */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== FOOTER STYLES ===== */
footer {
    background: var(--gradient-secondary) !important;
    color: white;
}

footer a {
    color: var(--light-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-section {
    background: var(--light-slate);
    padding: 1rem 0;
    text-align: center;
}

.breadcrumb-section img {
    max-width: 50px;
    opacity: 0.7;
}

/* ===== BACKGROUND VARIATIONS ===== */
.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* ===== RESPONSIVE FONT SIZES ===== */
.navbar-brand {
    font-size: 1.3rem !important;
}

h1 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 11px !important;
    }
}

/* ===== ADDITIONAL COMPONENTS ===== */
.info-card, .career-card, .case-card, .technique-card, .movement-card, .strategy-card, .mental-card, .comp-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-orange);
}

.info-card:hover, .career-card:hover, .case-card:hover, .technique-card:hover, .movement-card:hover, .strategy-card:hover, .mental-card:hover, .comp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.info-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
} 