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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #0090ad, #008ba3);
    color: white;
    border-color: #0090ad;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #007a8f, #006d7a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 144, 173, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-reverse {
    background: #fff;
    color: #006b80;
    border-color: #fff;
    font-weight: 700;
}

.btn-reverse:hover {
    background: #f8f9fa;
    color: #004d59;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    border-color: #f8f9fa;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0090ad;
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a:hover {
    color: #0090ad;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px; /* Account for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 144, 173, 0.3));
    z-index: -1;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

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

.slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.animated-text {
    display: inline-block;
    opacity: 0;
    animation: slideInText 1s ease-out forwards;
}

.animated-text:nth-child(1) { animation-delay: 1s; }
.animated-text:nth-child(2) { animation-delay: 1.3s; }
.animated-text:nth-child(3) { animation-delay: 1.6s; }

.hero-tagline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tagline-item {
    padding: 8px 16px;
    background: rgba(0, 144, 173, 0.1);
    border-left: 3px solid #0090ad;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0090ad;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
}

.tagline-item:nth-child(1) { animation-delay: 2s; }
.tagline-item:nth-child(2) { animation-delay: 2.3s; }
.tagline-item:nth-child(3) { animation-delay: 2.6s; }

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.9s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3.2s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0090ad, #008ba3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.service-link {
    color: #006b80;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #004d59;
}

.services-features {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.feature-text {
    padding-right: 1rem;
}

.feature-text p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.feature-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-description {
    font-size: 1rem;
}

.feature-conclusion {
    font-size: 1rem;
    font-style: italic;
    border-left: 3px solid #006b80;
    padding-left: 1rem;
    margin-left: 1rem;
}

.feature-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.feature-benefits h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #006b80;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid #006b80;
    padding-bottom: 0.5rem;
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.feature-benefits li:hover {
    background-color: #fff;
}

.feature-benefits li i {
    color: #006b80;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Legacy styles for backward compatibility */
.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
}

.feature li i {
    color: #006b80;
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Trainer Section */
.trainer-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.trainer-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 800px;
    margin: 0 auto;
}

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

.trainer-info {
    padding: 3rem;
}

.trainer-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-title {
    color: #006b80;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-credentials {
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.trainer-info p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

/* Owner Quote Callout */
.owner-quote {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #006b80;
    border-radius: 0 15px 15px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owner-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #006b80;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.owner-quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
}

.owner-quote blockquote p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2c2c2c;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
}

.owner-quote cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #006b80;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
}

.safety-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.safety-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0090ad, #008ba3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.safety-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.safety-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.safety-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.safety-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.safety-features li i {
    color: #006b80;
    font-size: 1.2rem;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    text-align: left;
    color: #006b80;
    margin-bottom: 1rem;
}

.location-announcement {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-info p {
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.location-details {
    margin: 2rem 0;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item i {
    color: #006b80;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.location-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-item p {
    margin: 0;
    color: #444;
}

.location-item a {
    color: #006b80;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: #007a8f;
}

.location-map iframe {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0090ad, #008ba3);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    color: #006b80;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    margin: 0;
    color: #444;
}

.contact-item a {
    color: #006b80;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #004d59;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0090ad;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 144, 173, 0.1);
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-brand p:first-of-type {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p:last-of-type {
    color: #0090ad;
    font-weight: 600;
    font-style: italic;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #0090ad;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #0090ad;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0090ad;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0090ad, #008ba3);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 144, 173, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 144, 173, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* AOS Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .brand-text {
        display: none;
    }
    
    .hero {
        height: 50vh;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trainer-card {
        grid-template-columns: 1fr;
    }
    
    .trainer-info {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-text {
        padding-right: 0;
    }
    
    .safety-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 45vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .hero-tagline {
        display: none;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.75rem;
        width: auto;
        min-width: 120px;
        max-width: 140px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .trainer-info,
    .about-text {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .owner-quote {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .owner-quote blockquote p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .owner-quote cite {
        font-size: 0.9rem;
    }
}

/* Extra small devices (under 400px) */
@media (max-width: 400px) {
    .hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 12px;
        font-size: 0.7rem;
        min-width: 100px;
        max-width: 120px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* High Contrast Mode for Accessibility */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .contact-item {
        border: 2px solid #333;
    }
    
    .navbar-menu a::after {
        height: 3px;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Short Viewport Height Adjustments */
@media (max-height: 1000px) {
    .hero {
        height: 70vh;
        min-height: 500px;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-height: 800px) {
    .hero {
        height: 80vh;
        min-height: 450px;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-height: 700px) {
    .brand-text {
        display: none;
    }
    
    .hero {
        height: 90vh;
        min-height: 400px;
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        line-height: 1;
    }
    
    .hero-tagline {
        display: none;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-height: 600px) {
    .hero {
        height: 100vh;
        min-height: 350px;
        padding-top: 80px;
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        line-height: 0.9;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Landscape phones and short-wide screens */
@media (max-height: 500px) and (max-width: 900px) {
    .brand-text {
        display: none;
    }
    
    .hero {
        height: 100vh;
        min-height: 300px;
        padding-top: 70px;
        padding-bottom: 10px;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
        line-height: 0.9;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-tagline {
        display: none;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}
