/* ============== RESET & BASE STYLES ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

/* ============== BUTTONS ============== */
.btn-primary {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: rgb(255, 255, 255);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #06b6d4;
    padding: 0.75rem 1.5rem;
    border: 2px solid #06b6d4;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #06b6d4;
    color: #111827;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============== NAVIGATION ============== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    z-index: 1000;
    padding: 0.5rem 0;

}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.brand-image {
    width: 2rem;
    height: 1rem;
    border-radius: 50%;
    object-fit: cover;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.3s ease;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: #06b6d4;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* ============== HERO SECTION ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #1f2937, #581c87);
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-background.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #06b6d4;
    border-radius: 1rem;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.25rem;
    height: 0.75rem;
    background: #06b6d4;
    border-radius: 0.125rem;
    animation: scroll 2s infinite;
}

/* ============== STATS SECTION ============== */
.stats-section {
    padding: 5rem 0;
    background: #1f2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #374151;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-weight: 500;
}

/* ============== ABOUT PREVIEW ============== */
.about-preview {
    padding: 5rem 0;
    background: #111827;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #1f2937;
    border-radius: 0.5rem;
}

.feature-icon {
    color: #06b6d4;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;

}

.floating-image,
.floating-image-delay {
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    width: 450px;
    height: 300px;
}

.floating-image:hover,
.floating-image-delay:hover {
    transform: scale(1.05);
}

.floating-image-delay {
    margin-top: 2rem;
}

/* ============== SERVICES PREVIEW ============== */
.services-preview {
    padding: 5rem 0;
    background: #1f2937;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #374151;
    padding: 2rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    border: 1px solid #4b5563;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon.primary {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-icon.secondary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon.accent {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.service-pricing .price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #06b6d4;
}

/* ============== SERVICES DETAIL ============== */
.services-detail {
    padding: 5rem 0;
    background: #111827;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: white;
}

.service-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
}

/* ============== GALLERY PREVIEW ============== */
.gallery-preview {
    padding: 5rem 0;
    background: #111827;
}

.transformations-slider {
    max-width: 40rem;
    margin: 0 auto;
}

.transformation-card {
    background: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.before-after {
    display: flex;
    height: 20rem;
}

.before-image,
.after-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.before-image img,
.after-image img {
    width: 182px;
    height: 293px;
    object-fit: cover;
}

.label {
    position: absolute;
    bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(241, 241, 241);
}

.label.before {
    right: 0.5rem;
    background: #ef4444;
}

.label.after {
    right: 0.5rem;
    background: #10b981;
}

.transformation-info {
    padding: 1.5rem;
}

.transformation-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.transformation-info .result {
    color: #10b981;
    font-weight: 600;
}

.transformation-info .program {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ============== TRANSFORMATIONS SECTION ============== */
.transformations-section {
    padding: 5rem 0;
    background: #111827;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transformation-images {
    height: 16rem;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

/* ============== FACILITY SECTION ============== */
.facility-section {
    padding: 5rem 0;
    background: #1f2937;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-card {
    background: #374151;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.facility-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.facility-info {
    padding: 1.5rem;
}

.facility-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.facility-info p {
    color: #d1d5db;
}

/* ============== PRICING SECTION ============== */
.pricing-section {
    padding: 5rem 0;
    background: #111827;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #1f2937;
    border-radius: 0.5rem;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #374151;
}

.pricing-card.popular {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.pricing-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #06b6d4;
}

.pricing-price .period {
    color: #9ca3af;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ============== COMPARISON SECTION ============== */
.comparison-section {
    padding: 5rem 0;
    background: #1f2937;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: #374151;
    border-radius: 0.5rem;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #4b5563;
}

.comparison-table th {
    background: #4b5563;
    color: white;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: white;
}

.comparison-table .check {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: #6b7280;
    font-size: 1.25rem;
}

/* ============== TESTIMONIALS SECTION ============== */
.testimonials-section {
    padding: 5rem 0;
    background: #111827;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #d1d5db;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-result {
    text-align: right;
}

.result-badge {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============== VIDEO TESTIMONIALS ============== */
.video-testimonials {
    padding: 5rem 0;
    background: #1f2937;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background: #374151;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-button {
    opacity: 1;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* ============== TESTIMONIAL STATS ============== */
.testimonial-stats {
    padding: 5rem 0;
    background: #111827;
}

/* ============== BLOG SECTION ============== */
.blog-section {
    padding: 5rem 0;
    background: #111827;
}

.blog-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 24rem;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.search-box svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.blog-controls select {
    padding: 0.75rem 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    min-width: 12rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #1f2937;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.blog-category.bg-green-500 {
    background: #10b981;
}

.blog-category.bg-blue-500 {
    background: #3b82f6;
}

.blog-category.bg-purple-500 {
    background: #8b5cf6;
}

.blog-category.bg-orange-500 {
    background: #f59e0b;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #06b6d4;
}

.blog-excerpt {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-author,
.blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-time {
    color: #06b6d4;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 5rem 0;
}

.no-results-content {
    max-width: 24rem;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #d1d5db;
}

/* ============== NEWSLETTER SECTION ============== */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.newsletter-content .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 24rem;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    min-width: 16rem;
}

.newsletter-input:focus {
    outline: none;
    range: 2px;
    border-color: white;
}

/* ============== CONTACT SECTION ============== */
.contact-info-section {
    padding: 5rem 0;
    background: #111827;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background: #1f2937;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.contact-icon.primary {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.contact-icon.secondary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-icon.accent {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-info-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.contact-form-section {
    padding: 5rem 0;
    background: #1f2937;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form-container .section-subtitle {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-additional h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-additional .section-subtitle {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.map-container {
    margin-bottom: 2rem;
}

.map-placeholder {
    background: #374151;
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    color: #d1d5db;
}

.map-placeholder svg {
    color: #06b6d4;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-section {
    margin-bottom: 2rem;
}

.social-section h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.social-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.social-section .social-links {
    display: flex;
    gap: 0.5rem;
}

.social-section .social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.social-section .social-link:hover {
    background: #06b6d4;
    color: white;
}

.quick-contact {
    background: #374151;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.quick-contact h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.quick-contact-items {
    margin-bottom: 1.5rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.quick-contact-item svg {
    color: #06b6d4;
}

/* ============== FAQ SECTION ============== */
.faq-section {
    padding: 5rem 0;
    background: #111827;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.faq-item h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #d1d5db;
    line-height: 1.6;
}

/* ============== SCHEDULE SECTION ============== */
.schedule-section {
    padding: 5rem 0;
    background: #111827;
}

.schedule-controls {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.day-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    flex: 1;
}

.day-btn {
    padding: 0.75rem 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: #d1d5db;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-btn:hover,
.day-btn.active {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
}

.filter-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 12rem;
}

.filter-selector label {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.875rem;
}

.filter-selector select {
    padding: 0.75rem 1rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background: #1f2937;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid #374151;
}

.class-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.class-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06b6d4;
    font-weight: 500;
}

.class-type {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.class-type.bg-red-500 {
    background: #ef4444;
}

.class-type.bg-blue-500 {
    background: #3b82f6;
}

.class-type.bg-green-500 {
    background: #10b981;
}

.class-type.bg-orange-500 {
    background: #f59e0b;
}

.class-type.bg-purple-500 {
    background: #8b5cf6;
}

.class-name {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.class-trainer {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.class-spots {
    margin-bottom: 1.5rem;
}

.spots-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.spots-bar {
    width: 100%;
    height: 0.5rem;
    background: #374151;
    border-radius: 0.25rem;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 0.25rem;
    transition: width 0.3s ease;
}

.btn-book {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.btn-book.disabled {
    background: #4b5563;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============== CTA SECTION ============== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #638eced0, #ae4cd4cb);
}

.cta-content {
    text-align: center;
}

.cta-content {
     color: white;
    background: none;

    -webkit-text-fill-color: white;
}
.section-title {
    color: white;
    background: none;
    text-align: center;

    -webkit-text-fill-color: white;
}

.cta-content .section-subtitle {
    color: rgba(27, 8, 112, 0.548);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: rgb(95, 62, 114);
    color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: #071f50;
    color: #36008d;
}

.cta-buttons .btn-secondary {
    border-color: rgb(255, 255, 255);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgb(79, 216, 209);
    color: #8b5cf6;
}

/* ============== PAGE CONTENT ============== */
.page-content {
    padding-top: 5rem;
}

.page-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #111827, #1f2937, #581c87);
    text-align: center;
}

/* ============== STORY SECTION ============== */
.story-section {
    padding: 5rem 0;
    background: #111827;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-paragraphs p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ============== VALUES SECTION ============== */
.values-section {
    padding: 5rem 0;
    background: #1f2937;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #374151;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.value-card p {
    color: #d1d5db;
}

/* ============== TEAM SECTION ============== */
.team-section {
    padding: 5rem 0;
    background: #111827;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #1f2937;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #06b6d4;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.member-role {
    color: #06b6d4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* ============== FOOTER ============== */
.footer {
    background: #1f2937;
    border-top: 1px solid #374151;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
}

.footer-description {
    color: #d1d5db;
    max-width: 24rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #06b6d4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
}

.contact-item svg {
    color: #06b6d4;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* ============== FLOATING ELEMENTS ============== */
.floating-book-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-book-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.6);
}

/* ============== CHAT WIDGET ============== */
.chat-widget {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 20rem;
    background: #1f2937;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.chat-avatar {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.chat-info {
    flex: 1;
}

.chat-name {
    color: white;
    font-weight: 600;
    display: block;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.chat-toggle {
    color: white;
    transition: transform 0.3s ease;
}

.chat-body {
    height: 24rem;
    display: flex;
    flex-direction: column;
    display: none;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bot-message .message-content {
    background: #374151;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: white;
    max-width: 80%;
}

.user-message .message-content {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: white;
    max-width: 80%;
    margin-left: auto;
}

.message-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #374151;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    background: #374151;
    border: none;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.875rem;
}

.chat-input input:focus {
    outline: none;
    range: 2px;
    border-color: #06b6d4;
}

.chat-send-btn {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 0.25rem;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.05);
}

/* ============== MODAL ============== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1f2937;
    border-radius: 0.5rem;
    max-width: 32rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    padding: 1.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
    position: relative;
}

.modal-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.9);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============== FORMS ============== */
.booking-form {
    padding: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #d1d5db;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    color: white;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

/* ============== ANIMATIONS ============== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0.75rem);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ============== UTILITY CLASSES ============== */
.text-center {
    text-align: center;
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* ============== RESPONSIVE DESIGN ============== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #111827;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid #374151;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .about-content,
    .story-content,
    .service-detail-item,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .chat-widget {
        width: calc(100vw - 3rem);
        left: 1.5rem;
        right: 1.5rem;
    }

    .cta-buttons,
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .blog-controls {
        flex-direction: column;
    }

    .search-box {
        max-width: none;
    }

    .schedule-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .day-selector {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .floating-book-btn {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-widget {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
    }

    .day-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============== SCROLLBAR STYLING ============== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #06b6d4, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0891b2, #7c3aed);
}

/* ============== SELECTION STYLING ============== */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

/* ============== PARTICLES EFFECT ============== */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #06b6d4, #8b5cf6, #10b981);
    border-radius: 50%;
    animation: floatingParticle 6s infinite ease-in-out;
}

@keyframes floatingParticle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}