@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@500;700;900&display=swap');

:root {
    /* Professional & Trusted Color Palette */
    --primary-color: #2563EB; /* Royal Professional Blue */
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    
    /* Sleek Professional Dark Theme */
    --bg-base: #030712; /* Deepest Slate */
    --bg-surface: #111827; /* Dark Gray */
    --bg-surface-light: #1F2937; /* Lighter Gray */
    
    /* Text Colors */
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-accent: #E5E7EB;
    
    /* Effects */
    --glow-primary: 0 8px 30px rgba(37, 99, 235, 0.4);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.display-3, .display-4 {
    font-weight: 900;
    letter-spacing: -1px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Gradient Text Effect */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Headings */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 10px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    width: 80%;
}

/* Modern Buttons */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 100px; /* Pill shape */
    transition: var(--trans-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: #FFF;
    box-shadow: var(--glow-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: var(--trans-smooth);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 42, 77, 0.6);
    color: #FFF;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-main);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--glow-primary);
}

/* Glassmorphism Navbar */
.navbar {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    transition: var(--trans-smooth);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-accent) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--trans-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--trans-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 60%;
}

/* Premium Cards */
.gym-card {
    background: var(--bg-surface);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--trans-smooth);
    overflow: hidden;
    z-index: 1;
}

.gym-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    z-index: -1;
    border-radius: 24px;
}

.gym-card:hover {
    transform: translateY(-10px);
    background: var(--bg-surface-light);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--shadow-soft), 0 0 40px rgba(37, 99, 235, 0.1);
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 30px;
    background: linear-gradient(160deg, var(--bg-surface), var(--bg-base));
}

.pricing-card.popular {
    background: linear-gradient(160deg, var(--bg-surface-light), var(--bg-base));
    border: 1px solid rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
    box-shadow: var(--glow-primary);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin: 2rem 0;
}

.price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-accent);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    padding: 8px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.8rem;
}

/* Input Fields */
.form-control, .form-select {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 1rem;
    transition: var(--trans-fast);
}

.form-control:focus, .form-select:focus {
    background-color: var(--bg-surface-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    color: var(--text-main);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Floating Actions */
.floating-whatsapp, .floating-call {
    position: fixed;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem;
    color: #FFF;
    z-index: 1000;
    transition: var(--trans-smooth);
    text-decoration: none;
}

.floating-whatsapp {
    bottom: 30px; right: 30px;
    background: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.floating-call {
    bottom: 110px; right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: var(--glow-primary);
}

.floating-whatsapp:hover, .floating-call:hover {
    transform: translateY(-8px) scale(1.05);
    color: #FFF;
}

/* Premium Sub-page Header */
.page-header-premium {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--bg-base);
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-header-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(3, 7, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.page-header-premium .breadcrumb-custom {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.page-header-premium .breadcrumb-custom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header-premium .breadcrumb-custom a:hover {
    color: var(--primary-color);
}

.page-header-premium .breadcrumb-custom span {
    color: var(--primary-color);
    margin: 0 10px;
}

/* Hero Section Adjustments */
.hero-section {
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-accent);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-surface-light);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
