/* CSS Variables */
:root {
    --primary-red: #ff0000;
    --secondary-red: #cc0000;
    --accent-gold: #ffd700;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --gradient-red: linear-gradient(135deg, #ff0000, #cc0000);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffb300);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-red: 0 5px 20px rgba(255, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--text-light);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

/* Section Tags */
.section-tag {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-text .nxt {
    color: var(--accent-gold);
}

.logo-text .life {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Updated with Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

.hero-slide.image-slide {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(255, 0, 0, 0.1));
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
}

.hero-tagline {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-red);
    background: rgba(255, 0, 0, 0.2);
    color: var(--primary-red);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--primary-red);
    color: var(--text-light);
    transform: scale(1.1);
}

/* About Section - Updated with Background Video */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.about-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.85);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-dark);
}

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

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

.about-text {
    padding: 0 20px;
}

.about-text h2 {
    margin-bottom: 25px;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-gray);
    font-weight: 500;
}

/* Services Section - Updated with Background Video and Glassmorphism */
.services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.services-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-red);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.additional-services {
    text-align: center;
    position: relative;
    z-index: 1;
}

.additional-services h3 {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 2rem;
}

/* Services Cards (Additional Services) */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.services-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.services-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.services-card-icon {
    margin-bottom: 15px;
}

.services-card-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.services-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.services-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Facilities Cards */
.facilities-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-card {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
}

.facility-card:hover::before {
    left: 0;
}

.facility-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.facility-icon {
    margin-bottom: 20px;
}

.facility-icon i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.facility-card h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.facility-card p {
    color: var(--text-gray);
    line-height: 1.5;
}

/* Testimonials Section - Updated with Background Video */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.testimonials-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.9);
    z-index: -1;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials-text {
    margin-bottom: 50px;
}

.testimonials-text h2 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-header {
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
}

.client-details h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.client-role {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.rating {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.rating i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-red);
    background: rgba(255, 0, 0, 0.2);
    color: var(--primary-red);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.testimonial-btn:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

/* Pricing Section - Updated */
.pricing {
    padding: 100px 0;
    background: var(--dark-bg);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--darker-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    flex: 1;
    min-width: 350px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-red);
    border-color: var(--primary-red);
}

.pricing-card.special {
    border: 2px solid var(--accent-gold);
    position: relative;
}

.pricing-card.special::after {
    content: 'BEST VALUE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-body {
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: var(--dark-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: var(--primary-red);
    background: rgba(255, 0, 0, 0.05);
}

.price-item.featured {
    background: var(--primary-red);
    border-color: var(--primary-red);
    position: relative;
    transform: scale(1.02);
}

.price-item.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 2px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
}

.duration {
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.admission {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary-red);
    font-size: 1rem;
    width: 16px;
}

.choose-plan-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    background: var(--gradient-red);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.choose-plan-btn:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Contact Section - Updated */
.contact {
    padding: 100px 0;
    background: var(--darker-bg);
}

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

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--text-light);
    font-size: 1.5rem;
}

.contact-text h3 {
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select option {
    background: var(--darker-bg);
    color: var(--text-light);
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--gradient-red);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.map-container {
    margin-top: 60px;
}

.map-container h3 {
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    height: 450px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h2,
.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section h2 {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.latest-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-item {
    display: flex;
    gap: 15px;
}

.post-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.post-content h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.post-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    color: var(--text-gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.footer-services li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.8rem;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    color: var(--text-gray);
    font-weight: 500;
}

.time {
    color: var(--primary-red);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Typography adjustments */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Logo adjustments */
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-cards {
        grid-template-columns: 1fr;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Hero adjustments */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 6px 20px;
    }
    
    /* Button adjustments */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    /* Service cards */
    .service-card {
        padding: 30px 20px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
    
    /* Pricing cards */
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    /* Contact items */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    /* Social icons */
    .social-icons {
        justify-content: center;
    }
    
    /* Map container */
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Responsive adjustments for pricing */
@media (max-width: 1024px) {
    .pricing-row {
        gap: 30px;
    }
    
    .pricing-card {
        min-width: 300px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 40px;
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-card {
        min-width: 280px;
        max-width: 400px;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
        min-width: 250px;
        width: 95%;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px 15px;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Utility classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-20 {
    margin-top: 20px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-red);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-red);
}