/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, serif;
    line-height: 1.7;
    color: #6B7C93;
    background-color: #FEFCFB;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2D3748;
}

/* Header */
.header {
    background: rgba(254, 252, 251, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 182, 193, 0.2);
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #2D3748;
    margin-bottom: 0;
    font-weight: 400;
}

.tagline {
    font-size: 0.9rem;
    color: #8FA3B8;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #8FA3B8;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7A9BB8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7A9BB8;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    padding: 0;
    background: none;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    pointer-events: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    pointer-events: none !important;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 190, 178, 0.15) 50%, rgba(245, 222, 179, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding: 4rem 3rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(139, 190, 178, 0.12) 50%, rgba(245, 222, 179, 0.08) 100%);
    backdrop-filter: blur(5px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 100;
    text-align: left;
    padding-top: 7rem;
    padding-bottom: 4rem;
    overflow: visible;
    pointer-events: auto;
}

.hero-title {
    font-size: 3.2rem;
    color: #2D3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    max-width: 90%;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #8B6F47;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #B8D4E3;
    padding-left: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #5A5A5A;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10002 !important;
    max-width: 380px;
    width: 100%;
    pointer-events: auto !important;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.profile-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Lora', serif;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 360px;
    padding: 0.95rem 1.8rem;
    font-size: 0.92rem;
    position: relative;
    z-index: 10000 !important;
    pointer-events: auto !important;
    display: inline-block !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer !important;
    text-decoration: none;
    user-select: none;
}

.hero-buttons button.btn {
    border: 1px solid #7A9BB8;
    background: rgba(122, 155, 184, 0.1);
    color: #2D3748;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
}

.hero-buttons button.btn:hover {
    background: rgba(122, 155, 184, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: #7A9BB8;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(122, 155, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(122, 155, 184, 0.4);
    background: #6B8BA8;
}

.btn-secondary {
    background: rgba(122, 155, 184, 0.1);
    color: #2D3748;
    border: 1px solid #7A9BB8;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.btn-secondary:hover {
    background: rgba(122, 155, 184, 0.2);
    transform: translateY(-2px);
    cursor: pointer !important;
}

#discoveryCallBtn {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 10003 !important;
    position: relative !important;
    display: inline-block !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(122, 155, 184, 0.3) !important;
}

.btn-outline {
    background: transparent;
    color: #7A9BB8;
    border: 2px solid #7A9BB8;
}

.btn-outline:hover {
    background: #7A9BB8;
    color: #FFFFFF;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.8rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6B7C93;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, rgba(122, 155, 184, 0.05) 0%, rgba(122, 155, 184, 0.1) 100%);
    padding-top: 8rem;
}

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

.about-text h3 {
    color: #8B6F47;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #6B5B4A;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.credentials {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    border: 1px solid #B8D4E3;
}

.credentials h4 {
    color: #8B6F47;
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    color: #6B5B4A;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #B8D4E3;
    font-weight: bold;
}

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

.service-card {
    background: #FFFFFF;
    border: 1px solid #B8D4E3;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
}

.service-card.featured {
    border: 2px solid #7A9BB8;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #B8D4E3;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    color: #2D3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    color: #B8D4E3;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #6B5B4A;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Quiz Section */
#quiz {
    scroll-margin-top: 80px;
}

#about-yasmina {
    scroll-margin-top: 80px;
}

#services {
    scroll-margin-top: 80px;
}

#real-results {
    scroll-margin-top: 80px;
}

#client-messages {
    scroll-margin-top: 80px;
}

#contact-form-end {
    scroll-margin-top: 80px;
}

.quiz-section {
    background: #F0F7FA;
    padding: 1.5rem 0 2rem 0;
}

.quiz-section .section-header {
    margin-bottom: 2rem;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.1);
}

.quiz-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E8D5C4;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: #B8D4E3;
    width: 10%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #7A6B5A;
    font-weight: 500;
}

.question h3 {
    color: #8B6F47;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option {
    padding: 1rem 1.5rem;
    background: #F0F7FA;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6B5B4A;
}

.option:hover {
    background: #E8D5C4;
    border-color: #B8D4E3;
}

.option.selected {
    background: #B8D4E3;
    color: #FFFFFF;
    border-color: #8B6F47;
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.quiz-results {
    text-align: center;
}

.quiz-results h3 {
    color: #8B6F47;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.result-content {
    background: #F0F7FA;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: left;
}

.quiz-cta {
    margin-top: 2rem;
}

/* Resources Section */
.resources-section {
    background: #F8F6F2;
}

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

.resource-card {
    background: #FFFFFF;
    border: 1px solid #B8D4E3;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.resource-card a {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
}

.resource-card.featured {
    border: 2px solid #7A9BB8;
}

.resource-card.featured.fullwidth {
    transform: none;
}

.resource-fullwidth {
    margin-top: 3rem;
    width: 100%;
}

.resource-card.fullwidth {
    max-width: 100%;
    width: 100%;
    padding: 3rem 4rem;
    margin: 0 auto;
}

.resource-fullwidth-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.resource-fullwidth-left {
    text-align: left;
}

.resource-fullwidth-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.resource-card.fullwidth .resource-description,
.resource-card.fullwidth .resource-features {
    margin-bottom: 1.5rem;
}

.resource-card.fullwidth .resource-price {
    font-size: 1.8rem;
    margin: 0;
}

.resource-card.fullwidth .btn {
    margin: 0;
    width: auto;
    min-width: 200px;
}

.premium-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B6F47;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.free-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #B8D4E3;
    color: #2C2C2C;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.resource-card h3 {
    color: #8B6F47;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-description {
    color: #6B5B4A;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.resource-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.resource-features li {
    color: #6B5B4A;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.resource-price {
    font-size: 2rem;
    color: #8B6F47;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Contact Section */
#contact {
    scroll-margin-top: 100px;
    padding-top: 100px;
    margin-top: -100px;
}

.contact-section {
    padding: 6rem 0 0 0;
}

.contact-section .section-header {
    margin-bottom: 2rem;
}

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

.contact-info h3 {
    color: #2D3748;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.contact-methods-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 2rem 0;
    padding: 0;
}

.contact-method {
    padding: 0.5rem;
}

.contact-method.primary {
    background: rgba(122, 155, 184, 0.08);
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid rgba(122, 155, 184, 0.2);
    transition: all 0.3s ease;
}

.contact-method.primary:hover {
    background: rgba(122, 155, 184, 0.12);
    border-color: rgba(122, 155, 184, 0.3);
    transform: translateY(-2px);
}

.contact-social-section {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(184, 212, 227, 0.3);
    text-align: center;
}

.contact-social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2D3748;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(184, 212, 227, 0.4);
    justify-content: center;
    font-weight: 600;
    min-width: 160px;
    flex: 1 1 auto;
    max-width: 220px;
    box-shadow: 0 2px 8px rgba(122, 155, 184, 0.1);
}

.contact-social-link:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(184, 212, 227, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 155, 184, 0.2);
}

.contact-social-link.instagram-link:hover {
    border-color: #E1306C;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.contact-social-link.youtube-link:hover {
    border-color: #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.contact-social-link.email-link:hover {
    border-color: #7A9BB8;
    box-shadow: 0 4px 12px rgba(122, 155, 184, 0.3);
}

.contact-social-link.tiktok-link:hover {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.contact-social-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.contact-social-link span {
    font-weight: 500;
}

.contact-info-note {
    text-align: center;
    padding: 1rem;
    background: rgba(122, 155, 184, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info-note p {
    margin: 0;
    color: #6B7C93;
    font-size: 0.95rem;
    font-style: italic;
}

.contact-method h4 {
    color: #2D3748;
    margin-bottom: 0.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.15;
}

.contact-method p {
    color: #2D3748;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.25;
}

.contact-method a {
    color: #2D3748;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
    font-size: 1.05em;
}

.contact-method a:hover {
    color: #7A9BB8;
}

.contact-method .btn {
    margin-top: 0.35rem;
    display: inline-block;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

.contact-method p a {
    color: #7A9BB8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method p a:hover {
    color: #5A7A96;
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FBFC 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(122, 155, 184, 0.15);
    box-shadow: 0 8px 32px rgba(122, 155, 184, 0.12);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(122, 155, 184, 0.18);
}

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

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid #E0E8ED;
    border-radius: 14px;
    background: #FFFFFF;
    color: #2D3748;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group select {
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    padding-right: 2.5rem !important;
    background-color: #FFFFFF !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3e%3cpath fill='%237A9BB8' d='M6 8L0 0h12z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1.1rem center !important;
    color: #2D3748 !important;
}

.form-group select *,
.form-group select option {
    background-color: #FFFFFF !important;
    color: #2D3748 !important;
}

.form-group select:focus,
.form-group select:hover,
.form-group select:active,
.form-group select:checked,
.form-group select:-moz-focusring {
    background-color: #FFFFFF !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3e%3cpath fill='%237A9BB8' d='M6 8L0 0h12z'/%3e%3c/svg%3e") !important;
    color: #2D3748 !important;
    outline: none !important;
}

.form-group.select-wrapper::after {
    display: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94A3B8;
    opacity: 0.8;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #B8D4E3;
    box-shadow: 0 4px 8px rgba(122, 155, 184, 0.08);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7A9BB8;
    box-shadow: 0 0 0 3px rgba(122, 155, 184, 0.1), 0 4px 12px rgba(122, 155, 184, 0.15);
    background: #FFFFFF;
    transform: translateY(-1px);
}

.form-group select:focus {
    outline: none !important;
    border-color: #7A9BB8 !important;
    box-shadow: 0 0 0 3px rgba(122, 155, 184, 0.1), 0 4px 12px rgba(122, 155, 184, 0.15) !important;
    background-color: #FFFFFF !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3e%3cpath fill='%237A9BB8' d='M6 8L0 0h12z'/%3e%3c/svg%3e") !important;
    color: #2D3748 !important;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 75px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234F6B8A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.form-group label:hover {
    color: #2D3748;
}

.form-group input[type="checkbox"] {
    width: auto;
    height: 18px;
    width: 18px;
    cursor: pointer;
    accent-color: #7A9BB8;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.form-group input[type="checkbox"]:hover {
    transform: scale(1.1);
}

.form-group input[type="checkbox"]:focus {
    transform: translateY(-1px) scale(1.1);
    box-shadow: 0 0 0 3px rgba(122, 155, 184, 0.2);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

/* Page Styles */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F8F6F2 0%, #E8E3DB 100%);
    text-align: center;
}

.page-hero-title {
    font-size: 3.5rem;
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: #7A6B5A;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-section {
    padding: 6rem 0;
}

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

.about-text h2 {
    color: #8B6F47;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: #6B5B4A;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text ul {
    color: #6B5B4A;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.5rem;
}

/* Who It's For Section */
.who-its-for-section {
    background: #F8F6F2;
    padding: 6rem 0;
    text-align: center;
}

.who-its-for-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-its-for-content h2 {
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.who-its-for-content p {
    color: #6B5B4A;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.who-its-for-content strong {
    color: #8B6F47;
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    background: #F8F6F2;
    padding: 6rem 0;
    text-align: center;
}

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

.philosophy-content h2 {
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.philosophy-content p {
    color: #6B5B4A;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.philosophy-content strong {
    color: #8B6F47;
    font-weight: 600;
}

/* Education List */
.education-list {
    color: #6B5B4A;
    text-align: left;
    max-width: 500px;
    margin: 2rem auto 0;
    padding-left: 2rem;
}

.education-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.15);
    margin: 0 auto;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credentials-section {
    background: #F2F2F2;
    padding: 6rem 0;
}

.credentials-content h2 {
    text-align: center;
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.credential-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #B8D4E3;
    text-align: center;
}

.credential-item h3 {
    color: #8B6F47;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.credential-item p {
    color: #6B5B4A;
    line-height: 1.6;
}

.values-section {
    padding: 6rem 0;
}

.values-content h2 {
    text-align: center;
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-item {
    background: #F0F7FA;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.value-item h3 {
    color: #8B6F47;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #6B5B4A;
    line-height: 1.6;
}

.cta-section {
    background: #8B6F47;
    color: #FFFFFF;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #B8D4E3;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link.active {
    color: #8B6F47;
    font-weight: 500;
}

.logo h1 a {
    color: #2C2C2C;
    text-decoration: none;
}

/* Services Page Styles */
.services-overview {
    padding: 6rem 0;
}

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

.services-intro h2 {
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-intro p {
    color: #6B5B4A;
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-grid-section {
    background: #F2F2F2;
    padding: 6rem 0;
}

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

.service-card {
    background: #FFFFFF;
    border: 1px solid #B8D4E3;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.15);
}

.service-card.featured {
    border: 2px solid #7A9BB8;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #B8D4E3;
    color: #2C2C2C;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-card h3 {
    color: #2D3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    color: #B8D4E3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #6B5B4A;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    color: #6B5B4A;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.process-section {
    padding: 6rem 0;
}

.process-content h2 {
    text-align: center;
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #B8D4E3;
    color: #2C2C2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #8B6F47;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6B5B4A;
    line-height: 1.6;
}

.specializations-section {
    background: #F8F6F2;
    padding: 6rem 0;
}

.specializations-content h2 {
    text-align: center;
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.specialization-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #B8D4E3;
    text-align: center;
}

.specialization-item h3 {
    color: #8B6F47;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.specialization-item p {
    color: #6B5B4A;
    line-height: 1.6;
}

.testimonials-section {
    padding: 6rem 0;
}

.testimonials-content h2 {
    text-align: center;
    color: #8B6F47;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial-item {
    background: #F0F7FA;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.testimonial-item p {
    color: #6B5B4A;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #8B6F47;
    font-weight: 600;
}

/* New Sections with Pink Palette */

/* Who It's For Section */
.who-its-for-section {
    background: rgba(122, 155, 184, 0.05);
    padding: 6rem 0;
    text-align: center;
}

.who-its-for-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-its-for-content h2 {
    color: #2D3748;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.who-its-for-content p {
    color: #6B7C93;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.who-its-for-content strong {
    color: #7A9BB8;
    font-weight: 600;
}

/* About Yasmina Section */
.about-yasmina-section {
    background: #FEFCFB;
    padding: 6rem 0 0.5rem 0;
}

.about-yasmina-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-yasmina-content h2 {
    color: #2D3748;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-yasmina-content h3 {
    color: #7A9BB8;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.about-yasmina-content p {
    color: #6B7C93;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-yasmina-content strong {
    color: #7A9BB8;
    font-weight: 600;
}

.about-yasmina-content blockquote {
    color: #2D3748;
    font-size: 1.2rem;
    font-style: italic;
    margin: 2rem auto;
    padding: 1.5rem 2rem;
    background: rgba(122, 155, 184, 0.1);
    border-left: 4px solid #7A9BB8;
    border-radius: 8px;
    max-width: 600px;
}

strong {
    color: #7A9BB8;
    font-weight: 600;
}

.transformation-intro {
    text-align: center;
    margin: 3rem 0 2rem 0;
    position: relative;
}

.transformation-intro h3 {
    color: #7A9BB8;
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.healing-results-list {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(122, 155, 184, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7A9BB8;
}

.healing-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
}

.healing-result-item .bullet {
    width: 6px;
    height: 6px;
    background: #7A9BB8;
    border-radius: 50%;
    flex-shrink: 0;
}

.healing-result-item .text {
    color: #6B7C93;
    font-size: 1.1rem;
    line-height: 1.5;
}

.healing-result-item strong {
    color: #6B7C93;
    font-weight: 400;
}

.healing-note {
    color: #2D3748;
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 2rem;
    font-weight: 500;
}

.healing-note strong {
    color: #7A9BB8;
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    background: rgba(122, 155, 184, 0.05);
    padding: 6rem 0;
    text-align: center;
}

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

.philosophy-content h2 {
    color: #2D3748;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.philosophy-content p {
    color: #6B7C93;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.philosophy-content strong {
    color: #7A9BB8;
    font-weight: 600;
}

/* Education Section */
.education-section {
    background: #FEFCFB;
    padding: 3rem 0 0.5rem 0;
    text-align: center;
    margin-bottom: -3rem;
}

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

.education-content h2 {
    color: #2D3748;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.education-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(122, 155, 184, 0.05);
    border-radius: 12px;
    border-left: 4px solid #7A9BB8;
}

.education-item h3 {
    color: #2D3748;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.education-item .institution {
    color: #7A9BB8;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-item .description {
    color: #6B7C93;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.education-item .specialization {
    color: #6B7C93;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Why Section */
.why-section {
    background: rgba(122, 155, 184, 0.05);
    padding: 6rem 0;
    text-align: center;
}

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

.why-content h2 {
    color: #2D3748;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.why-content p {
    color: #6B7C93;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Resources Toggle */
.resources-toggle-container {
    background: rgba(122, 155, 184, 0.05);
    padding: 2rem 0;
    text-align: center;
}

.resources-toggle-btn {
    background: #7A9BB8;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(122, 155, 184, 0.3);
}

.resources-toggle-btn:hover {
    background: #6B7C93;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 155, 184, 0.4);
}

.toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.resources-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.resources-toggle-btn.active .toggle-text::after {
    content: " (Click to Hide)";
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hidden Resources Section */
.resources-section.hidden {
    display: none;
}

.resources-section {
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: #7A9BB8;
    color: #FFFFFF;
    padding: 1.5rem 0 0.75rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer-brand h3 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #B8D4E3;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a.nav-link {
    color: #B8D4E3;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a.nav-link:hover {
    color: #FFFFFF;
}

.footer-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

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

.footer-social {
    text-align: right;
}

.footer-social h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #B8D4E3;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(184, 212, 227, 0.3);
}

.footer-bottom p {
    color: #B8D4E3;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-text {
        padding: 3rem 2rem;
        height: auto;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 60vh;
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .resource-card.fullwidth {
        padding: 2.5rem 2rem;
    }
    
    .resource-fullwidth-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .resource-fullwidth-left,
    .resource-fullwidth-right {
        text-align: center;
    }
    
    .resource-card.fullwidth .resource-price {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-social-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .contact-social-links {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .contact-social-link {
        min-width: 140px;
        flex: 1 1 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .contact-methods-wrapper {
        max-width: 100%;
        margin: 1.5rem 0;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .quiz-container {
        padding: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* New Service Styles */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-details {
    margin: 1.5rem 0;
}

.service-details h4 {
    color: #2D3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-details p {
    color: #6B7C93;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-details ul {
    color: #6B7C93;
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}

.service-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.service-note {
    background: rgba(122, 155, 184, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    color: #2D3748 !important;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Success Stories Section */
.success-stories-section {
    background: rgba(122, 155, 184, 0.05);
    padding: 6rem 0;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #B8D4E3;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.testimonial-content p {
    color: #6B7C93;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #2D3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #7A9BB8;
    font-size: 0.9rem;
    margin: 0;
}

.case-studies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.case-study {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #B8D4E3;
}

.case-study h3 {
    color: #2D3748;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.case-study-problem,
.case-study-solution,
.case-study-results {
    padding: 1.5rem;
    background: rgba(122, 155, 184, 0.05);
    border-radius: 8px;
    border-left: 4px solid #7A9BB8;
}

.case-study-problem h4,
.case-study-solution h4,
.case-study-results h4 {
    color: #2D3748;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.case-study-problem p,
.case-study-solution p {
    color: #6B7C93;
    margin: 0;
}

.case-study-results ul {
    color: #6B7C93;
    margin: 0;
    padding-left: 1.2rem;
}

.case-study-results li {
    margin-bottom: 0.5rem;
}

/* Client Results Section */
.real-results-section {
    background: rgba(122, 155, 184, 0.05);
    padding: 1rem 0 6rem 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.case-study-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #B8D4E3;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(122, 155, 184, 0.1);
}

.case-photos {
    padding: 2rem;
    background: rgba(122, 155, 184, 0.05);
}

/* Updated photo collage styles - v2.0 */
.photo-container {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(122, 155, 184, 0.15);
}

.photo-placeholder {
    flex: 1;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.photo-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin-bottom: 1rem;
    position: static;
}

.photo-placeholder small {
    color: #6B7C93;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 0.5rem;
}

.case-content {
    padding: 2.5rem;
}

/* Confidential case styles */
.case-study-card.confidential {
    border: 2px solid #7A9BB8;
    position: relative;
}

.confidential-photo {
    filter: none;
    transition: transform 0.3s ease;
    position: relative;
    object-fit: cover;
    object-position: center bottom;
}

.confidential-photo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 70%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.confidential-photo:hover {
    transform: scale(1.02);
}

.confidential-badge {
    background: #7A9BB8;
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-left: 1rem;
    font-weight: 500;
}

.case-content h3 {
    color: #2D3748;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.case-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.case-problem,
.case-solution,
.case-results {
    padding: 1.5rem;
    background: rgba(122, 155, 184, 0.05);
    border-radius: 8px;
    border-left: 4px solid #7A9BB8;
}

.case-problem {
    border-left-color: #E53E3E;
}

.case-solution {
    border-left-color: #7A9BB8;
}

.case-results {
    border-left-color: #38A169;
}

.case-problem h4,
.case-solution h4,
.case-results h4 {
    color: #2D3748;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-problem p,
.case-solution p {
    color: #6B7C93;
    margin: 0;
    line-height: 1.5;
}

.case-results ul {
    color: #6B7C93;
    margin: 0;
    padding-left: 1.2rem;
}

.case-results li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Client Messages Section */
.client-messages-section {
    background: #FFFFFF;
    padding: 1rem 0 3rem 0;
}

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

.screenshot-placeholder {
    background: #FFFFFF;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(122, 155, 184, 0.12);
}

.screenshot-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(122, 155, 184, 0.2);
}

.screenshot-frame {
    padding: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.screenshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(122, 155, 184, 0.2);
}
.platform-badge {
    background: #7A9BB8;
    color: #FFFFFF;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.screenshot-date {
    color: #8FA3B8;
    font-size: 0.8rem;
}
.screenshot-content p {
    color: #2D3748;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.screenshot-content small {
    color: #6B7C93;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Вот отдельный блок для кнопок! */
.hero-buttons {
    display: flex;
    gap: 18px;
}

/* Service Application Modal */
#serviceModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

#serviceModal[style*="flex"] {
    display: flex !important;
}

#serviceModal > div {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
