/* 
* Blinkventa - Pilates Studio
* Main Stylesheet
* 
* Colors:
* - Background: ivory (#FDFDFB)
* - Accent: dusty rose (#D8A7B1)
* - Secondary accent: teal (#4DB6AC)
* - Text: dark gray (#424242)
* - Buttons: teal (#4DB6AC)
*
* Fonts:
* - Headings: Cinzel
* - Body: Source Sans Pro
*/

/* ===== RESET & GLOBAL STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #424242;
    background-color: #FDFDFB;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4DB6AC;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #D8A7B1;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 2.2rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: #666;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
}

.primary-btn {
    background-color: #4DB6AC;
    color: white;
}

.primary-btn:hover {
    background-color: #3a9d93;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(77, 182, 172, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: #4DB6AC;
    border: 2px solid #4DB6AC;
}

.secondary-btn:hover {
    background-color: #4DB6AC;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(77, 182, 172, 0.2);
}

.small-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* ===== ICONS ===== */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    vertical-align: middle;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 253, 251, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

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

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

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: #424242;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #D8A7B1;
    transition: width 0.3s ease;
}

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

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

.contact-btn {
    background-color: #4DB6AC;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #3a9d93;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(77, 182, 172, 0.3);
}

.contact-btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #424242;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #424242;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.intro-content {
    max-width: 600px;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.intro-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.intro-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

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

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: #f9f9f7;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-list .icon {
    color: #4DB6AC;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* ===== CLASSES SECTION ===== */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.class-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

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

.class-image {
    height: 320px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.class-content {
    padding: 1.5rem;
}

.class-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.class-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.detail {
    display: flex;
    align-items: center;
}

.detail .icon {
    margin-right: 0.5rem;
    color: #D8A7B1;
}

.classes-cta {
    text-align: center;
    margin-top: 1rem;
}

/* ===== INSTRUCTORS SECTION ===== */
.instructors-section {
    background-color: #f9f9f7;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.instructor-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
}

.instructor-image {
    height: 300px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.instructor-info {
    padding: 1.5rem;
}

.instructor-info h3 {
    margin-bottom: 0.3rem;
}

.instructor-title {
    color: #D8A7B1;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.instructor-bio {
    font-size: 0.95rem;
    color: #555;
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    fill: #4DB6AC;
    margin-bottom: 1.2rem;
}

.benefit-card h3 {
    margin-bottom: 0.8rem;
    color: #333;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background-color: #f9f9f7;
    position: relative;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.review-slide {
    padding: 1rem;
}

.review-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.stars {
    display: flex;
    margin-bottom: 1.5rem;
}

.star {
    width: 20px;
    height: 20px;
    fill: #FFB74D;
    margin-right: 0.3rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.reviewer-title {
    font-size: 0.9rem;
    color: #888;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.review-prev,
.review-next {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #424242;
    transition: all 0.3s ease;
}

.review-prev svg,
.review-next svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.review-prev:hover,
.review-next:hover {
    background-color: #4DB6AC;
    color: white;
}

.review-dots {
    display: flex;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 0.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #4DB6AC;
    transform: scale(1.2);
}

/* ===== SCHEDULE SECTION ===== */
.schedule-tabs {
    margin-top: 2rem;
}

.tab-navigation {
    display: flex;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button.active {
    color: #4DB6AC;
    border-bottom-color: #4DB6AC;
}

.tab-button:hover {
    color: #4DB6AC;
}

.tab-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.schedule-table {
    width: 100%;
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 600;
    color: #D8A7B1;
    display: flex;
    align-items: center;
}

.schedule-class {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-class h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.schedule-class p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.schedule-book {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.schedule-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
}

.schedule-note p {
    margin-bottom: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-accordion {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f7;
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: #424242;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem;
    max-height: 500px; /* Adjust based on content */
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: #f9f9f7;
}

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

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    fill: #4DB6AC;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.info-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.studio-map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    color: #424242;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4DB6AC;
    outline: none;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-privacy input {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.form-privacy label {
    font-size: 0.9rem;
    color: #666;
}

.form-button {
    width: 100%;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    fill: #4DB6AC;
    margin: 0 auto 2rem;
}

.success-content h1 {
    margin-bottom: 1.5rem;
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.form-summary {
    background-color: #f9f9f7;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
}

.form-summary h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-contact {
    background-color: #f9f9f7;
}

.quick-contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-icon {
    width: 30px;
    height: 30px;
    fill: #4DB6AC;
}

.quick-contact-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.quick-contact-item p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 8rem 0 5rem;
}

.legal-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.legal-date {
    text-align: center;
    color: #888;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    color: #555;
}

.legal-content a {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #2a2a2a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: block;
    margin-bottom: 1rem;
}

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

.footer-tagline {
    color: #bbb;
    font-style: italic;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #bbb;
}

.footer-icon {
    width: 18px;
    height: 18px;
    fill: #4DB6AC;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4DB6AC;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.back-to-top:hover {
    background-color: #3a9d93;
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .intro-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .intro-section {
        height: auto;
        flex-direction: column;
    }
    
    .intro-content {
        max-width: 100%;
        text-align: center;
        padding: 5rem 0 2rem;
    }
    
    .intro-buttons {
        justify-content: center;
    }
    
    .intro-image {
        position: relative;
        width: 100%;
        height: 400px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: #FDFDFB;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .instructor-image {
        height: 250px;
    }
    
    .schedule-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .schedule-book {
        justify-content: flex-start;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .intro-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tab-navigation {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .intro-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
