:root {
    --primary-color: #4dc7d6;    /* Turquoise */
    --secondary-color: #34D399;  /* Vert émeraude */
    --accent-color: #6EE7B7;     /* Vert menthe clair */
    --highlight: #10B981;        /* Vert émeraude foncé */
    --text-light: #ffffff;       /* Blanc pur */
    --text-soft: #ffffff;        /* Blanc pur */
    --gradient-btn-modern: linear-gradient(135deg, #059669, #10B981, #34D399);  /* Nouveau dégradé vert moderne */
    --background-color: #ffffff;
    --text-color: #1F2937;
    --light-gray: #F8FAFC;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Formes d'arrière-plan */
.background-shapes {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

/* Navigation */
.header {
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    background: transparent;
    z-index: 1000;
    box-shadow: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    font-weight: 700;
}

.logo-text:hover {
    background: linear-gradient(135deg, #0F766E, #0284C7);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
    transform-origin: left;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    background: url('../girl_teacher.jpeg') center/cover no-repeat;
    margin: 0;
    padding-top: calc(80px + 2rem);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(168, 237, 234, 0.55),
        rgba(254, 214, 227, 0.55));
    backdrop-filter: brightness(1.15);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 3;
    color: #334155;
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
}

.title-container {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2rem;
    overflow: hidden;
    padding: 0 1rem;
}

.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    color: #334155;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    position: relative;
    margin: 0.3rem 0;
    animation: none;
}

.title span:nth-child(1) {
    animation: typewriter 2s steps(20, end) forwards;
}

.title span:nth-child(2) {
    animation: typewriter 2s steps(20, end) 2s forwards;
}

.title span:nth-child(3) {
    animation: typewriter 2s steps(20, end) 4s forwards;
}

.title span .gradient-text::after {
    display: none;
}

.title > span::after {
    content: '|';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    color: #334155;
    font-weight: 100;
    font-size: 1.1em;
    opacity: 0;
}

.title > span:nth-child(1)::after {
    animation: blinkCursor 0.8s step-end 2 forwards;
    opacity: 1;
}

.title > span:nth-child(2)::after {
    animation: blinkCursor 0.8s step-end 2 forwards;
    animation-delay: 2s;
    opacity: 0;
}

.title > span:nth-child(3)::after {
    animation: blinkCursor 0.8s step-end 2 forwards;
    animation-delay: 4s;
    opacity: 0;
}

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

@keyframes typewriter {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.gradient-text {
    color: #334155;
    font-weight: 800;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    display: inline;
}

.title span:not(.gradient-text) {
    color: #334155;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #334155;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3.5rem;
    line-height: 1.4;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.subtitle .gradient-text {
    color: #334155;
    font-weight: 600;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}

/* Boutons */
.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 4;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.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: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-btn-modern);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    border: none;
    font-weight: 600;
    animation: gradient 5s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background-size: 150% 150%;
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Method Section */
.method-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    border-radius: 2px;
    opacity: 0.3;
    transform: scaleX(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-title:hover::after {
    transform: scaleX(1);
    opacity: 0.5;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
        "card1 image"
        "card2 card3";
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7)
    );
    backdrop-filter: blur(10px);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.85)
    );
}

.method-right {
    grid-area: image;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: floating 6s ease-in-out infinite;
}

.method-number {
    font-size: 3.5rem;
    font-weight: 800;
    position: absolute;
    top: -2rem;
    right: 1rem;
    opacity: 0.15;
    transition: all 0.3s ease;
    z-index: 1;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.method-card:hover .method-number {
    opacity: 0.25;
    transform: scale(1.1) translateY(-5px);
}

.method-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.method-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
    line-height: 1.5;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.method-list li strong {
    background: linear-gradient(135deg, #FF9A8B, #FF6B6B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 2px;
    position: relative;
    z-index: 1;
}

.method-list li strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 154, 139, 0.2), rgba(255, 107, 107, 0.2));
    z-index: -1;
    border-radius: 4px;
    transition: height 0.3s ease;
}

.method-list li:hover strong::after {
    height: 100%;
}

.method-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.method-list li:hover {
    transform: translateX(5px);
    color: #1e293b;
}

.method-list li:hover::before {
    transform: scale(1.5);
}

.method-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.method-card:hover::after {
    opacity: 1;
}

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

.method-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.method-cta .btn svg {
    transition: transform 0.3s ease;
}

.method-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

.method-cta .btn:hover svg {
    transform: translateX(5px);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    scroll-margin-top: 100px;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid #0284C7;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0284C7, #0F766E);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    color: #0F766E;
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price .period {
    color: #64748b;
    font-size: 1.1rem;
}

.sessions {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0F766E;
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Footer */
.footer {
    background: var(--light-gray);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #0284C7, #0F766E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0F766E;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1200px) {
    .method-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "card1"
            "card2"
            "card3";
    }

    .method-right {
        order: -1;
    }

    .method-illustration {
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        grid-row: 1;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .title span {
        white-space: normal;
        width: 100%;
        animation: none;
    }

    .title span:nth-child(1),
    .title span:nth-child(2),
    .title span:nth-child(3) {
        animation: none;
    }

    .subtitle {
        font-size: 1.2rem;
        max-width: 100%;
    }

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

    .method-section {
        padding: 4rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #334155;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger span:first-child {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:last-child {
        bottom: 0;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }

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

    .hamburger.active span:last-child {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .mobile-menu a {
        font-size: 1.5rem;
        color: #1e293b;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--primary-color);
    }

    .mobile-menu .nav-contact-btn {
        color: white;
    }
}

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

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

/* Mobile Menu Base Styles */
.hamburger {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #334155;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger span:first-child {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:last-child {
        bottom: 0;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }

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

    .hamburger.active span:last-child {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .mobile-menu a {
        font-size: 1.5rem;
        color: #1e293b;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--primary-color);
    }

    .mobile-menu .nav-contact-btn {
        color: white;
    }
}

/* Section Témoignages */
.testimonials-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-info {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal h3 {
    margin-bottom: 1.5rem;
    color: #0F766E;
    font-size: 1.5rem;
}

.selected-plan {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    color: #475569;
}

.duration-selector {
    margin-bottom: 2rem;
}

.duration-selector label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.duration-selector select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1e293b;
    background-color: white;
    transition: all 0.3s ease;
}

.duration-selector select:focus {
    outline: none;
    border-color: #0F766E;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.1);
}

#confirm-subscription {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

.nav-contact-btn {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #FF9A8B, #FF6B6B);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 154, 139, 0.3);
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 139, 0.4);
    background: linear-gradient(135deg, #FF8A7B, #FF5B5B);
}

html {
    scroll-behavior: smooth;
}

@keyframes typewriterMobile {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.price-per-hour {
    color: #2ecc71;
    font-weight: 600;
    font-size: 1.1em;
}
 