/* Color Variables */
:root {
    --primary-blue: #060B2E;
    --secondary-blue: #1a237e;
    --accent-coral: #FF6B35;
    --accent-coral-light: #FF8C61;
    --accent-coral-dark: #E55A2B;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    background-color: white;
    transition: background-color 0.3s ease;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.1);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2c2c2c;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}

.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-coral), var(--accent-coral-light));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--accent-coral);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    font-size: 10px;
    color: #2c2c2c;
}

/* Profile Avatar */
.profile-container {
    position: relative;
    margin-left: 10px;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(6, 11, 46, 0.2);
}

.profile-avatar:hover {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-coral-light);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.profile-avatar i {
    font-size: 18px;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 6px;
    margin: 2px 8px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-coral);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    color: var(--accent-coral);
    transform: translateX(5px);
    padding-left: 25px;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:hover i {
    color: var(--accent-coral);
    transform: scale(1.2);
}

.dropdown-item i {
    font-size: 16px;
    color: #060B2E;
    width: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 8px 0;
}

/* Hide mobile navigation links on desktop */
.mobile-nav-link {
    display: none;
}

.mobile-nav-divider {
    display: none;
}


/* Hero Section */
.hero {
    display: flex;
    height: calc(100vh - 80px);
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    transition: all 0.3s ease;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(6, 11, 46, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 70px 80px 60px 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    animation: fadeInLeft 0.8s ease-out;
    margin-top: 60px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #060B2E 0%, #1a237e 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(6, 11, 46, 0.2);
    animation: slideInDown 0.6s ease-out 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    font-size: 14px;
}

.hero-heading {
    font-size: 64px;
    font-weight: 800;
    color: #060B2E;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-heading-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-heading-line:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-heading-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-heading-line:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-heading-line.highlight {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 50%, var(--primary-blue) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-coral) 50%, var(--accent-coral-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #060B2E 0%, #1a237e 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 11, 46, 0.3);
    letter-spacing: 0.5px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 11, 46, 0.4);
    background: linear-gradient(135deg, #1a237e 0%, #060B2E 100%);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-secondary {
    background: white;
    color: #060B2E;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid #060B2E;
    letter-spacing: 0.5px;
}

.hero-btn-secondary:hover {
    background: #060B2E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 11, 46, 0.2);
}

.hero-btn-secondary:hover i {
    transform: translateY(3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #060B2E;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #060B2E 0%, #1a237e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 60px 40px 40px 40px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 140px;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 11, 46, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 0;
    filter: drop-shadow(0 10px 40px rgba(6, 11, 46, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(6, 11, 46, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #060B2E;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 18px;
    color: #1a237e;
}

.floating-card-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.book-now-btn {
    background-color: #060B2E;
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.book-now-btn:hover {
    background-color: #050923;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 11, 46, 0.3);
}

/* Services Section */
.services-section {
    display: block;
    padding: 30px 40px 60px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    min-height: 100vh;
    transition: background 0.3s ease;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-heading {
    font-size: 42px;
    font-weight: 700;
    color: #060B2E;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.services-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral) 0%, var(--primary-blue) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.services-heading:hover::after {
    width: 120px;
}

.services-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(6, 11, 46, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-coral-light) 50%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.25);
    transform: translateY(-10px) scale(1.03) rotate(1deg);
    border-color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon i {
    font-size: 54px;
    color: #060B2E;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    color: #060B2E;
    margin: 0 0 auto 0;
    line-height: 1.4;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-name {
    color: var(--accent-coral);
    transform: scale(1.08);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.explore-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(6, 11, 46, 0.2);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn:hover {
    gap: 12px;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(4px);
}

/* Service Cards with Images */
.service-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    min-height: 100px;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(6, 11, 46, 0.03) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.15) 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.service-card-image,
.yoga-service-image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    /* Filter removed to prevent blue overlay on uploaded icon images */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card-image,
.service-card:hover .yoga-service-image {
    /* Filter removed to prevent blue overlay on uploaded icon images */
    transform: scale(1.2) rotate(3deg);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

/* Service Detail Section */
.service-detail-section {
    display: none;
    padding: 30px 40px 80px 40px;
    background-color: white;
    min-height: 100vh;
}

.service-detail-section.active {
    display: block;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.back-button {
    background: none;
    border: none;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: -30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.back-button:hover {
    opacity: 0.7;
}

.back-button i {
    font-size: 14px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-detail-image {
    flex: 0.8;
    min-height: 400px;
    max-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .service-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Mobile image adjustments */
    @media (max-width: 768px) {
        .service-detail-image img {
            object-fit: contain;
            max-height: 200px;
        }
    }
    
    @media (max-width: 480px) {
        .service-detail-image img {
            object-fit: contain;
            max-height: 180px;
        }
    }

.service-detail-info {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-detail-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-feature-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-icon i {
    font-size: 20px;
    color: #060B2E;
}

.service-feature-content {
    flex: 1;
}

.service-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.service-feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.service-actions {
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.btn-primary {
    flex: 0 1 auto;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    max-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary.btn-link {
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    flex: 1;
    background-color: white;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* About Us Section */
.about-section {
    display: block;
    padding: 60px 40px 60px 40px;
    background-color: white;
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background-color: #f0f8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 11, 46, 0.15);
}

.stat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon i {
    font-size: 48px;
    color: #060B2E;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    line-height: 1.4;
}

/* Why Choose Us Section */
.why-choose-section {
    display: block;
    padding: 60px 40px 60px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    margin: 0;
    transition: background 0.3s ease;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 0;
}

.why-choose-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.why-choose-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral) 0%, var(--primary-blue) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.why-choose-heading:hover::after {
    width: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 0;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-coral-light) 50%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
    border-color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 107, 53, 0.03) 100%);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 60%, var(--secondary-blue) 75%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-coral) 80%, var(--accent-coral-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.15) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-title {
    color: var(--accent-coral);
    transform: translateY(-2px);
}

.feature-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section - Specific Styles */
#why-choose-section .features-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
    margin: 30px auto 0;
    justify-items: center;
}

#why-choose-section .feature-card {
    padding: 30px 25px;
    max-width: 240px;
}

#why-choose-section .feature-icon {
    margin-bottom: 15px;
}

#why-choose-section .feature-icon i {
    font-size: 42px;
}

#why-choose-section .feature-title {
    font-size: 18px;
    margin-bottom: 12px;
}

#why-choose-section .feature-desc {
    font-size: 13px;
}

/* Testimonials Section */
.testimonials-section {
    display: block;
    padding: 60px 40px 40px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    margin: 0;
    transition: background 0.3s ease;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-heading {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 60%, var(--secondary-blue) 75%, var(--accent-coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    width: 100%;
}

.testimonials-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral) 0%, var(--primary-blue) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.testimonials-heading:hover::after {
    width: 120px;
}

.testimonials-scroll-hint {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
    display: none; /* Hidden on desktop by default */
}

/* Show on mobile only */
@media screen and (max-width: 768px) {
    .testimonials-scroll-hint {
        display: block;
    }
}

.testimonials-slider {
    position: relative;
    width: 100%;
}

.testimonials-slider-container {
    flex: 1;
    overflow-x: visible;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Enable scroll only on mobile */
@media (max-width: 768px) {
    .testimonials-slider-container {
        overflow-x: auto;
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.testimonials-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-btn {
    background-color: #060B2E;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: #050923;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled,
.slider-btn[style*="pointer-events: none"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn i {
    color: white;
    font-size: 20px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    width: 100%;
    align-items: stretch;
    justify-content: center;
}

/* Use max-width for scroll on mobile only */
@media (max-width: 768px) {
    .testimonials-grid {
        width: max-content;
        justify-content: flex-start;
    }
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 400px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-coral-light) 50%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.25);
    border-color: transparent;
}

.testimonial-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-content {
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 18px;
}

.testimonial-text {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: white;
    flex: 1;
    overflow: visible;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Blog Section */
.blog-section {
    display: block;
    padding: 30px 40px 80px 40px;
    background-color: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
}

.blog-scroll-hint {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

/* Blog Slider Wrapper */
.blog-slider-wrapper {
    position: relative;
    width: 100%;
}

.blog-slider-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 10px 0;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.blog-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.blog-slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #060B2E;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.blog-slider-btn:hover {
    background-color: #050923;
    transform: scale(1.1);
}

.blog-slider-btn:active {
    transform: scale(0.95);
}

.blog-slider-btn:disabled,
.blog-slider-btn[style*="pointer-events: none"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-grid {
    display: flex;
    gap: 30px;
    width: max-content;
}

.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    width: 100%;
    max-width: 380px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 11, 46, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-read-more {
    color: #060B2E;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

/* Footer */
.footer {
    background-color: white;
    color: #2c2c2c;
    padding: 60px 40px 20px 40px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-left {
    justify-self: start;
    text-align: left;
}

.footer-center {
    justify-self: center;
    text-align: center;
}

.footer-right {
    justify-self: end;
    text-align: right;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.logo-highlight {
    color: var(--accent-coral);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-highlight {
    color: var(--primary-blue);
    transform: scale(1.1);
    display: inline-block;
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-coral);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    border-color: var(--accent-coral);
    color: white;
    transform: translateY(-5px) rotate(360deg) scale(1.1);
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link i {
    font-size: 18px;
}

.footer-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
    margin-top: 20px;
}

.footer-subtitle:first-of-type {
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-coral);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--accent-coral);
    transform: translateX(3px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-widget:hover {
    transform: translateY(-5px) scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
    animation: none;
}

/* Trainer Application Section */
.trainer-application-section {
    padding: 30px 40px 80px 40px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
}

.application-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2.5%;
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.application-subtitle {
    font-size: 16px;
    color: #666;
}

.trainer-form {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #060B2E;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #060B2E;
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group textarea#additionalText {
    max-width: 350px;
    width: 100%;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    cursor: pointer;
}

.file-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.btn-submit {
    background-color: #060B2E;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: #050923;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 11, 46, 0.3);
}

.btn-submit.loading {
    opacity: 0.85;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Toaster Notification Styles (global) */
.toaster {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #060B2E;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 420px;
    animation: slideInRight 0.3s ease-out;
}

.toaster.show {
    display: flex;
}

.toaster.success {
    background-color: #28a745;
}

.toaster.error {
    background-color: #dc3545;
}

.toaster i {
    font-size: 20px;
    flex: 0 0 auto;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .toaster {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: 100%;
        padding: 14px 18px;
        font-size: 14px;
    }
    .toaster i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .toaster {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 15px;
        font-size: 13px;
    }
}

.btn-reset {
    background-color: white;
    color: #2c2c2c;
    border: 2px solid #e0e0e0;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-reset:hover {
    border-color: #060B2E;
    color: #060B2E;
}

@media (max-width: 1024px) {
    .form-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trainer-application-section {
        padding: 20px 15px 40px 15px;
    }
    
    .application-container {
        max-width: 100%;
        padding: 0 5px;
    }
    
    .application-header {
        margin-bottom: 30px;
    }
    
    .application-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .application-subtitle {
        font-size: 14px;
    }
    
    .trainer-form {
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .form-section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-row,
    .form-row-2,
    .form-row-3,
    .form-row-4 {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="number"],
    .form-group input[type="url"],
    .form-group input[type="file"],
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    .radio-group {
        gap: 8px;
    }
    
    .radio-label {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .btn-submit,
    .btn-reset {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .trainer-application-section {
        padding: 15px 10px 30px 10px;
    }
    
    .application-container {
        padding: 0;
    }
    
    .application-title {
        font-size: 22px;
    }
    
    .application-subtitle {
        font-size: 13px;
    }
    
    .trainer-form {
        padding: 15px 12px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 42px;
    }
    
    .navbar {
        padding: 12px 30px;
    }
    
    .nav-left {
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-section {
        padding: 40px 20px 40px 20px;
    }
    
    .testimonials-slider {
        gap: 15px;
    }
    
    .testimonials-grid {
        gap: 25px;
    }
    
    .testimonial-card {
        min-width: 260px;
        max-width: 300px;
    }
    
    .testimonial-text {
        font-size: 11px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-tagline {
        font-size: 12px;
    }
    
    .footer-subtitle {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .footer-contact li {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    .blog-section {
        padding: 20px 20px 60px 20px;
    }
    
    .blog-scroll-hint {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .blog-card {
        min-width: 280px;
        max-width: 350px;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 12px 15px;
    }
    
    .nav-left {
        flex: 1;
        order: 1;
        gap: 10px;
        min-width: 0;
    }
    
    .nav-center {
        flex: 0;
        order: 2;
        display: none;
    }
    
    .brand-name {
        font-size: 14px;
        letter-spacing: 1px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .nav-right {
        flex: 0 0 auto;
        order: 2;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0;
        margin-top: 0;
        margin-left: auto;
    }
    
    /* Hide desktop navigation links on mobile */
    .desktop-nav-link {
        display: none !important;
    }
    
    /* Show mobile navigation links in dropdown */
    .mobile-nav-link {
        display: block !important;
    }
    
    .mobile-nav-divider {
        display: block !important;
    }
    
    .nav-link {
        white-space: nowrap;
        font-size: 12px;
        display: none;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .brand-name {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .profile-container {
        margin-left: 10px;
    }
    
    .profile-avatar {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .profile-avatar i {
        font-size: 16px;
    }
    
    .profile-dropdown {
        right: -10px;
        min-width: 180px;
    }
    
    /* Disable all hover effects on mobile devices */
    .service-card:hover,
    .service-card:hover::before,
    .service-card:hover::after {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border-color: transparent !important;
    }
    
    .service-card:hover .service-icon i,
    .service-card:hover .service-name,
    .service-card:hover .service-image,
    .service-card:hover .service-card-image,
    .service-card:hover .yoga-service-image {
        transform: none !important;
        color: inherit !important;
        background: inherit !important;
    }
    
    .feature-card:hover,
    .feature-card:hover::before,
    .feature-card:hover::after {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border-color: transparent !important;
    }
    
    .feature-card:hover .feature-icon i {
        transform: none !important;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 60%, var(--secondary-blue) 75%, var(--accent-coral) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .feature-card:hover .feature-title {
        transform: none !important;
        color: inherit !important;
    }
    
    .testimonial-card:hover,
    .testimonial-card:hover::before {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .testimonial-card:hover .testimonial-content {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%) !important;
    }
    
    .stat-card:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }
    
    .nav-link:hover,
    .nav-link:hover::after {
        transform: none !important;
        color: inherit !important;
    }
    
    .nav-link:hover::after {
        width: 0 !important;
    }
    
    .profile-avatar:hover {
        transform: none !important;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%) !important;
        border-color: transparent !important;
        box-shadow: 0 2px 8px rgba(6, 11, 46, 0.2) !important;
    }
    
    .dropdown-item:hover,
    .dropdown-item:hover::before {
        transform: none !important;
        background: transparent !important;
        color: inherit !important;
        padding-left: 20px !important;
    }
    
    .dropdown-item:hover::before {
        transform: scaleY(0) !important;
    }
    
    .dropdown-item:hover i {
        transform: none !important;
        color: inherit !important;
    }
    
    .logo:hover .logo-image {
        transform: none !important;
    }
    
    .why-choose-heading:hover::after {
        width: 80px !important;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 40px 20px;
    }
    
    .hero-left {
        padding: 20px;
        width: 100%;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 0;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-heading {
        font-size: 46px;
        margin-bottom: 20px;
        text-align: center;
        align-items: center;
    }
    
    .hero-description {
        display: block;
        font-size: 13px;
        margin-bottom: 30px;
        text-align: center;
        max-width: 100%;
        color: #666;
        line-height: 1.6;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: 20px;
        padding-top: 25px;
        width: 100%;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .hero-stat-label {
        font-size: 12px;
    }
    
    .hero-right {
        display: flex;
        order: -1;
        width: 100%;
        padding: 20px;
        margin-bottom: 10px;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-image-container {
        width: 100%;
        height: auto;
        padding-bottom: 0;
    }
    
    .hero-image {
        display: block;
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: contain;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-section {
        padding: 40px 20px 40px 20px;
    }
    
    .services-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .services-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .service-card {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .service-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .service-icon {
        margin-bottom: 10px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-image {
        margin-bottom: 12px;
        height: 60px;
        min-height: 60px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .service-card:hover .service-image {
        transform: scale(1.05) rotate(1deg);
    }
    
    .service-name {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: auto;
        min-height: 2.6em;
    }
    
    .service-card {
        cursor: pointer;
        position: relative;
    }
    
    .explore-btn {
        margin-top: 15px;
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .explore-btn i {
        font-size: 10px;
    }
    
    .service-card-image,
    .yoga-service-image {
        max-width: 75%;
        max-height: 75%;
    }
    
    .service-card:hover .service-card-image,
    .service-card:hover .yoga-service-image {
        transform: scale(1.1);
    }
    
    .service-detail-section {
        padding: 15px 15px 40px 15px;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .service-detail-container {
        padding: 0 5px;
        overflow: visible !important;
        height: auto !important;
    }
    
    .back-button {
        margin-top: -20px;
        margin-bottom: 20px;
        font-size: 13px;
    }
    
    .service-detail-content {
        flex-direction: column;
        gap: 0;
        border-radius: 12px;
        overflow: visible !important;
        min-height: auto !important;
    }
    
    .service-detail-image {
        min-height: 140px;
        max-height: 180px;
        width: 100%;
        flex: 0 0 auto;
        height: auto !important;
        margin-bottom: 25px;
    }
    
    .service-detail-info {
        padding: 25px 20px;
        justify-content: flex-start !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
        flex: 1 1 auto !important;
    }
    
    .service-detail-title {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .service-features {
        gap: 18px;
        margin-bottom: 25px;
        overflow: visible !important;
        flex: 0 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .service-feature-item {
        gap: 12px;
        align-items: flex-start;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .service-feature-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .service-feature-icon i {
        font-size: 16px;
    }
    
    .service-feature-title {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .service-feature-desc {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .about-section {
        padding: 40px 20px 40px 20px;
    }
    
    .about-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon i {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .why-choose-section {
        padding: 40px 20px 40px 20px;
    }
    
    .why-choose-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    /* Why Choose Us Section - Mobile Responsive */
    #why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    #why-choose-section .feature-card {
        max-width: 100%;
        padding: 20px 15px;
    }
    
    #why-choose-section .feature-icon i {
        font-size: 32px;
    }
    
    #why-choose-section .feature-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    #why-choose-section .feature-desc {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .feature-card {
        padding: 15px 8px;
        border-radius: 8px;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .feature-desc {
        font-size: 10px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Disable all hover effects on small mobile devices */
    .service-card:hover,
    .service-card:hover::before,
    .service-card:hover::after {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border-color: transparent !important;
    }
    
    .service-card:hover .service-icon i,
    .service-card:hover .service-name,
    .service-card:hover .service-image,
    .service-card:hover .service-card-image,
    .service-card:hover .yoga-service-image {
        transform: none !important;
        color: inherit !important;
        background: inherit !important;
    }
    
    .feature-card:hover,
    .feature-card:hover::before,
    .feature-card:hover::after {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
        border-color: transparent !important;
    }
    
    .feature-card:hover .feature-icon i {
        transform: none !important;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 60%, var(--secondary-blue) 75%, var(--accent-coral) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .feature-card:hover .feature-title {
        transform: none !important;
        color: inherit !important;
    }
    
    .testimonial-card:hover,
    .testimonial-card:hover::before {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    .testimonial-card:hover .testimonial-content {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%) !important;
    }
    
    .stat-card:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    }
    
    .hero {
        padding: 30px 15px;
    }
    
    .hero-left {
        padding: 15px;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-right {
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 15px;
    }
    
    .hero-heading {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-image {
        max-height: 450px;
    }
    
    .hero-description {
        display: block;
        font-size: 12px;
        margin-bottom: 25px;
        text-align: center;
        max-width: 100%;
        color: #666;
        line-height: 1.5;
    }
    
    .hero-cta {
        margin-bottom: 25px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 15px;
        padding-top: 20px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .service-card {
        padding: 12px 6px;
        border-radius: 10px;
    }
    
    .service-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .service-icon {
        margin-bottom: 8px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-image {
        height: 50px;
        min-height: 50px;
        padding: 8px;
        border-radius: 6px;
    }
    
    .service-card:hover .service-image {
        transform: scale(1.05);
    }
    
    .service-name {
        font-size: 11px;
        line-height: 1.2;
        margin-bottom: auto;
        min-height: 2.4em;
    }
    
    .explore-btn {
        margin-top: 12px;
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .service-card {
        cursor: pointer;
        position: relative;
    }
    
    .explore-btn i {
        font-size: 9px;
    }
    
    .service-card:hover .service-card-image,
    .service-card:hover .yoga-service-image {
        transform: scale(1.08);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    /* Why Choose Us Section - Small Mobile Responsive */
    #why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    
    #why-choose-section .feature-card {
        max-width: 100%;
        padding: 18px 12px;
    }
    
    #why-choose-section .feature-icon {
        margin-bottom: 8px;
    }
    
    #why-choose-section .feature-icon i {
        font-size: 28px;
    }
    
    #why-choose-section .feature-title {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    #why-choose-section .feature-desc {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .feature-card {
        padding: 12px 6px;
        border-radius: 6px;
    }
    
    .feature-icon {
        margin-bottom: 8px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 11px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .feature-desc {
        font-size: 9px;
        line-height: 1.3;
    }
    
    .testimonials-section {
        padding: 40px 20px 40px 20px;
    }
    
    .testimonials-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .testimonials-scroll-hint {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        min-width: 240px;
        max-width: 280px;
    }
    
    .testimonial-text {
        font-size: 10px;
    }
    
    .testimonial-image {
        height: 150px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .footer {
        padding: 60px 20px 20px 20px;
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        justify-self: center;
        text-align: center;
    }
    
    .footer-logo {
        font-size: 16px;
    }
    
    .footer-tagline {
        font-size: 11px;
    }
    
    .footer-subtitle {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
    
    .footer-contact li {
        font-size: 11px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 14px;
    }
    
    .blog-section {
        padding: 15px 15px 50px 15px;
    }
    
    .blog-scroll-hint {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .blog-grid {
        gap: 15px;
    }
    
    .blog-card {
        min-width: 280px;
        max-width: 320px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .service-detail-section {
        padding: 10px 10px 30px 10px;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    .service-detail-container {
        padding: 0;
        overflow: visible !important;
    }
    
    .back-button {
        margin-top: -15px;
        margin-bottom: 15px;
        font-size: 12px;
    }
    
    .service-detail-content {
        border-radius: 10px;
        overflow: visible !important;
        min-height: auto !important;
    }
    
    .service-detail-image {
        min-height: 120px;
        max-height: 160px;
        flex: 0 0 auto;
        height: auto !important;
        margin-bottom: 20px;
    }
    
    .service-detail-info {
        padding: 20px 15px;
        justify-content: flex-start !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
        flex: 1 1 auto !important;
    }
    
    .service-detail-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .service-features {
        gap: 15px;
        margin-bottom: 20px;
        overflow: visible !important;
        flex: 0 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .service-feature-item {
        gap: 10px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .service-feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .service-feature-icon i {
        font-size: 14px;
    }
    
    .service-feature-title {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .service-feature-desc {
        font-size: 11px;
    }
    
    .service-actions {
        gap: 10px;
        margin-top: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

