/* ===================================
   DYNAMIC COLOR THEME SYSTEM
   Themeforest Professional Grade
   =================================== */


/* Default Theme - Orange (Default) */

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
    --gradient-secondary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --border-radius: var(--radius-md);
    --transition: all 0.3s ease;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
}


/* Theme 1 - Fiery Red */

body[data-theme="red"] {
    --primary-color: #e63946;
    --accent-color: #d62828;
    --gradient-primary: linear-gradient(135deg, #e63946 0%, #a4161a 100%);
}


/* Theme 2 - Electric Blue */

body[data-theme="blue"] {
    --primary-color: #0077b6;
    --accent-color: #00b4d8;
    --gradient-primary: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
}


/* Theme 3 - Vibrant Purple */

body[data-theme="purple"] {
    --primary-color: #7209b7;
    --accent-color: #b5179e;
    --gradient-primary: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
}


/* Theme 4 - Fresh Green */

body[data-theme="green"] {
    --primary-color: #38b000;
    --accent-color: #70e000;
    --gradient-primary: linear-gradient(135deg, #38b000 0%, #008000 100%);
}


/* Theme 5 - Golden Yellow */

body[data-theme="yellow"] {
    --primary-color: #faa307;
    --accent-color: #f48c06;
    --gradient-primary: linear-gradient(135deg, #faa307 0%, #e85d04 100%);
}


/* Global Styles */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
}


/* Prevent any element from causing horizontal scrollbar */

* {
    box-sizing: border-box;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}


/* Fix hero section mobile layout */


/* Remove these lines that cause full-width issues */


/*.hero-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}*/

.hero-section .container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}


/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* ============================================
   GSAP Animation Utilities
   ============================================ */


/* Ripple Effect for Buttons */

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 50px;
    height: 50px;
    pointer-events: none;
}


/* Custom Cursor Styles */

.custom-cursor,
.cursor-follower {
    will-change: transform;
}


/* Smooth Transform Performance */

.class-card,
.blog-card,
.pricing-card,
.trainer-card,
.testimonial-card,
.btn,
.nav-link {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}


/* Animation Ready Elements */

.gsap-animate {
    opacity: 0;
    visibility: hidden;
}

.gsap-animate.animated {
    opacity: 1;
    visibility: visible;
}


/* Parallax Container */

.parallax-container {
    overflow: hidden;
}

.parallax-image {
    will-change: transform;
}


/* Smooth Transitions for Interactive Elements */

.interactive-element {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Hardware Acceleration */

.accelerated {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}


/* Prevent Layout Shifts During Animations */

.prevent-shift {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* GSAP ScrollTrigger Markers (Development Only) */

.gsap-marker-start,
.gsap-marker-end {
    display: none;
}


/* Disable animations on reduced motion preference */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================
   End GSAP Animation Utilities
   ============================================ */


/* Critical Elements - Always Visible */

#mainNav,
.navbar-brand,
.navbar-nav,
.nav-item,
.nav-link,
.hero-content,
.hero-title,
.hero-subtitle,
.hero-buttons,
.stat-item,
.carousel-dot,
.page-header,
.page-header__title,
.blog-single-badge,
.blog-single-meta,
.blog-single-meta span,
.blog-single-meta i,
.breadcrumb,
.breadcrumb-item,
footer,
.footer-widget,
.footer-widget__title,
.footer-widget__links,
.footer-widget__links li,
.footer-widget__links a,
.footer-widget__contact,
.footer-widget__contact li,
.footer-bottom,
.footer-social,
.social-links a {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* Hide page header overlay gradient */

.page-header-overlay {
    background: none !important;
    display: none !important;
}


/* Blog page specific - force parent container visible */

.page-header [data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


/* ===================================
   THEME SWITCHER UI
   Themeforest Professional Design
   =================================== */

.theme-switcher {
    position: fixed;
    right: 30px;
    bottom: 95px;
    z-index: 9999;
}

.theme-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.theme-toggle-btn:hover {
    transform: translateY(-3px) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

.theme-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 280px;
}

.theme-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.theme-panel-header {
    margin-bottom: 20px;
}

.theme-panel-header h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.theme-panel-header p {
    margin: 0;
    font-size: 12px;
    color: var(--text-light);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.theme-option {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.theme-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-color-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-color-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-gradient);
    transition: var(--transition);
}

.theme-option:hover .theme-color-box {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.theme-option input[type="radio"]:checked+.theme-color-box {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.theme-option input[type="radio"]:checked+.theme-color-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.theme-name {
    text-align: center;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Theme Color Previews */

.theme-orange {
    --theme-gradient: linear-gradient(135deg, #ff6b35 0%, #f39c12 100%);
}

.theme-red {
    --theme-gradient: linear-gradient(135deg, #e63946 0%, #a4161a 100%);
}

.theme-blue {
    --theme-gradient: linear-gradient(135deg, #0077b6 0%, #0096c7 100%);
}

.theme-purple {
    --theme-gradient: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
}

.theme-green {
    --theme-gradient: linear-gradient(135deg, #38b000 0%, #008000 100%);
}

.theme-yellow {
    --theme-gradient: linear-gradient(135deg, #faa307 0%, #e85d04 100%);
}


/* Responsive Design */

@media (max-width: 768px) {
    .theme-switcher {
        display: none;
    }
}


/* Preloader Styles */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: white;
}

.fitness-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dumbbell {
    display: flex;
    align-items: center;
    animation: lift 2s ease-in-out infinite;
}

.weight {
    width: 20px;
    height: 40px;
    background: white;
    border-radius: var(--radius-sm);
}

.bar {
    width: 60px;
    height: 8px;
    background: white;
    margin: 0 5px;
    border-radius: var(--radius-sm);
}

@keyframes lift {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.preloader-content p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}


/* Navigation Styles */

.navbar {
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--secondary-color) !important;
    padding: 10px 0;
    box-shadow: var(--shadow-light);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: white !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}


/* Active Navigation State */

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}


/* Enhanced Navigation Button */

.navbar-nav .nav-item:last-child .nav-link {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    padding: 12px 32px !important;
    margin-left: 15px;
    color: white !important;
    font-weight: 600;
    border: 2px solid transparent;
    transition: var(--transition);
}

.navbar-nav .nav-item:last-child .nav-link:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-item:last-child .nav-link::after {
    display: none;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 32px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}


/* Hero Section */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 2;
}

.hero-section .container {
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-white {
    color: #ffffff;
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .btn {
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 60px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 35px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    margin-left: 5px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}


/* Carousel Navigation Dots */

.hero-carousel-nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 14px;
    height: 40px;
    border-radius: 7px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: white;
    font-size: 24px;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Section Styles */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.text-primary {
    color: var(--primary-color) !important;
}


/* About Section */

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-badge h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 0;
}

.about-content {
    padding-left: 30px;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    margin-right: 15px;
    font-size: 1.2rem;
}


/* Class Cards */

.class-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.class-image {
    position: relative;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.class-card:hover .class-overlay {
    opacity: 0.9;
}

.class-content {
    padding: 25px;
}

.class-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.class-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.class-meta span {
    display: flex;
    align-items: center;
}

.class-meta i {
    margin-right: 5px;
}


/* Timetable Styles */

.timetable-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.timetable-table {
    margin: 0;
}

.timetable-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 15px 10px;
    border: none;
}

.timetable-table td {
    padding: 15px 10px;
    border: 1px solid #eee;
    vertical-align: middle;
}

.time-slot {
    background: var(--bg-light);
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}

.class-slot {
    text-align: center;
    border-radius: var(--radius-sm);
    margin: 5px;
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.class-slot:hover {
    transform: scale(1.05);
}

.class-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.class-info small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.class-slot.yoga {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
}

.class-slot.strength {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.class-slot.cardio {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.class-slot.pilates {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
}

.class-slot.crossfit {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.class-slot.meditation {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.timetable-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legend-item {
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}


/* Trainer Cards */

.trainer-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.trainer-image {
    position: relative;
    overflow: hidden;
}

.trainer-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.trainer-card:hover .trainer-overlay {
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.trainer-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.trainer-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.trainer-credentials {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* BMI Calculator */

.bmi-calculator-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 40px;
}

.calculator-form h4 {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.form-control {
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.bmi-result {
    text-align: center;
    padding: 20px;
}

.bmi-score {
    margin-bottom: 30px;
}

.bmi-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.bmi-category {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.bmi-chart {
    margin-bottom: 30px;
}

.chart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.chart-item.underweight {
    background: #3498db;
    color: white;
}

.chart-item.normal {
    background: #27ae60;
    color: white;
}

.chart-item.overweight {
    background: #f39c12;
    color: white;
}

.chart-item.obese {
    background: #e74c3c;
    color: white;
}

.chart-item.active {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.bmi-recommendation {
    text-align: left;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.bmi-info {
    padding: 20px;
}

.bmi-benefits ul {
    list-style: none;
    padding: 0;
}

.bmi-benefits li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.bmi-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}


/* Blog Cards */

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h4 {
    margin-bottom: 15px;
}

.blog-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-content h4 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}


/* Pricing Cards */

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i.fa-check {
    color: #27ae60;
    margin-right: 10px;
}

.pricing-features i.fa-times {
    color: #e74c3c;
    margin-right: 10px;
}


/* Contact Section */

.contact-form-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 40px;
}

.contact-info {
    padding: 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}


/* Footer */

.footer {
    background: var(--gradient-secondary) !important;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-links h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter h5 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


/* Back to Top Button */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: 100vh;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons .btn {
        display: inline-block;
        width: auto;
        margin: 0 10px 15px 10px;
    }
    /*.hero-section {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    left: 0;
    right: 0;
  }*/
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    /* Fix button layout on mobile */
    /*.hero-buttons {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }*/
    /* Fix stats layout */
    .hero-stats {
        margin-top: 30px;
    }
    .stat-item {
        margin-bottom: 0;
    }
    /* Fix image container */
    .hero-image {
        margin-top: 30px;
        text-align: center;
    }
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    /* Fix timetable on mobile */
    .timetable-table {
        font-size: 0.8rem;
    }
    .class-slot {
        padding: 5px;
        margin: 2px;
    }
    .class-info strong {
        font-size: 0.8rem;
    }
    .class-info small {
        font-size: 0.7rem;
    }
    .timetable-legend {
        gap: 10px;
    }
    .legend-item {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    .bmi-calculator-card {
        padding: 20px;
    }
    .bmi-value {
        font-size: 3rem;
    }
    .pricing-card {
        margin-bottom: 30px;
    }
    .contact-form-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    /* Ensure containers don't overflow */
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Fix timetable scroll */
    .timetable-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .timetable-table {
        min-width: 800px;
    }
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 16px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        position: relative;
        z-index: 9997;
    }
    .back-to-top:active {
        transform: scale(0.9);
    }
    /* Fix navbar on mobile */
    .navbar-brand {
        font-size: 24px;
    }
    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }
    /* Fix any remaining overflow issues */
    /* * {
        max-width: 100%;
    } */
    img {
        max-width: 100%;
        height: auto;
    }
    /* Prevent horizontal scroll on mobile */
    body,
    html {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .col,
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* Animation Classes */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* Custom Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}


/* Loading Animation */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* Success/Error Messages */

.alert-custom {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.alert-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}


/* Utility Classes */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

.border-radius-custom {
    border-radius: var(--border-radius);
}

.transition-custom {
    transition: var(--transition);
}


/* ===================================
   MODERN UI ENHANCEMENTS FOR THEMEFOREST
   =================================== */


/* Glass Effect (Glassmorphism) */

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}


/* Page Header (Universal) */

.page-header {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 180px 0 100px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600') center/cover;
    opacity: 0.15;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.8));
}

.page-header__title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.page-header__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}


/* Section Padding - Consistent Spacing */

.section-padding {
    padding: 100px 0;
}


/* About Page Styles */

.about-story__image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-story__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.about-story__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    padding: 24px;
    text-align: center;
    color: white;
}

.about-story__badge-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-story__badge-text {
    font-size: 14px;
    margin-bottom: 0;
}

.about-story__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-story__features {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.feature-item__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-item__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}


/* Mission Vision Cards */

.mission-vision-card {
    padding: 48px 32px;
    border-radius: var(--border-radius);
    height: 100%;
}

.mission-vision-card__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    font-size: 24px;
}

.mission-vision-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.mission-vision-card__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-light);
}

.mission-vision-card__list {
    list-style: none;
    padding: 0;
}

.mission-vision-card__list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.mission-vision-card__list li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 16px;
}


/* Modern Stats Counter Section - ThemeForest Premium */

.stats-counter {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b35" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.stats-counter__item {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 10px;
}

.stats-counter__item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.stats-counter__item:hover::before {
    opacity: 1;
}

.stats-counter__item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stats-counter__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
}

.stats-counter__item:hover .stats-counter__icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
}

.stats-counter__number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.stats-counter__number::after {
    content: '+';
    font-size: 3rem;
    color: var(--primary-color);
    margin-left: 8px;
    font-weight: 700;
}

.stats-counter__label {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}


/* Why Choose Cards */

.why-choose-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-choose-card__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
    font-size: 24px;
}

.why-choose-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.why-choose-card__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}


/* Service Cards */

.service-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card__image-wrapper {
    position: relative;
    overflow: hidden;
}

.service-card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card__image {
    transform: scale(1.05);
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-card__overlay {
    opacity: 0.9;
}

.service-card__link {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}

.service-card__link:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-card__content {
    padding: 32px 24px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    font-size: 20px;
}

.service-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-card__features li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 12px;
    width: 12px;
}


/* Process Cards */

.process-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.process-card__number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.process-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 24px;
    font-size: 24px;
}

.process-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-card__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}


/* Pricing Cards */

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.pricing-card.featured .pricing-card__badge {
    background: white;
    color: var(--primary-color);
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-card.featured .pricing-card__title {
    color: white;
}

.pricing-card__price {
    margin-bottom: 32px;
}

.pricing-card__currency,
.pricing-card__amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-card.featured .pricing-card__currency,
.pricing-card.featured .pricing-card__amount {
    color: white;
}

.pricing-card__period {
    font-size: 16px;
    color: var(--text-light);
}

.pricing-card.featured .pricing-card__period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.pricing-card__features li i {
    margin-right: 12px;
    width: 16px;
}

.pricing-card__features li.disabled {
    opacity: 0.5;
}

.pricing-card__features li i.fa-check {
    color: #27ae60;
}

.pricing-card__features li i.fa-times {
    color: #e74c3c;
}

.pricing-card.featured .pricing-card__features li {
    color: white;
}


/* Blog Styles */

.blog-post {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 48px;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-post__image-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-post__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .blog-post__image {
    transform: scale(1.05);
}

.blog-post__category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.blog-post__content {
    padding: 32px 24px;
}

.blog-post__meta {
    margin-bottom: 16px;
}

.blog-post__meta span {
    font-size: 12px;
    color: var(--text-light);
    margin-right: 24px;
}

.blog-post__meta span:last-child {
    margin-right: 0;
}

.blog-post__meta i {
    margin-right: 6px;
}

.blog-post__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-post__title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.blog-post__title a:hover {
    color: var(--primary-color);
}

.blog-post__excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}


/* Blog Single */

.blog-single-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-single-meta {
    margin-bottom: 32px;
}

.blog-single-meta span {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 24px;
    font-size: 14px;
}

.blog-single-meta i {
    margin-right: 8px;
}

.blog-single-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

.blog-single-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.blog-single-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 16px;
}

.blog-single-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.blog-single-body .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-box {
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid var(--primary-color);
}

.highlight-box i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.blog-quote {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius);
    margin: 32px 0;
    text-align: center;
    position: relative;
}

.blog-quote i {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.blog-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.blog-quote cite {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.info-card__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.key-takeaways {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--border-radius);
    margin: 32px 0;
}

.key-takeaways h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.key-takeaways h3 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
}

.key-takeaways li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 14px;
}

.key-takeaways li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 12px;
    font-weight: 700;
}

.conclusion {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 32px 0;
}


/* Blog Footer */

.blog-single-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 32px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.blog-tags span,
.blog-share span {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 16px;
}

.blog-tags a {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    text-decoration: none;
    margin-right: 8px;
    transition: var(--transition);
}

.blog-tags a:hover {
    background: var(--primary-color);
    color: white;
}

.blog-share a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-left: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.blog-share a:hover {
    background: var(--primary-color);
    color: white;
}


/* Author Bio */

.author-bio {
    padding: 32px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 32px 0;
}

.author-bio__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-bio__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-bio__title {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.author-bio__desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.author-bio__social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.author-bio__social a:hover {
    transform: translateY(-2px);
}


/* Related Posts */

.related-posts {
    margin: 48px 0;
}

.related-post-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-card__content {
    padding: 20px;
}

.related-post-card__category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-md);
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}

.related-post-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-post-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-card h4 a:hover {
    color: var(--primary-color);
}

.related-post-card__date {
    font-size: 12px;
    color: var(--text-light);
}


/* Comments */

.comments-section {
    margin-top: 48px;
}

.comment {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.comment__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.comment__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.comment__header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.comment__date {
    font-size: 12px;
    color: var(--text-light);
}

.comment__content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.comment__reply {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.comment-form {
    padding: 32px;
    border-radius: var(--border-radius);
    margin-top: 32px;
}

.comment-form h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}


/* Blog Sidebar */

.blog-sidebar .sidebar-widget {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 32px;
}

.sidebar-widget__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.sidebar-widget__categories {
    list-style: none;
    padding: 0;
}

.sidebar-widget__categories li {
    margin-bottom: 8px;
}

.sidebar-widget__categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.sidebar-widget__categories li a:hover {
    color: var(--primary-color);
}

.sidebar-widget__categories .count {
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: var(--radius-md);
}

.recent-posts {
    list-style: none;
    padding: 0;
}

.recent-post {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post__content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.recent-post__content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post__content h4 a:hover {
    color: var(--primary-color);
}

.recent-post__date {
    font-size: 11px;
    color: var(--text-light);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud .tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.tag-cloud .tag:hover {
    background: var(--primary-color);
    color: white;
}

.newsletter-form {
    margin-top: 16px;
}

.search-form .input-group,
.newsletter-form .input-group {
    margin-bottom: 0;
}


/* Pagination */

.blog-pagination {
    margin-top: 48px;
}

.pagination {
    margin-bottom: 0;
}

.page-link {
    color: var(--text-light);
    border: 1px solid #eee;
    padding: 12px 16px;
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* Contact Page */


/* Contact Info Cards - Premium Design */

.contact-info-card {
    padding: 50px 40px;
    text-align: center;
    border-radius: 25px;
    height: 100%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
}

.contact-info-card:hover::after {
    opacity: 1;
    top: -20%;
    right: -20%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.contact-info-card__icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 30px;
    font-size: 36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card__icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover .contact-info-card__icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.contact-info-card:hover .contact-info-card__icon::before {
    opacity: 1;
}

.contact-info-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-info-card__title {
    color: var(--primary-color);
}

.contact-info-card__text {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.contact-info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-info-card__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-info-card__link:hover::before {
    opacity: 1;
}

.contact-info-card__link:hover {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-info-card__link i {
    transition: transform 0.3s ease;
}

.contact-info-card__link:hover i {
    transform: translateX(5px);
}

.contact-features {
    margin-top: 32px;
}

.contact-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-feature-item__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-feature-item__content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-feature-item__content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-form-wrapper {
    padding: 40px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    border: 2px solid #eee;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
}

.map-section iframe {
    filter: grayscale(100%);
    transition: var(--transition);
}

.map-section:hover iframe {
    filter: grayscale(0%);
}


/* 404 Error Page */

.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
}

.error-404-content {
    text-align: center;
}

.error-404-animation {
    margin-bottom: 40px;
}

.error-404-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 32px;
}

.zero {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.dumbbell-404 {
    display: flex;
    align-items: center;
    animation: rotate404 3s ease-in-out infinite;
}

.weight-404 {
    width: 30px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
}

.bar-404 {
    width: 80px;
    height: 12px;
    background: var(--secondary-color);
    margin: 0 8px;
    border-radius: var(--radius-sm);
}

@keyframes rotate404 {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.error-404-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.error-404-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.error-404-suggestions h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    height: 100%;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.suggestion-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.suggestion-card span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.error-404-search {
    margin: 48px 0;
}

.error-404-search h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.search-form-404 {
    max-width: 400px;
    margin: 0 auto;
}

.error-404-help {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--border-radius);
    margin-top: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-help i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.error-404-help h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.error-404-help p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.error-404-help a {
    color: var(--primary-color);
    text-decoration: none;
}

.error-404-help a:hover {
    text-decoration: underline;
}


/* Coming Soon Page */

.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600') center/cover;
    opacity: 0.1;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.8));
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.coming-soon-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.coming-soon-logo i {
    font-size: 48px;
    color: var(--primary-color);
}

.coming-soon-logo h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.coming-soon-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.coming-soon-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.countdown-item {
    padding: 24px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 120px;
}

.countdown-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coming-soon-newsletter {
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-newsletter h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.coming-soon-newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.newsletter-form-coming-soon .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form-coming-soon .form-control {
    border: none;
    padding: 16px 20px;
    border-radius: 50px 0 0 50px;
}

.newsletter-form-coming-soon .btn {
    border-radius: 0 50px 50px 0;
    padding: 16px 24px;
}

.form-message {
    margin-top: 16px;
}

.coming-soon-features {
    margin-bottom: 48px;
}

.feature-item-cs {
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
}

.feature-item-cs__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 24px;
    font-size: 24px;
}

.feature-item-cs h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.feature-item-cs p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

.coming-soon-social {
    margin-bottom: 48px;
}

.coming-soon-social h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links .social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.coming-soon-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-contact i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.coming-soon-contact h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.coming-soon-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.coming-soon-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.coming-soon-contact a:hover {
    text-decoration: underline;
}


/* Service Details Page */

.service-details__main {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.service-details__image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-details__content {
    padding: 40px;
}

.service-details__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-details__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 32px 0 16px;
}

.service-details__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-details__highlights {
    margin: 32px 0;
}

.highlight-card {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
}

.highlight-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
    font-size: 20px;
}

.highlight-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-card__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-details__list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.service-details__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.service-details__list li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 2px;
    font-size: 14px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.approach-item {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
}

.approach-item__number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.approach-item__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.approach-item__text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}


/* Service Sidebar */

.service-sidebar .sidebar-widget {
    background: white;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 32px;
}

.sidebar-widget__list {
    list-style: none;
    padding: 0;
}

.sidebar-widget__list li {
    margin-bottom: 8px;
}

.sidebar-widget__list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-widget__list li.active a,
.sidebar-widget__list li a:hover {
    background: var(--primary-color);
    color: white;
}

.sidebar-widget__list li a i:first-child {
    margin-right: 12px;
}

.sidebar-widget__contact {
    list-style: none;
    padding: 0;
}

.sidebar-widget__contact li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.sidebar-widget__contact li i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
}

.sidebar-widget__contact li div strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.sidebar-widget__contact li div span {
    font-size: 13px;
    color: var(--text-light);
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.download-btn:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.download-btn i {
    font-size: 24px;
    color: var(--primary-color);
}

.download-btn:hover i {
    color: white;
}

.download-btn strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.download-btn span {
    font-size: 12px;
    color: var(--text-light);
}

.download-btn:hover strong,
.download-btn:hover span {
    color: white;
}


/* Trainer Cards */

.trainer-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trainer-card__image-wrapper {
    position: relative;
    overflow: hidden;
}

.trainer-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.trainer-card:hover .trainer-card__image {
    transform: scale(1.1);
}

.trainer-card__social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.trainer-card:hover .trainer-card__social {
    opacity: 1;
}

.trainer-card__social a {
    width: 36px;
    height: 36px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.trainer-card__social a:hover {
    background: var(--primary-color);
    color: white;
}

.trainer-card__content {
    padding: 24px 20px;
}

.trainer-card__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trainer-card__title {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.trainer-card__cert {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}


/* CTA Section */


/* CTA Section - Modern Glassmorphic Design */

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 Q 25 25 50 0 T 100 0 V 100 H 0 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .col-lg-8>div {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section .col-lg-8>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.cta-section__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-section__text {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    min-width: 160px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-light {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.cta-section .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(5px);
}

.cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 80px;
    }
    .page-header__title {
        font-size: 36px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .countdown {
        gap: 16px;
    }
    .countdown-item {
        padding: 16px 20px;
        min-width: 100px;
    }
    .countdown-value {
        font-size: 36px;
    }
    .coming-soon-title {
        font-size: 32px;
    }
    .coming-soon-logo h1 {
        font-size: 36px;
    }
    .error-404-number {
        font-size: 80px;
        flex-direction: column;
        gap: 20px;
    }
    .error-404-title {
        font-size: 32px;
    }
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    .blog-single-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-section .col-lg-8>div {
        padding: 40px 30px;
        border-radius: 25px;
    }
    .cta-section__title {
        font-size: 36px;
    }
    .cta-section__text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-section .btn {
        min-width: 200px;
    }
}


/* ===================================
   MODERN UI ENHANCEMENTS FOR THEMEFOREST
   =================================== */


/* Glass Effect (Glassmorphism) */

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}


/* Page Header (Universal) */

.page-header {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 180px 0 100px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600') center/cover;
    opacity: 0.15;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.8));
}

.page-header__title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.page-header__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}


/* ===================================
   ENHANCED FOOTER DESIGN
   =================================== */


/* Enhanced Footer Design */

.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget__title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.footer-widget h3.footer-widget__title {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-widget h3.footer-widget__title::after {
    width: 60px;
    height: 4px;
}

.footer-widget__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.footer-widget__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
    color: white;
}

.footer-widget__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget__links li {
    margin-bottom: 12px;
}

.footer-widget__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
    font-size: 15px;
}

.footer-widget__links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-widget__links a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.footer-widget__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget__contact li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget__contact li i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
}

.footer-widget__contact li span {
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}


/* Back to Top Button Enhancement */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}


/* ===================================
   PREVENT DOUBLE SCROLLBAR FIX
   =================================== */


/* ===================================
   RESPONSIVE IMAGE FIX
   =================================== */


/* Ensure images are responsive */

img {
    max-width: 100%;
    height: auto;
}


/* ===================================
   PROFESSIONAL TYPOGRAPHY & LAYOUT
   =================================== */


/* Enhanced Heading Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 2rem;
    letter-spacing: -0.2px;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}


/* Professional Section Titles */

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    position: relative;
    text-transform: capitalize;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}


/* Large Display Text */

.display-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}


/* Professional Paragraph Styling */

p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.0625rem;
}

p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}


/* Professional Spacing System */

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-padding-lg {
    padding: 120px 0;
}


/* Container Max Width Control */

.container {
    max-width: 1200px;
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
}


/* Text Alignment Utilities */

.text-center {
    text-align: center;
}

.text-balance {
    text-wrap: balance;
}


/* Professional Color System */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-muted {
    color: var(--text-light) !important;
}


/* Card & Content Spacing */

.card,
.content-box {
    margin-bottom: 2rem;
}


/* Professional List Styling */

ul,
ol {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}


/* Responsive Typography */

@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .display-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .display-text {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-padding-lg {
        padding: 80px 0;
    }
    p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .display-text {
        font-size: 2rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-padding-lg {
        padding: 60px 0;
    }
}


/* Professional Button Enhancements */

.btn {
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.875rem;
}


/* Professional Shadow System */

.shadow-sm-custom {
    box-shadow: var(--shadow-light);
}

.shadow-md-custom {
    box-shadow: var(--shadow-medium);
}

.shadow-lg-custom {
    box-shadow: var(--shadow-medium);
}


/* Professional Border Radius */

.rounded-custom {
    \r\n border-radius: var(--radius-md);
}

.rounded-lg-custom {
    \r\n border-radius: var(--radius-lg);
}


/* Content Width Control */

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}


/* Professional Divider */

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 3rem 0;
}


/* Badge & Label Styling */

.badge-custom {
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}


/* ===================================
   MODERN UI ENHANCEMENTS - THEMEFOREST PREMIUM
   =================================== */


/* ==========================================
   1. NEUMORPHISM SYSTEM
   ========================================== */


/* Neumorphic Card Style */

.neomorphic-card {
    background: #f0f0f3;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.neomorphic-card:hover {
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* Neumorphic Inset (Pressed) */

.neomorphic-inset {
    background: #f0f0f3;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: inset 6px 6px 12px rgba(163, 177, 198, 0.5), inset -6px -6px 12px rgba(255, 255, 255, 0.7);
}


/* Neumorphic Button */

.btn-neomorphic {
    background: #f0f0f3;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 32px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.5), -6px -6px 12px rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-neomorphic:hover {
    box-shadow: 4px 4px 8px rgba(163, 177, 198, 0.4), -4px -4px 8px rgba(255, 255, 255, 0.8);
}

.btn-neomorphic:active {
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.5), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
}


/* Neumorphic Input Fields */

.neomorphic-input {
    background: #f0f0f3;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 1rem;
    color: var(--text-dark);
    box-shadow: inset 4px 4px 8px rgba(163, 177, 198, 0.4), inset -4px -4px 8px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.neomorphic-input:focus {
    outline: none;
    box-shadow: inset 6px 6px 12px rgba(163, 177, 198, 0.5), inset -6px -6px 12px rgba(255, 255, 255, 0.7);
}


/* Neumorphic Icon Container */

.neomorphic-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 6px 6px 12px rgba(163, 177, 198, 0.5), -6px -6px 12px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.neomorphic-icon:hover {
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.6), -8px -8px 16px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}


/* ==========================================
   2. ENHANCED GLASSMORPHISM
   ========================================== */


/* Premium Glass Card */

.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: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}


/* Glass Card with Dark Background */

.glass-card-dark {
    background: rgba(44, 62, 80, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


/* Tinted Glass Variants */

.glass-primary {
    background: rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.glass-secondary {
    background: rgba(44, 62, 80, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(44, 62, 80, 0.3);
}


/* Glass Pricing Card */

.glass-pricing {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.glass-pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.glass-pricing:hover::before {
    left: 100%;
}

.glass-pricing:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}


/* ==========================================
   3. ADVANCED ANIMATIONS
   ========================================== */


/* Staggered Entrance Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-stagger>* {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.animate-stagger>*:nth-child(1) {
    animation-delay: 0.1s;
}

.animate-stagger>*:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-stagger>*:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-stagger>*:nth-child(4) {
    animation-delay: 0.4s;
}

.animate-stagger>*:nth-child(5) {
    animation-delay: 0.5s;
}

.animate-stagger>*:nth-child(6) {
    animation-delay: 0.6s;
}


/* Floating Animation */

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}


/* Pulse Animation */

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}


/* Morph/Blob Animation */

@keyframes morph {
    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    }
    75% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
}

.animate-morph {
    animation: morph 8s ease-in-out infinite;
}


/* Gradient Animation */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}


/* Card Tilt Effect (3D) */

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}


/* Scale on Scroll (Apply with JS) */

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-reveal {
    opacity: 0;
}

.scroll-reveal.active {
    animation: scaleIn 0.6s ease forwards;
}


/* ==========================================
   4. ENHANCED GRADIENT SYSTEM
   ========================================== */


/* Gradient Set 1: Warm Sunset */

.gradient-sunset {
    background: linear-gradient(135deg, #ff6b35 0%, #f39c12 50%, #e74c3c 100%);
}


/* Gradient Set 2: Cool Ocean */

.gradient-ocean {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}


/* Gradient Set 3: Fresh Mint */

.gradient-mint {
    background: linear-gradient(135deg, #13547a 0%, #80d0c7 100%);
}


/* Gradient Set 4: Purple Dream */

.gradient-purple {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}


/* Gradient Set 5: Fire */

.gradient-fire {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
}


/* Mesh Gradient Background */

.mesh-gradient {
    background: radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.3) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(243, 156, 18, 0.3) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(44, 62, 80, 0.3) 0px, transparent 50%), radial-gradient(at 0% 100%, rgba(102, 126, 234, 0.3) 0px, transparent 50%);
}


/* Gradient Text Effect */

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}


/* Gradient Border */

.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}


/* Animated Gradient Background */

.animated-gradient-bg {
    background: linear-gradient(-45deg, #ff6b35, #f39c12, #667eea, #764ba2);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}


/* ==========================================
   5. LOADING SKELETONS & EMPTY STATES
   ========================================== */


/* Skeleton Loading Animation */

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 16px;
}

.skeleton-card {
    height: 200px;
    width: 100%;
    border-radius: var(--radius-md);
}

.skeleton-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


/* Empty State Container */

.empty-state {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.empty-state-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}


/* ==========================================
   6. MICRO-INTERACTIONS
   ========================================== */


/* Button Ripple Effect */

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
}


/* Input Focus Glow */

.input-glow {
    transition: all 0.3s ease;
}

.input-glow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 0 20px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}


/* Smooth Hover Scale */

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}


/* Smooth Hover Lift */

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}


/* Icon Spin on Hover */

.icon-spin-hover:hover i,
.icon-spin-hover:hover svg {
    animation: spin 0.6s ease-in-out;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================
   7. DECORATIVE SVG ELEMENTS
   ========================================== */


/* Abstract Blob Shape */

.decorative-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(40px);
    animation: morph 10s ease-in-out infinite;
    z-index: -1;
}

.decorative-blob.blob-1 {
    top: -200px;
    left: -200px;
}

.decorative-blob.blob-2 {
    bottom: -200px;
    right: -200px;
    animation-delay: 3s;
}


/* Dot Pattern Background */

.dot-pattern {
    background-image: radial-gradient(circle, var(--text-light) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}


/* Circle Decorations */

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.2;
    z-index: -1;
}

.decorative-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
}

.decorative-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 10%;
}


/* ==========================================
   8. PREMIUM CARD EFFECTS
   ========================================== */


/* Card with Floating Effect */

.card-floating {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-floating:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* Card with Gradient Border on Hover */

.card-gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.card-gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-gradient-border:hover::before {
    opacity: 1;
}


/* Card Flip Effect */

.card-flip {
    perspective: 1000px;
    height: 300px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-flip-back {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    color: white;
}


/* Card with Shine Effect */

.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.card-shine:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}


/* ==========================================
   9. RESPONSIVE ADJUSTMENTS
   ========================================== */

@media (max-width: 768px) {
    .glass-card,
    .glass-pricing,
    .neomorphic-card {
        padding: var(--spacing-md);
    }
    .decorative-blob {
        width: 250px;
        height: 250px;
    }
    .card-flip {
        height: 250px;
    }
}


/* Hero Section Responsive */

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-carousel-nav {
        right: 30px;
        bottom: 30px;
    }
    .stat-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .hero-carousel-nav {
        flex-direction: row;
        bottom: 100px;
        right: 50%;
        transform: translateX(50%);
    }
    .carousel-dot.active {
        width: 40px;
        height: 14px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    .stat-item {
        padding: 15px 10px;
    }
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
}


/* Hero Text Content Animation */

.hero-text-content {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.8s ease;
    pointer-events: none;
}

.hero-text-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Text Adjustments */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.8rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    .hero-buttons .btn {
        padding: 14px 28px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-title-white,
    .text-primary {
        display: block;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .hero-buttons {
        margin-top: 25px;
    }
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-buttons .btn i {
        font-size: 0.85rem;
    }
}


/* Breadcrumb Navigation */

.breadcrumb-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 107, 53, 0.3));
    padding: 80px 0 40px;
    margin-top: 70px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    padding: 0 12px;
    font-size: 0.75rem;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item i {
    margin-right: 6px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 70px 0 30px;
    }
    .breadcrumb {
        font-size: 0.85rem;
    }
    .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 8px;
    }
}


/* Newsletter Widget Gradient Background */

.sidebar-widget.gradient-bg {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.sidebar-widget.gradient-bg .sidebar-widget__title {
    color: #ffffff !important;
}

.sidebar-widget.gradient-bg .sidebar-widget__text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.sidebar-widget.gradient-bg .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.sidebar-widget.gradient-bg .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-widget.gradient-bg .form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    color: #ffffff;
}


/* Mobile Title Fix - Keep title in one line */

@media (max-width: 576px) {
    .section-title {
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        font-size: 1.5rem !important;
    }
    .section-title span {
        display: inline !important;
    }
}


/* Orange Outline Buttons */

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    color: #ffffff !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #ffffff !important;
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.5) !important;
}


/* Professional Stats Mobile Responsive */

@media (max-width: 768px) {
    .stat-item {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
}


/* Hero Stats Mobile Optimization */

@media (max-width: 767px) {
    .hero-stats {
        margin-top: 40px;
    }
    .hero-stats .row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 8px;
    }
    .hero-stats .col-4 {
        padding-left: 4px;
        padding-right: 4px;
    }
    .stat-item {
        padding: 22px 10px;
        margin-bottom: 0;
        min-height: auto;
        border-radius: 16px;
    }
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    .stat-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    .stat-number::after {
        font-size: 1.4rem;
        margin-left: 2px;
    }
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.2px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        margin-top: 30px;
    }
    .hero-stats .row {
        --bs-gutter-x: 6px;
    }
    .hero-stats .col-4 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .stat-item {
        padding: 18px 8px;
        border-radius: 14px;
        border-width: 1px;
    }
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .stat-number {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }
    .stat-number::after {
        font-size: 1.2rem;
        margin-left: 2px;
    }
    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.1px;
        line-height: 1.2;
    }
}

@media (max-width: 400px) {
    .hero-stats .row {
        --bs-gutter-x: 5px;
    }
    .hero-stats .col-4 {
        padding-left: 2.5px;
        padding-right: 2.5px;
    }
    .stat-item {
        padding: 16px 6px;
        border-radius: 12px;
    }
    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 8px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-number::after {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.55rem;
        line-height: 1.1;
    }
}

@media (max-width: 360px) {
    .hero-stats .row {
        --bs-gutter-x: 4px;
    }
    .hero-stats .col-4 {
        padding-left: 2px;
        padding-right: 2px;
    }
    .stat-item {
        padding: 14px 5px;
    }
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .stat-number {
        font-size: 1.3rem;
    }
    .stat-number::after {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.5rem;
    }
}


/* Stats Counter Responsive - ThemeForest Standards */

@media (max-width: 1200px) {
    .stats-counter__number {
        font-size: 3.5rem;
    }
    .stats-counter__icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .stats-counter__item {
        padding: 40px 25px;
        margin: 8px;
    }
    .stats-counter__number {
        font-size: 3rem;
    }
    .stats-counter__icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .stats-counter {
        padding: 60px 0;
    }
    .stats-counter__item {
        padding: 35px 20px;
        margin-bottom: 20px;
    }
    .stats-counter__number {
        font-size: 2.5rem;
    }
    .stats-counter__number::after {
        font-size: 2rem;
    }
    .stats-counter__label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .stats-counter__item {
        padding: 30px 15px;
    }
    .stats-counter__icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 18px;
    }
    .stats-counter__number {
        font-size: 2rem;
    }
    .stats-counter__label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}


/* CTA Section Responsive - Additional Breakpoints */

@media (max-width: 576px) {
    .cta-section .col-lg-8>div {
        padding: 35px 25px;
        border-radius: 20px;
    }
    .cta-section__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .cta-section__text {
        font-size: 15px;
        margin-bottom: 25px;
    }
    .cta-section .btn {
        padding: 12px 30px;
        font-size: 14px;
        min-width: 180px;
    }
}

@media (max-width: 991px) {
    .cta-section__title {
        font-size: 40px;
    }
}


/* CTA Section Animation Enhancement */

@keyframes ctaFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-section .col-lg-8>div::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: ctaFloat 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}


/* Contact Info Cards Responsive */

@media (max-width: 991px) {
    .contact-info-card {
        padding: 45px 35px;
    }
    .contact-info-card__icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    .contact-info-card__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 40px 30px;
        margin-bottom: 24px;
    }
    .contact-info-card__icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
        margin-bottom: 25px;
    }
    .contact-info-card__title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .contact-info-card__text {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 35px 25px;
    }
    .contact-info-card__icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    .contact-info-card__title {
        font-size: 19px;
    }
    .contact-info-card__link {
        padding: 10px 24px;
        font-size: 14px;
    }
}


/* Contact Cards Animation Enhancement */

@keyframes cardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.contact-info-card:nth-child(1) {
    animation-delay: 0s;
}

.contact-info-card:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-info-card:nth-child(3) {
    animation-delay: 0.2s;
}


/* Pulse effect for icon on hover */

@keyframes iconPulse {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.6);
    }
}

.contact-info-card:hover .contact-info-card__icon {
    animation: iconPulse 2s ease-in-out infinite;
}


/* Contact Card Shimmer Effect */

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.contact-info-card .contact-info-card__icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    background-size: 200% 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover .contact-info-card__icon::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}