/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: hsl(42, 28%, 88%);
    background-color: hsl(220, 15%, 8%);
    overflow-x: hidden;
}

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

/* CSS Variables */
:root {
    /* Dark fitness theme with electric accents */
    --background: hsl(220, 15%, 8%);
    --foreground: hsl(42, 28%, 88%);
    --card: hsl(220, 15%, 12%);
    --card-foreground: hsl(42, 28%, 88%);
    --muted: hsl(220, 15%, 15%);
    --muted-foreground: hsl(220, 8%, 65%);
    --border: hsl(220, 15%, 20%);
    
    /* Custom fitness theme colors */
    --electric: hsl(15, 100%, 60%);
    --electric-glow: hsl(220, 65%, 45%);
    --dark-surface: hsl(220, 15%, 10%);
    --darker-surface: hsl(220, 20%, 6%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(15, 100%, 60%), hsl(220, 65%, 45%));
    --gradient-dark: linear-gradient(135deg, hsl(220, 20%, 6%), hsl(220, 15%, 10%));
    --gradient-card: linear-gradient(145deg, hsl(220, 15%, 12%), hsl(220, 15%, 15%));
    
    /* Shadows */
    --shadow-electric: 0 0 30px hsl(15, 100%, 60%, 0.3);
    --shadow-glow: 0 10px 40px hsl(15, 100%, 60%, 0.2);
    --shadow-card: 0 10px 30px hsl(220, 20%, 4%, 0.4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: hsla(220, 15%, 8%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 3rem;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.desktop-menu {
    display: none;
}

.menu-items {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-left: 2.5rem;
}

.menu-link {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.menu-link:hover {
    color: var(--electric);
}

.mobile-menu-button {
    display: block;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.menu-toggle:hover {
    color: var(--electric);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: block;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-menu-content {
    padding: 0.5rem 0.5rem 0.75rem;
    background: hsla(220, 15%, 8%, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-link {
    display: block;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
}

.mobile-menu-link:hover {
    color: var(--electric);
    background: hsla(15, 100%, 60%, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    padding-top: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 4rem);
}

.hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.title-line {
    display: block;
}

.electric-text {
    color: var(--electric);
}

.subtitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--muted-foreground);
}

.hero-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    text-align: center;
}

.highlight-text {
    color: var(--foreground);
    font-weight: 600;
}

.hidden-mobile {
    display: none;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.hero-image-container {
    order: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-glow);
    max-width: 20rem;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}

.decorative-element {
    position: absolute;
    background: var(--electric);
    border-radius: 50%;
    blur: 0.5rem;
    opacity: 0.5;
    animation: pulse-glow 2s ease-in-out infinite;
}

.decorative-1 {
    top: -1.5rem;
    left: -1.5rem;
    width: 3rem;
    height: 3rem;
    display: none;
}

.decorative-2 {
    bottom: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background: var(--electric-glow);
    animation-delay: 0.5s;
    display: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    blur: 2rem;
    animation: float 3s ease-in-out infinite;
    display: none;
}

.floating-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: hsla(15, 100%, 60%, 0.2);
}

.floating-2 {
    bottom: 10rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: hsla(220, 65%, 45%, 0.1);
    animation-delay: 1s;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero:hover {
    box-shadow: var(--shadow-electric);
    transform: translateY(-2px);
}

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

.btn-outline-electric:hover {
    background: var(--electric);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-electric {
    background: var(--electric);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-electric:hover {
    background: hsl(15, 100%, 55%);
    box-shadow: var(--shadow-electric);
    transform: translateY(-2px);
}

.btn-program {
    background: var(--card);
    color: var(--foreground);
    border: 1px solid var(--border);
    width: 100%;
    margin-top: 1rem;
}

.btn-program:hover {
    background: var(--electric);
    color: white;
    border-color: var(--electric);
}

.btn-program-popular {
    background: var(--electric);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-program-popular:hover {
    background: hsl(15, 100%, 55%);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.title-with-emoji {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-emoji {
    font-size: 3.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--foreground);
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

.bold {
    font-weight: 700;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--gradient-card);
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.content-space {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.feature-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.image-column {
    position: relative;
}

.trainer-image-container {
    aspect-ratio: 1;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    border: 2px solid hsla(15, 100%, 60%, 0.2);
}

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

.trainer-decorative-1 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--electric);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse-glow 2s ease-in-out infinite;
}

.trainer-decorative-2 {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background: var(--electric-glow);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-glow 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Personalized Section */
.personalized-section {
    padding: 5rem 0;
    background: var(--darker-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-item {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow-glow);
}

.feature-content {
    text-align: center;
}

.feature-emoji {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-emoji {
    transform: scale(1.1);
}

.feature-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.adaptation-text {
    text-align: center;
    margin-bottom: 3rem;
}

.adaptation-description {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.transformation-section {
    position: relative;
}

.transformation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.transformation-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.transformation-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.transformation-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 2px solid hsla(15, 100%, 60%, 0.2);
}

.transformation-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.transformation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 15%, 8%, 0.2), transparent);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.features-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card-hover {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card-hover:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-0.5rem);
}

.feature-card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-emoji-large {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-card-hover:hover .feature-emoji-large {
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.feature-card-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-glow);
    border: 1px solid hsla(15, 100%, 60%, 0.2);
    max-width: 64rem;
    margin: 0 auto;
}

.cta-emoji {
    font-size: 3.75rem;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Programs Section */
.programs-section {
    padding: 5rem 0;
    background: var(--card);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.program-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 2px solid;
    transition: all 0.3s ease;
    background: var(--card);
}

.program-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-0.5rem);
}

.program-card.popular {
    border-color: var(--electric);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.program-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-emoji {
    font-size: 3.125rem;
    transition: transform 0.3s ease;
}

.program-card:hover .program-emoji {
    transform: scale(1.1);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.program-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.program-pricing {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 1rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric);
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.program-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1rem 0;
}

.program-features li {
    padding: 0.25rem 0;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.program-card-red { border-color: hsla(0, 84%, 60%, 0.3); }
.program-card-blue { border-color: hsla(217, 91%, 60%, 0.3); }
.program-card-electric { border-color: hsla(15, 100%, 60%, 0.3); }
.program-card-green { border-color: hsla(142, 71%, 45%, 0.3); }
.program-card-pink { border-color: hsla(330, 81%, 60%, 0.3); }
.program-card-yellow { border-color: hsla(45, 93%, 47%, 0.3); }

/* Additional Services */
.additional-services {
    background: var(--darker-surface);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.services-description {
    color: var(--muted-foreground);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.service-info h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.service-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

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

.service-price .price {
    font-weight: 700;
    color: var(--electric);
    font-size: 1rem;
}

.service-price .price-period {
    color: var(--muted-foreground);
    font-size: 0.75rem;
}

.services-footer {
    text-align: center;
}

.services-note {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Community Section */
.community-section {
    padding: 5rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.floating-bg-community-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: hsla(15, 100%, 60%, 0.1);
    border-radius: 50%;
    blur: 3rem;
    animation: float 3s ease-in-out infinite;
}

.floating-bg-community-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 15rem;
    height: 15rem;
    background: hsla(220, 65%, 45%, 0.05);
    border-radius: 50%;
    blur: 3rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.community-values {
    margin-bottom: 4rem;
}

.value-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-emoji {
    font-size: 1.875rem;
}

.value-description {
    color: var(--muted-foreground);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--darker-surface);
}

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

.contact-form-container {
    max-width: 32rem;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border);
    padding: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    display: flex;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid var(--border);
    background: var(--background);
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--electric);
    box-shadow: 0 0 0 2px hsla(15, 100%, 60%, 0.2);
}

.form-textarea {
    min-height: 7.5rem;
    resize: vertical;
}

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

.contact-info {
    display: flex;
    justify-content: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border-radius: 50%;
    border: 1px solid var(--border);
}

.contact-text h4 {
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: var(--darker-surface);
    border-top: 1px solid var(--border);
}

.footer-content {
    padding: 3rem 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.footer-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-align: center;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 0%, 0.5);
    backdrop-filter: blur(4px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 28rem;
    margin: 1rem;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.modal-icon {
    font-size: 1.5rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.modal-content p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-glow);
    }
    50% {
        box-shadow: var(--shadow-electric);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.btn-text {
    display: block;
}

.btn-loading {
    display: none;
}

.btn:disabled .btn-text {
    display: none;
}

.btn:disabled .btn-loading {
    display: block;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hidden-mobile {
        display: block;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        width: auto;
    }

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

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

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

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

@media (min-width: 768px) {
    .desktop-menu {
        display: block;
    }

    .mobile-menu-button {
        display: none;
    }

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

    .hero-content {
        order: 1;
    }

    .hero-image-container {
        order: 2;
    }

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

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

    .subtitle {
        justify-content: flex-start;
    }

    .main-title {
        font-size: 3.75rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

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

    .section-title {
        font-size: 3rem;
    }

    .decorative-1,
    .decorative-2 {
        display: block;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .floating-element {
        display: block;
    }

    .hero-grid {
        gap: 3rem;
    }

    .main-title {
        font-size: 4.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
        gap: 1rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

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

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

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

    .hero-image-wrapper {
        max-width: none;
    }

    .hero-image {
        aspect-ratio: auto;
    }

    .contact-details {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}