/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #9acd32;
    --dark-green: #80ab28;
    --black: #161616;
    --dark-gray: #78766f;
    --light-gray: #a9a9a9;
    --white: #ffffff;
    --bg-dark: #161616;
    --bg-light: #f6f6f6;
    --text-dark: #0a0000;
    --text-light: #f5f2f2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.063em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-green);
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 100%),
                url('images/google-reviews/reviews-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(22, 22, 22, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 984px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: 'Righteous', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-green);
    margin-bottom: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 4px 20px rgba(154, 205, 50, 0.3),
                 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    min-height: 56px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--black);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    color: var(--black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(154, 205, 50, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-map {
    background-color: var(--primary-green);
    color: var(--black);
    margin-top: 16px;
}

.btn-map:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.btn-text {
    background: none;
    color: var(--white);
    text-decoration: underline;
    padding: 8px 16px;
    min-height: auto;
}

.btn-text:hover {
    color: var(--light-gray);
}

/* Section Styles */
section {
    padding: 56px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-title-light {
    color: var(--white);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 30%, var(--dark-green) 50%, var(--primary-green) 70%, transparent 100%);
    box-shadow: 0 2px 8px rgba(154, 205, 50, 0.3);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(154, 205, 50, 0.2) 50%, transparent 100%);
}

/* Coach Profile Card */
.coach-profile-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(154, 205, 50, 0.1);
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.coach-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 24px 0 0 24px;
    box-shadow: 2px 0 10px rgba(154, 205, 50, 0.3);
}

.coach-profile-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%) rotate(-15deg);
    width: 400px;
    height: 400px;
    background-image: url('images/workethicfit-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.coach-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(154, 205, 50, 0.2);
}

.coach-image-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.coach-image {
    width: 100%;
    height: auto;
    aspect-ratio: 0.75;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
                0 0 0 3px rgba(154, 205, 50, 0.15),
                0 8px 30px rgba(154, 205, 50, 0.1);
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.coach-profile-card:hover .coach-image {
    box-shadow: 0 20px 60px rgba(154, 205, 50, 0.25),
                0 0 0 4px rgba(154, 205, 50, 0.2),
                0 12px 40px rgba(154, 205, 50, 0.15);
    transform: scale(1.02);
}

.coach-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.coach-logo-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: -8px;
}

.coach-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(154, 205, 50, 0.2));
}

.coach-profile-card:hover .coach-logo {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(154, 205, 50, 0.3));
}

.coach-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
}

.coach-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 2px;
}

.coach-bio {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.coach-bio strong {
    font-weight: 700;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Instagram Reels Sections */
.instagram-reels-container {
    margin-top: 60px;
    width: 100%;
}

.reels-section {
    margin-bottom: 60px;
}

.reels-section:last-child {
    margin-bottom: 0;
}

.reels-section-title {
    font-family: 'Righteous', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reels-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 2px;
}

.reels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    max-width: 500px;
}

.reel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #fff;
    min-height: 400px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid rgba(154, 205, 50, 0.1);
}

.reel-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(154, 205, 50, 0.25),
                0 0 0 1px rgba(154, 205, 50, 0.2);
}

.reel-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 16px;
}

.reel-loading {
    color: var(--primary-green);
    font-size: 16px;
    font-weight: 600;
    opacity: 0.7;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.reel-item .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: none !important;
}

.reel-item .instagram-media iframe {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
}

@media (max-width: 968px) {
    .coach-profile-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        max-width: 600px;
    }
    
    .coach-profile-card::after {
        width: 300px;
        height: 300px;
        right: -30px;
    }
    
    .coach-image-container {
        max-width: 280px;
    }
    
    .coach-logo-badge {
        justify-content: center;
    }
    
    .coach-logo {
        height: 45px;
    }
    
    .coach-name {
        font-size: 32px;
        text-align: center;
    }
    
    .coach-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .coach-bio {
        font-size: 17px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 56px 0;
    }
    
    .coach-profile-card {
        padding: 32px 24px;
        gap: 32px;
    }
    
    .coach-profile-card::after {
        width: 250px;
        height: 250px;
        right: -20px;
        opacity: 0.02;
    }
    
    .coach-image-container {
        max-width: 250px;
    }
    
    .coach-logo {
        height: 40px;
    }
    
    .coach-name {
        font-size: 28px;
    }
    
    .coach-bio {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--black);
    padding: 56px 0;
    position: relative;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Star rating styles for individual reviews */
.star {
    font-size: 20px;
    color: var(--light-gray);
    line-height: 1;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease;
}

.star.filled {
    color: var(--primary-green);
    text-shadow: 0 0 8px rgba(154, 205, 50, 0.6);
}

.star:hover {
    transform: scale(1.2);
}

.star.half-filled {
    color: var(--primary-green);
    position: relative;
}

.star.half-filled::after {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
    min-height: 400px;
    align-items: stretch;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Removed quote mark */

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card.error-message {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.testimonial-header-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-left {
    flex-shrink: 0;
    width: 120px;
}

.testimonial-right {
    flex: 1;
    min-width: 0;
}

.testimonial-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(154, 205, 50, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
}

.testimonial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(154, 205, 50, 0.5);
    border-color: rgba(154, 205, 50, 0.6);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(154, 205, 50, 0.4);
    border-color: rgba(154, 205, 50, 0.6);
}

/* Image Lightbox/Modal Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-green);
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: var(--primary-green);
    transform: rotate(90deg);
    background-color: rgba(154, 205, 50, 0.2);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-card.loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.testimonial-author-name {
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 8px;
    padding: 8px 0;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-rating .star {
    font-size: 18px;
}

.testimonial-text-container {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding-left: 0;
    flex: 1;
}

.review-image-container {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-image {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(154, 205, 50, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    display: block;
    cursor: pointer;
}

.review-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(154, 205, 50, 0.4);
    border-color: rgba(154, 205, 50, 0.6);
}

.testimonial-button-container {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
}

.testimonial-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.google-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-view-button:hover {
    background-color: #f0f0f0;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    border-color: #f0f0f0;
}

.google-reviews-link {
    text-align: center;
    margin-top: 40px;
}

.google-reviews-link .btn {
    background-color: var(--white);
    color: var(--black);
}

.google-reviews-link .btn:hover {
    background-color: #f0f0f0;
    color: var(--black);
}

.google-reviews-link .btn:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 16px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 2px;
}

.contact-address {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-address:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(154, 205, 50, 0.2);
    border-left-color: var(--dark-green);
    transform: translateX(4px);
}

.contact-address span {
    flex: 1;
}

.contact-address:visited {
    color: var(--text-dark);
}

.location-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form-mobile {
    display: none;
}

.contact-form-desktop {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(154, 205, 50, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h4 {
    color: var(--black);
    font-size: 24px;
    margin-bottom: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.contact-form h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--black);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
    background-color: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-form .btn-text {
    color: var(--black);
    text-decoration: underline;
    background: transparent;
    border: none;
}

.contact-form .btn-text:hover {
    color: var(--dark-gray);
}

.contact-map {
    position: relative;
    min-height: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(154, 205, 50, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map iframe:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark-gray) 100%);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 8px;
}

.map-address {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 16px;
}

/* Social Section */
.social {
    background-color: var(--bg-dark);
    padding: 56px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.social-link {
    color: var(--primary-green);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: scale(1.1);
    color: var(--dark-green);
}

.social-link svg {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 50%, #0a0a0a 100%);
    padding: 24px 0;
    position: relative;
    border-top: 3px solid var(--primary-green);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 50%, transparent 100%);
    opacity: 0.5;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-text:hover {
    color: var(--primary-green);
}

.footer-social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-links .social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-social-links .social-link:hover {
    transform: scale(1.1);
    color: var(--primary-green);
}

.footer-social-links .social-link svg {
    display: block;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        padding: 48px 24px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .reels-grid {
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-map iframe {
        min-height: 350px;
    }

    .contact-form-mobile {
        display: block;
        margin-top: 24px;
    }

    .contact-form-desktop {
        display: none;
    }

    .contact-form-desktop.active {
        display: block;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    /* Quote mark removed */
    
    .testimonial-header-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-left {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
    }
    
    .testimonial-right {
        width: 100%;
        text-align: center;
    }
    
    .testimonial-image {
        max-width: 100px;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 16px 60px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social-links {
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reels-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .reel-item {
        min-height: 500px;
    }

    .instagram-reels-container {
        margin-top: 40px;
    }

    .reels-section {
        margin-bottom: 40px;
    }

    section {
        padding: 40px 0;
    }

    .coach-profile-card,
    .contact-content {
        gap: 32px;
    }

    .reels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reels-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .reel-item {
        min-height: 500px;
    }

    .instagram-reels-container {
        margin-top: 40px;
    }

    .reels-section {
        margin-bottom: 40px;
    }

    .social-links {
        gap: 24px;
    }

    .social-link svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .testimonial-card {
        min-height: 300px;
    }
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 38px;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 62px;
    }

    .section-title {
        font-size: 44px;
    }
}

@media (min-width: 1536px) {
    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 48px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container,
.coach-profile-card,
.testimonial-card,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-padding-top: 100px;
}
