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

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

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    min-height: 80px;
    padding: 1.5rem 0;
}

.navbar {
    padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  min-height: 70px;
}

.logo {
  flex-shrink: 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4f4f4;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    position: absolute;
    left: 25px;
    top: 10px;
}

.nav-menu {
  display: flex;
  gap: 1.2rem;
  flex: 1;
  justify-content: center;
  list-style: none;
  margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem !important;
    transition: color 0.3s ease;
    padding: 0.32em 1.2em;
}

.nav-menu a:hover {
    color: #9ca3af;
}

.nav-menu a.active {
  background: none;
  color: #111;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: color 0.2s;
  position: relative;
  font-weight: 900;
}

.nav-menu a.active::after {
  display: none;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 10px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('treadmill_running.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.hero-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
    position: relative;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title::after {}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-subtitle:first-of-type {
    font-size: 2.2rem;
    color: white;
    font-weight: 400;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: flex-start;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.2);
}

.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:active {
    transform: translateY(-1px);
}

.btn-primary {
    background: #9ca3af;
    color: white;
    border: 2px solid #9ca3af;
}

.btn-primary:hover {
    background: #6b7280;
    border-color: #6b7280;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(156, 163, 175, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #9ca3af;
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}
.btn-secondary:hover {
  background: #9ca3af;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(156, 163, 175, 0.4);
}
.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Force features grid to 4 columns on desktop */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Center 3 cards when there are only 3 feature cards */
.features-grid.three-cards {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid.three-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid.three-cards {
    grid-template-columns: 1fr;
  }
}

.feature-card {
    background: white;
    padding: 1.2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Image Content Section */
.image-content-section {
    padding: 40px 0;
    background: #f8fafc;
}

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

.image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.content-side {
    padding: 2rem 0;
}

.content-header {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1e293b;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.content-copy {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
}

/* Reverse layout for second image-content section */
.image-content-section.reverse {
    background: white;
}

/* About Section */
.about-section {
    padding: 50px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

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

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section h4 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

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

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

.footer-section a:hover {
    color: #f4f4f4;
}

.footer-section p:has(br) {
    text-indent: -70px;
    padding-left: 70px;
}

.footer-section p:has(a[href^="mailto:"]) {
    text-indent: -70px;
    padding-left: 70px;
}

.footer-email {
    text-indent: -70px;
    padding-left: 70px;
}

.social-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.instagram {
    color: #e4405f;
}

.social-icon.maps {
    color: #4285f4;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

/* Fix form label overlay issue */
.form-group input,
.form-group select,
.form-group textarea {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.form-group label {
    background: white;
    padding: 0 0.3rem;
    z-index: 1;
}

/* Mobile Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly buttons */
.btn {
    min-height: 44px;
    touch-action: manipulation;
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

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

/* About Page Specific Styles */
.about-hero {
    background: #ffffff;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1e293b;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
    padding: 120px 0 10px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(30, 64, 175, 0.01) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%233b82f6" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.about-hero .hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.about-hero .hero-text {
    padding: 0;
}

.about-hero .hero-title {
    animation: fadeInUp 1.4s ease-out 0.2s both;
}

.about-hero .hero-subtitle {
    animation: fadeInUp 1.4s ease-out 0.4s both;
}

.about-hero .hero-cta {
    animation: fadeInUp 1.4s ease-out 0.6s both;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero .hero-cta .btn {
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-hero .hero-cta .btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.about-hero .hero-cta .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.about-hero .hero-cta .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.about-hero .hero-cta .btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}



.about-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.about-hero .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.about-hero .hero-visual {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid #475569;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-hero .hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
}

.about-hero .hero-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #e2e8f0;
}

.about-hero .hero-visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.about-hero .hero-visual-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #cbd5e0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-info a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 500;
}

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

.contact-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-details p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4f4f4;
    box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #1e293b;
    background: white;
    padding: 0 0.3rem;
}

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

.form-group textarea + label {
    top: 16px;
    transform: none;
}

.form-group textarea:focus + label {
    top: 0;
    font-size: 0.875rem;
    color: #f4f4f4;
}

/* Mobile Styles - Simplified and Clean */
@media (max-width: 768px) {
    /* Basic mobile setup */
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .header {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 45px;
        left: 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem !important;
        padding: 0.75rem 1rem;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 140px 0 60px;
        min-height: 70vh;
        text-align: center;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle:first-of-type {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-social-icons {
        position: static;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Content Sections */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .content-header {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-copy {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
        text-align: center;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Image Content Sections */
    .image-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .large-image {
        height: 300px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    /* Two Column Sections */
    .column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .column-image {
        height: 250px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .column-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .column-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Forms */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    /* About Page */
    .about-hero {
        padding: 140px 0 60px;
        min-height: 60vh;
        margin-top: 70px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Map */
    .map-container iframe {
        height: 400px;
        border-radius: 12px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo img {
        height: 40px;
        left: 15px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 120px 0 40px;
        min-height: 60vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-subtitle:first-of-type {
        font-size: 1.6rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 0.875rem 1.5rem;
    }
    
    /* Content */
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-header {
        font-size: 1.6rem;
    }
    
    .content-copy {
        font-size: 1rem;
    }
    
    /* Features */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    /* Images */
    .large-image {
        height: 250px;
    }
    
    .column-image {
        height: 200px;
    }
    
    /* Forms */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    /* About Page */
    .about-hero {
        padding: 120px 0 40px;
        margin-top: 70px;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
    }
    
    /* Map */
    .map-container iframe {
        height: 350px;
    }
}

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

.hero-content,
.feature-card,
.about-text {
    animation: fadeInUp 0.5s ease-out;
}

.about-hero .hero-title,
.hero-title {
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.about-hero .hero-subtitle,
.hero-subtitle {
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.about-hero .hero-cta,
.hero-cta {
    animation: fadeInUp 0.7s ease-out 0.3s both;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Full Page Section */
.full-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 80px 0;
}

.content-box {
    max-width: 800px;
    text-align: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.content-box p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-box p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #1e293b;
}

/* Responsive Design for Full Page Section */
@media (max-width: 768px) {
    .full-page-section {
        padding: 60px 0;
    }
    
    .content-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .content-box h2 {
        font-size: 2rem;
    }
    
    .content-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-box {
        padding: 1.5rem;
    }
    
    .content-box h2 {
        font-size: 1.8rem;
    }
}

/* Two Column Section */
.two-column-section {
    padding: 80px 0;
    background: white;
}

.column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

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

.column-image {
    width: 100%;
    height: 300px;
    background: #f8f8f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    border: 2px solid #e5e7eb !important;
    border-radius: 16px !important;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.column-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(0.9);
}

/* First column image zoom and positioning */
.column-image img[src="workout gear.jfif"] {
    transform: scale(1.5) !important;
    object-position: 42% center !important;
}

.workout-gear-image {
    transform: scale(1.5) !important;
    object-position: 42% center !important;
}

.column-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
}

.column-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Responsive Design for Two Column Section */
@media (max-width: 768px) {
    .column-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .column-image {
        height: 250px;
    }
    
    .column-content h3 {
        font-size: 1.5rem;
    }
    
    .column-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .two-column-section {
        padding: 60px 0;
    }
    
    .column-grid {
        gap: 2rem;
    }
    
    .column-image {
        height: 200px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f4f4f4 0%, #e0e0e0 100%);
    text-align: center;
}

.contact-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #f4f4f4;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-details p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-details a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: #f4f4f4;
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4f4f4;
    box-shadow: 0 0 0 3px rgba(244, 244, 244, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #1e293b;
    background: white;
    padding: 0 0.3rem;
}

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

.map-section {
    padding: 60px 0;
    background: #f8fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 40px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* Two Row Section */
.two-row-section {
    padding: 80px 0;
    background: white;
}

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

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

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

.header-image img {
    max-width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.centered-copy h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.centered-copy h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.centered-copy p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design for Two Row Section */
@media (max-width: 768px) {
    .two-row-section {
        padding: 60px 0;
    }
    
    .header-image {
        margin-bottom: 2rem;
    }
    
    .centered-copy h1 {
        font-size: 2rem;
    }
    
    .centered-copy h2 {
        font-size: 1.3rem;
    }
    
    .centered-copy p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .two-row-section {
        padding: 40px 0;
    }
    
    .header-image img {
        height: 200px;
    }
    
    .centered-copy h1 {
        font-size: 1.8rem;
    }
    
    .centered-copy h2 {
        font-size: 1.1rem;
    }
}

/* Final Two Column Section */
.final-two-column-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.final-column-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #6b7280;
    line-height: 1.1;
    text-align: left;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

.final-column-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.final-column-image {
    text-align: center;
}

.final-column-image img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Final Two Column Section */
@media (max-width: 768px) {
    .final-two-column-section {
        padding: 60px 0;
    }
    
    .final-column-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .final-column-content h2 {
        font-size: 2rem;
    }
    
    .final-column-content p {
        font-size: 1rem;
    }
    
    .final-column-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .final-two-column-section {
        padding: 40px 0;
    }
    
    .final-column-grid {
        gap: 2rem;
    }
    
    .final-column-content h2 {
        font-size: 1.8rem;
    }
    
    .final-column-image img {
        height: 250px;
    }
} 

/* Force smaller hero subtitle for better fit on all devices */
.hero-content .hero-subtitle {
  font-size: 1.2rem !important;
}
@media (max-width: 768px) {
  .hero-content .hero-subtitle {
    font-size: 1rem !important;
  }
} 

/* Force slightly larger hero subtitle for best fit on two lines */
.hero-content .hero-subtitle {
  font-size: 1.35rem !important;
}
@media (max-width: 768px) {
  .hero-content .hero-subtitle {
    font-size: 1.15rem !important;
  }
} 

/* BOOK TODAY button styles - black, white all caps, squared edges */
.btn-book-today {
  background: #111;
  color: #fff !important;
  font-weight: 700;
  padding: 0.7em 1.6em;
  border-radius: 0;
  font-size: 1.1rem;
  margin-left: 2rem;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: inline-block;
  border: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-book-today:hover, .btn-book-today:focus {
  background: #333;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-decoration: none;
}
@media (max-width: 900px) {
  .btn-book-today {
    margin: 1.5rem 0 0 0;
    width: 90%;
    display: block;
    text-align: center;
  }
} 

@media (max-width: 900px) {
  .btn-book-today {
    display: none !important;
  }
} 

@media (max-width: 900px) {
  .btn-book-today.desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .mobile-only .btn-book-today {
    display: block;
    width: 100%;
    margin: 1.5rem 0 0 0;
    text-align: center;
  }
}
@media (min-width: 901px) {
  .mobile-only {
    display: none !important;
  }
}

@font-face {
  font-family: 'Chuterolk';
  src: url('fonts/CHUTEROLK.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.btn-book-today {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  font-family: 'Chuterolk', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 0.5rem;
} 

@font-face {
  font-family: 'Eastman Trial';
  src: url('fonts/EastmanTrial-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Eastman Trial Bold';
  src: url('fonts/EastmanTrial-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.nav-menu a {
  font-family: 'Eastman Trial', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.93rem !important;
  font-weight: normal;
  padding: 0.32em 1.2em;
}

.nav-menu a.active {
  font-family: 'Eastman Trial Bold', Arial, sans-serif;
  color: #111;
  background: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: color 0.2s;
  position: relative;
  font-weight: normal;
}

/* Services Page Styles */
.services-section {
  background: #f8fafc;
  padding: 30px 0 120px;
  margin-bottom: 100px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.service-group {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,41,59,0.08), 0 1.5px 6px rgba(30,41,59,0.04);
  border: 1.5px solid #e5e7eb;
  padding: 2.2rem 2rem 1.5rem 2rem;
  max-width: 370px;
  min-width: 290px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-group:hover {
  box-shadow: 0 8px 32px rgba(30,41,59,0.13), 0 2px 8px rgba(30,41,59,0.07);
  border-color: #cbd5e1;
}

.service-group h2 {
  font-family: 'Eastman Trial', Arial, sans-serif;
  font-size: 1.3rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-group ul {
  margin: 0 0 1.1rem 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
}

.service-group li {
  font-size: 1.08rem;
  color: #1e293b;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.service-group .save {
  color: #059669;
  font-weight: 600;
  font-size: 0.98em;
  margin-left: 0.3em;
}

.service-desc {
  font-size: 0.98rem;
  color: #64748b;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .service-group {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
  }
} 

.services-hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  padding: 110px 0 60px;
  min-height: 55vh;
  text-align: center;
  border-bottom: 1px solid #e0e7ef;
}
.services-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.services-hero .hero-title {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.services-hero .hero-subtitle {
  font-size: 1.5rem;
  color: #2563eb;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2px;
}
.services-hero .hero-intro {
  font-size: 1.08rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}
@media (max-width: 768px) {
  .services-hero {
    padding: 80px 0 40px;
  }
  .services-hero .hero-title {
    font-size: 2.1rem;
  }
  .services-hero .hero-subtitle {
    font-size: 1.1rem;
  }
} 

.signature-packages {
  background: linear-gradient(135deg, #f8fafc 60%, #f1f5f9 100%);
  border: 2.5px solid #a3a3a3;
  box-shadow: 0 6px 32px rgba(30,41,59,0.13), 0 2px 8px rgba(30,41,59,0.07);
  position: relative;
}
.signature-packages h2 {
  color: #1e293b;
  letter-spacing: 1.2px;
}
.signature-packages ul li strong {
  color: #2563eb;
  font-weight: 700;
}
.signature-packages .save {
  color: #059669;
  font-weight: 700;
} 

.btn,
.btn-primary {
  background: #2563eb;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(37,99,235,0.10);
  letter-spacing: 0.5px;
}
.btn:hover, .btn:focus, .btn-primary:hover, .btn-primary:focus {
  background: #174bbd;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(37,99,235,0.18);
  text-decoration: none;
} 

.btn-secondary {
  background: transparent;
  color: #9ca3af;
  border: 2px solid #9ca3af;
  box-shadow: 0 4px 15px rgba(156, 163, 175, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.5px;
}
.btn-secondary:hover {
  background: #9ca3af;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(156, 163, 175, 0.4);
}
.btn-secondary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
} 

.boutique-menu-section {
  margin: 64px 0 0 0;
  padding: 0 0 32px 0;
}
.boutique-menu-title {
  font-family: 'Eastman Trial', Arial, sans-serif;
  font-size: 1.35rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-align: center;
}
.boutique-menu-subtitle {
  font-size: 1.08rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.boutique-menu-table-wrapper {
  overflow-x: auto;
}
.boutique-menu-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.06);
  font-size: 1rem;
  margin: 0 auto;
  min-width: 320px;
  max-width: 900px;
}
.boutique-menu-table th,
.boutique-menu-table td {
  padding: 0.85em 1em;
  text-align: left;
}
.boutique-menu-table th {
  background: #d1d5db;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.01rem;
  border-bottom: 2px solid #e5e7eb;
}
.boutique-menu-table tbody tr:nth-child(even) td {
  background: #e5e7eb !important;
}
.boutique-menu-table td {
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
  font-size: 0.98rem;
}
.boutique-menu-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .boutique-menu-table th, .boutique-menu-table td {
    padding: 0.6em 0.5em;
    font-size: 0.95rem;
  }
  .boutique-menu-title {
    font-size: 1.05rem;
  }
} 

.package-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  justify-content: center;
  justify-items: center;
  margin-top: 1.2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.package-card {
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.06);
  padding: 1.3rem 1.1rem 1.1rem 1.1rem;
  min-width: 200px;
  max-width: 240px;
  min-height: 240px;
  aspect-ratio: 1 / 1;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.package-card:hover {
  box-shadow: 0 6px 24px rgba(30,41,59,0.13), 0 2px 8px rgba(30,41,59,0.07);
  border-color: #cbd5e1;
}
.package-title {
  font-family: 'Eastman Trial', Arial, sans-serif;
  font-size: 1.08rem;
  color: #1e293b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.package-includes {
  font-size: 0.98rem;
  color: #64748b;
  margin-bottom: 0.7rem;
  font-family: 'Inter', sans-serif;
}
.package-price {
  font-size: 1.08rem;
  color: #2563eb;
  font-weight: 700;
  margin-top: auto;
}
.package-price .save {
  color: #059669;
  font-weight: 700;
  font-size: 0.98em;
  margin-left: 0.3em;
}
@media (max-width: 900px) {
  .package-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: center;
  }
  .package-card {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
  }
} 

.image-gallery-section {
  padding: 48px 0 32px 0;
  background: #f8fafc;
}
.image-gallery-section .section-title {
  text-align: center;
  font-size: 2.1rem;
  color: #1e293b;
  font-family: 'Playfair Display', serif;
  margin-bottom: 2rem;
}
.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.carousel-images {
  width: 420px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #e5e7eb;
  box-shadow: 0 2px 12px rgba(30,41,59,0.06);
}
.carousel-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.carousel-image.active {
  display: block;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.carousel-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}
.carousel-btn:hover {
  background: #174bbd;
}
@media (max-width: 600px) {
  .carousel-images {
    width: 95vw;
    height: 200px;
  }
  .carousel {
    gap: 0.5rem;
  }
} 

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 900px;
  padding: 0.5rem 0;
}
.image-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.06);
  background: #e5e7eb;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.image-gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(30,41,59,0.13), 0 2px 8px rgba(30,41,59,0.07);
}
@media (max-width: 600px) {
  .image-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .image-gallery-grid img {
    height: 140px;
  }
} 

.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,41,59,0.85);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gallery-modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30,41,59,0.18);
  background: #fff;
  display: block;
  margin: 0 auto;
}
.gallery-modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10001;
  text-shadow: 0 2px 8px rgba(30,41,59,0.25);
  transition: color 0.2s;
}
.gallery-modal-close:hover {
  color: #2563eb;
}
.gallery-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10001;
  background: rgba(30,41,59,0.25);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.gallery-modal-arrow.left {
  left: 24px;
}
.gallery-modal-arrow.right {
  right: 24px;
}
.gallery-modal-arrow:hover {
  background: #2563eb;
  color: #fff;
}
@media (max-width: 600px) {
  .gallery-modal-content {
    max-width: 98vw;
    max-height: 60vh;
  }
  .gallery-modal-close {
    top: 12px;
    right: 18px;
    font-size: 2rem;
  }
  .gallery-modal-arrow {
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
  .gallery-modal-arrow.left {
    left: 6px;
  }
  .gallery-modal-arrow.right {
    right: 6px;
  }
} 

body.services-page .about-hero .hero-title {
    margin-top: 2rem;
} 
body.contact-page .about-hero .hero-title {
    margin-top: 1.5rem;
} 
body.schedule-page .about-hero .hero-title {
    margin-top: -2rem;
} 
body.schedule-page .hero-section {
    padding-bottom: 0;
} 

@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    z-index: 999;
  }
  .nav-menu.active {
    display: flex;
    left: 0;
  }
}
@media (min-width: 901px) {
  .hamburger {
    display: none !important;
  }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }
} 

img[src*="PerfCurvePTLogo_crmbk.png"],
.header-image img,
.column-image img {
  border: none !important;
  background: none !important;
}

.header-image, .column-image, .header-image img, .column-image img {
  border: none !important;
  background: none !important;
}

.large-image {
  border: none !important;
  box-shadow: none !important;
}

/* Insurance Carousel Styles */
.insurance-carousel {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: visible;
    margin-top: 15px;
    padding: 0 30px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.carousel-item {
    flex-shrink: 0;
    width: calc(40% - 10px);
    height: 100%;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 8px;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-arrow.left {
    left: 0;
}

.carousel-arrow.right {
    right: 0;
}

@media (max-width: 768px) {
    .insurance-carousel {
        height: 100px;
    }
    
    .carousel-item {
        width: calc(50% - 10px);
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .insurance-carousel {
        height: 80px;
    }
    
    .carousel-item {
        width: calc(100% - 10px);
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* Concierge Wellness Section Styles */
.concierge-wellness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
}

.concierge-wellness-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

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

.concierge-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.concierge-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.concierge-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.wellness-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.wellness-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.price-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
    font-weight: 400;
}

/* Bundle Section Styles */
.bundle-section {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    margin-bottom: 60px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.bundle-header {
    text-align: center;
    margin-bottom: 45px;
}

.bundle-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bundle-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #cbd5e1;
    margin: 0;
    font-weight: 500;
}

.bundle-table-wrapper {
    overflow-x: auto;
}

.bundle-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bundle-table th {
    background: linear-gradient(135deg, #475569, #64748b);
    color: #f8fafc;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.3px;
    border: none;
    position: relative;
    box-shadow: 0 2px 8px rgba(71, 85, 105, 0.2);
}

.bundle-table th:first-child {
    text-align: left;
    border-radius: 8px 0 0 0;
}

.bundle-table th:last-child {
    border-radius: 0 8px 0 0;
}

.bundle-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #475569;
    font-size: 1.05rem;
    background: #334155;
    color: #e2e8f0;
    transition: background-color 0.2s ease;
}

.bundle-table tbody tr:hover {
    background-color: #475569;
}

.bundle-table tbody tr:hover td {
    background-color: #475569;
}

.bundle-price {
    font-weight: 700;
    color: #059669;
    font-size: 1.1rem;
}

.savings {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.05rem;
}

.bundle-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

/* Call to Action Styles */

/* Responsive Design */
@media (max-width: 768px) {
    .concierge-wellness-section {
        padding: 60px 0;
    }
    
    .concierge-header .section-title {
        font-size: 2.2rem;
    }
    
    .wellness-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .wellness-card {
        padding: 30px;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .bundle-section {
        padding: 35px 25px;
    }
    
    .bundle-header h3 {
        font-size: 1.8rem;
    }
    
    .bundle-table th,
    .bundle-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    

}

@media (max-width: 480px) {
    .concierge-wellness-section {
        padding: 40px 0;
    }
    
    .concierge-header .section-title {
        font-size: 1.9rem;
    }
    
    .concierge-subtitle {
        font-size: 1.1rem;
    }
    
    .wellness-card {
        padding: 25px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .price-badge {
        font-size: 1.1rem;
        padding: 8px 14px;
    }
    
    .bundle-section {
        padding: 30px 20px;
    }
    
    .bundle-table th,
    .bundle-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    

}

/* Concierge Physical Therapy Monthly Subscriptions Section */
.concierge-subscription-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
}

.concierge-subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

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

.subscription-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subscription-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.subscription-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 400;
    margin: 0 0 25px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.subscription-intro {
    max-width: 800px;
    margin: 0 auto;
}

.subscription-intro p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.subscription-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.subscription-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.4);
    position: relative;
}

.subscription-card.featured::before {
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}



.subscription-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.4);
}

.subscription-card.featured:hover {
    transform: translateY(-6px) scale(1.02);
}

.subscription-header-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.subscription-header-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.subscription-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    margin-left: 8px;
    display: inline-block;
    transform: scale(1.1);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscription-price {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscription-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.subscription-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subscription-features li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.subscription-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.1rem;
}

.membership-details {
    background: linear-gradient(145deg, #334155 0%, #475569 100%);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0.9;
}

.membership-header {
    text-align: center;
    margin-bottom: 25px;
}

.membership-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #cbd5e1;
    margin: 0;
    text-shadow: none;
}

.membership-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 400;
}

.membership-content p:last-child {
    margin-bottom: 0;
}

.subscription-cta {
    text-align: center;
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 55px 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.subscription-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.subscription-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.7;
}

.subscription-cta .btn {
    font-size: 1.15rem;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Subscription Section */
@media (max-width: 768px) {
    .concierge-subscription-section {
        padding: 60px 0;
    }
    
    .subscription-header .section-title {
        font-size: 2.2rem;
    }
    
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .subscription-card {
        padding: 30px;
    }
    

    
    .subscription-header-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .subscription-header-card h3 {
        font-size: 1.3rem;
    }
    
    .subscription-price {
        font-size: 1.3rem;
        padding: 10px 16px;
    }
    
    .membership-details {
        padding: 35px 25px;
    }
    
    .membership-header h3 {
        font-size: 1.8rem;
    }
    
    .subscription-cta {
        padding: 45px 25px;
    }
    
    .subscription-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .concierge-subscription-section {
        padding: 40px 0;
    }
    
    .subscription-header .section-title {
        font-size: 1.9rem;
    }
    
    .subscription-subtitle {
        font-size: 1.1rem;
    }
    
    .subscription-intro p {
        font-size: 1rem;
    }
    
    .subscription-card {
        padding: 25px;
    }
    
    .subscription-header-card h3 {
        font-size: 1.2rem;
    }
    
    .subscription-price {
        font-size: 1.2rem;
        padding: 8px 14px;
    }
    
    .subscription-features li {
        font-size: 0.95rem;
    }
    
    .membership-details {
        padding: 30px 20px;
    }
    
    .membership-header h3 {
        font-size: 1.5rem;
    }
    
    .membership-content p {
        font-size: 1rem;
    }
    
    .subscription-cta {
        padding: 35px 20px;
    }
    
    .subscription-cta h3 {
        font-size: 1.5rem;
    }
    
    .subscription-cta p {
        font-size: 1.05rem;
    }
}