/* HOME PAGE STYLES */


/* HERO SECTION (Specifics) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/upscale.png') no-repeat center center/cover;
    background-color: var(--color-primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(18, 18, 18, 0.3) 0%,
            rgba(18, 18, 18, 0.8) 80%,
            var(--color-primary) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    /* Standard site width */
    padding: 0 2rem;
    /* Safety padding */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligns text to the left */
    justify-content: center;
}

.hero-text-wrapper {
    max-width: 800px;
    /* Limits line length for readability */
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    /* Responsive typography: Reduced max size by ~30% for FHD */
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 500px;
}


/* CONCEPT SECTION */
.concept-section {
    position: relative;
    background: var(--color-secondary);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.concept-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.concept-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.concept-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-left: 3px solid var(--color-accent);
}

.concept-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.concept-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* COACH SECTION */
.coach-section {
    background: var(--color-primary);
}

.coach-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.coach-image-wrapper {
    position: relative;
}

.coach-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent);
    z-index: 0;
}

.coach-img {
    position: relative;
    z-index: 1;
    width: 100%;
    /* filter: grayscale(100%) contrast(1.1); Removed per user request */
    transition: filter 0.5s ease;
}

.coach-img:hover {
    /* filter: grayscale(0%) contrast(1); */
    transform: scale(1.02);
    /* Added subtle zoom instead */
}

.coach-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coach-role {
    font-family: var(--font-body);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.coach-bio {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    line-height: 1;
}

.stat-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {

    .concept-grid,
    .coach-container {
        grid-template-columns: 1fr;
    }

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

/* OFFRES / PRICING SECTION */
.offres-section {
    background: var(--color-secondary);
    position: relative;
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlight {
    background: linear-gradient(145deg, rgba(224, 170, 62, 0.08) 0%, rgba(224, 170, 62, 0.02) 100%);
    border-color: rgba(224, 170, 62, 0.3);
}

.pricing-card.highlight:hover {
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(224, 170, 62, 0.15);
}

.pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
    font-family: var(--font-heading);
}

.pricing-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 2rem;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-list li {
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 1rem;
}

.pricing-list li strong {
    color: white;
    margin-right: 0.3rem;
}

.pricing-list li::before {
    content: '✓';
    color: var(--color-accent);
    margin-right: 0.8rem;
    font-weight: bold;
}

/* CONTACT SECTION */
.contact-section {
    background: var(--color-primary);
    text-align: center;
    padding: 6rem 0;
}

.contact-container {
    margin: 0 auto;
}

.contact-intro {
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    text-align: left;
}

.contact-info-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-accent);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(224, 170, 62, 0.1);
}

/* MAP STYLES */
.map-container {
    margin-top: 1.5rem;
    height: 250px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Dark Mode Filter for Map */
    filter: invert(90%) hue-rotate(180deg) contrast(90%) grayscale(20%);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.map-container:hover iframe {
    opacity: 1;
    filter: invert(90%) hue-rotate(180deg) contrast(100%) grayscale(0%);
}

/* SOCIAL ICONS STYLES */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    /* Dark icon on Gold background */
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(224, 170, 62, 0.3);
}

/* CONTACT PHOTO PLACEHOLDER */
.contact-grid {
    align-items: stretch;
    /* Stretch items to match height */
}

.contact-image-container {
    height: 100%;
    /* No min-height: allows container to collapse to sibling's height */
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-placeholder {
    position: absolute;
    /* Take out of flow to let grid row height be determined by sibling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.7s ease;
}

.contact-placeholder:hover img {
    transform: scale(1.05);
}

/* DIRECT CONTACT LINKS (Premium) */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link i {
    color: var(--color-accent);
}

.contact-link:hover {
    background: rgba(224, 170, 62, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 170, 62, 0.1);
}

/* PREMIUM REVIEWS STYLES */
.premium-review-card {
    background: linear-gradient(135deg, rgba(30, 30, 36, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.premium-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.8;
}

.premium-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(224, 170, 62, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(224, 170, 62, 0.1);
}

.premium-review-card .quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.premium-review-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.premium-author {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.premium-stars {
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.premium-review-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-google-logo {
    width: 24px;
    opacity: 0.6;
    margin-top: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.premium-review-card:hover .premium-google-logo {
    opacity: 1;
    filter: grayscale(0%);
}

/* REVIEW GRID LAYOUT */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

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

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