:root {
    --primary-color: #3D4A2A;
    --primary-dark: #2F3D1F;
    --secondary-color: #FFF5F5;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #556B2F 0%, #3D4A2A 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

img, video, iframe {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #FFF5F5;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1000;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
    min-width: 60px;
    white-space: nowrap;
}

.lang-btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 40px;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Лого слева, Кнопка справа */
    align-items: center; /* Вертикальное выравнивание */
    background: rgba(255, 255, 255, 0.7); /* Полупрозрачный белый */
    backdrop-filter: blur(12px); /* Эффект матового стекла */
    -webkit-backdrop-filter: blur(12px); /* Для Safari */
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Еле заметная линия */
    box-sizing: border-box;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}

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

.nav-cta {
    white-space: nowrap;
}

.nav-name-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.nav-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: var(--gradient);
    color: #FFD4E5;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.9s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFD4E5;
}

.hero-numerology {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 700;
    animation: fadeInUp 1s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFD4E5;
}

.hero-message {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1.1s ease;
    line-height: 1.6;
    color: #FFD4E5;
}

.hero-right {
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #FFD4E5;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    animation: fadeInUp 1.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient);
    color: var(--white);
}

/* Sections */
.section {
    padding: 80px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-alt {
    background: #FFE5E5;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-title-link {
    display: inline-block;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-title-link:hover {
    -webkit-text-fill-color: var(--white);
    background: var(--gradient);
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.section-title-left {
    text-align: left;
    margin-bottom: 2rem;
}

/* About Section */
#about.section {
    padding: calc(2mm + 120px) 0 0 0;
    margin-top: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.about-image.main-photo .profile-photo {
    max-width: 100%;
}

.secondary-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.secondary-photos .profile-photo {
    max-width: 100%;
}

.profile-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px 0 0 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-image .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    min-height: 500px;
}

.about-text {
    display: flex;
    flex-direction: column;
    background: #E5C8C8;
    padding: 3rem;
    border-radius: 0 20px 20px 0;
    margin-left: -1px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
}

.about-text p strong,
.qualifications-text strong,
.contact-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

.experience-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.experience-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: justify;
    padding-left: 1.5rem;
    position: relative;
}

.experience-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    white-space: nowrap;
}

.service-price:first-of-type {
    margin-top: 0;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Qualifications Section */
#qualifications.section {
    padding: 0;
}

.qualifications-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.qualifications-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.qualifications-image .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    min-height: 500px;
}

.qualifications-text {
    display: flex;
    flex-direction: column;
    background: #E5C8C8;
    padding: 3rem;
    border-radius: 0 20px 20px 0;
    margin-left: -1px;
}

.qualifications-list {
    max-width: 100%;
}

.qualification-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.qual-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.qual-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.qualification-item:first-of-type .qual-content {
    text-align: center;
    width: 100%;
}

.qualification-item:first-of-type .qual-content h3 {
    text-align: center;
}

.qualification-item:nth-of-type(2) .qual-content {
    text-align: center;
    width: 100%;
}

.qualification-item:nth-of-type(2) .qual-content h3 {
    text-align: center;
}

.qualification-item:nth-of-type(3) .qual-content {
    text-align: center;
    width: 100%;
}

.qualification-item:nth-of-type(3) .qual-content h3 {
    text-align: center;
}

.qualification-item:nth-of-type(4) .qual-content {
    text-align: center;
    width: 100%;
}

.qualification-item:nth-of-type(4) .qual-content h3 {
    text-align: center;
}

.qual-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.qual-diploma-image {
    margin-top: 1.5rem;
    width: 76.5%;
    max-width: 76.5%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.diploma-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

/* Contact Section */
#contact.section {
    padding: 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.contact-image .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    min-height: 500px;
}

.contact-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    background: #E5C8C8;
    padding: 3rem;
    border-radius: 20px 20px 0 0;
    margin-left: 0;
}

.contact-text .section-title {
    text-align: center;
}

.contact-info {
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
    width: 220px;
    flex: 0 0 auto;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient);
    color: var(--white);
}

.contact-icon {
    font-size: 1.2rem;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.business-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
}

.business-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.business-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.kved-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: transparent;
    padding: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(61, 74, 42, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(61, 74, 42, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    align-self: center;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.testimonial-image-card {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes marquee {
    0% {
        transform: translateX(calc(-50% - 1rem));
    }
    100% {
        transform: translateX(0);
    }
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0.75rem 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    #about.section {
        padding: calc(2mm + 120px) 0 0 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-numerology {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-content {
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-image {
        display: flex;
        justify-content: center;
        height: auto;
    }

    .about-image .profile-photo {
        width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 0;
    }

    .about-text {
        border-radius: 0;
        margin-left: 0;
        padding: 2rem 1.5rem;
    }

    .qualifications-content {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }

    .qualifications-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .qualifications-image .profile-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 100%;
        border-radius: 0;
    }

    .qualifications-text {
        position: relative;
        z-index: 1;
        background: rgba(229, 200, 200, 0.95);
        backdrop-filter: blur(5px);
        border-radius: 0;
        margin-left: 0;
        padding: 2.5rem 1.5rem;
        min-height: 100%;
    }

    .qualifications-text::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(229, 200, 200, 0.85) 0%, rgba(229, 200, 200, 0.95) 100%);
        z-index: -1;
    }

    .contact-content {
        display: block;
    }

    .contact-text {
        background: #E5C8C8;
        border-radius: 20px;
        margin-left: 0;
        padding: 2.5rem 1.5rem;
    }

    .profile-photo {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .qualification-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .contact-link {
        width: 220px;
        justify-content: center;
    }

    .contact-link:not(:last-child) {
        margin-bottom: 3mm;
    }

    .contact-form {
        margin-top: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .hero-message {
        font-size: 1.1rem;
    }

    .section-title-left {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 1rem;
        overflow: hidden;
    }

    .nav-name-block {
        align-items: flex-start;
        width: 100%;
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo {
        font-size: clamp(1.3rem, 6vw, 4rem);
        font-weight: 900;
        text-align: left;
        white-space: nowrap;
        line-height: 1.2;
    }

    .nav-subtitle {
        text-align: left;
        font-size: 0.7rem;
    }

    .about-text p strong,
    .qualifications-text strong,
    .contact-text strong {
        font-weight: 900 !important;
        color: var(--text-dark);
        font-size: 1.15em;
        text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor, 0 0.5px 0 currentColor, 0 -0.5px 0 currentColor;
        letter-spacing: 0.03em;
    }

    .nav-actions {
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    .nav-cta {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .language-switcher {
        gap: 0.4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-numerology {
        font-size: 1rem;
    }

    .hero-message {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .about-text p strong,
    .qualifications-text strong,
    .contact-text strong {
        font-weight: 900 !important;
        color: var(--text-dark);
        font-size: 1.15em;
    }
}

/* Screens 768px and wider - prevent wrapping */
@media (min-width: 768px) {
    .contact-links {
        flex-wrap: nowrap;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar {
        padding: 0.875rem 30px;
    }
    
    #about.section {
        padding: calc(2mm + 110px) 0 0 0;
    }
    
    .about-content,
    .qualifications-content,
    .contact-content {
        display: block;
    }

    .about-text,
    .qualifications-text,
    .contact-text {
        padding: 2.5rem;
    }

    .qualifications-image .profile-photo,
    .contact-image .profile-photo,
    .contact-video {
        min-height: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        padding: 0.5rem 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 60px 0 40px;
    }

    .hero-name {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .hero-numerology {
        font-size: 0.9rem;
    }

    .hero-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    #about.section {
        padding: calc(2mm + 140px) 0 0 0;
    }
    
    #qualifications.section,
    #contact.section {
        padding: 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title-left {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-text,
    .qualifications-text,
    .contact-text {
        padding: 2rem 1.5rem;
    }

    .qualifications-content,

    .qualification-item {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(3px);
    }

    .contact-link {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(3px);
    }

    .contact-form {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(3px);
        padding: 1.5rem;
        border-radius: 15px;
    }

    .about-text p,
    .qualifications-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-text p strong,
    .qualifications-text strong,
    .contact-text strong {
        font-weight: 900 !important;
        color: var(--text-dark);
        font-size: 1.15em;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .qualification-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .business-info {
        padding: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: clamp(1.2rem, 5.5vw, 3.2rem);
        font-weight: 900;
        white-space: nowrap;
        line-height: 1.2;
    }

    .nav-name-block {
        align-items: flex-start;
        min-width: 0;
        flex: 1 1 auto;
    }

    .nav-subtitle {
        text-align: left;
        font-size: 0.65rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .lang-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 45px;
    }
    
    .language-switcher {
        gap: 0.3rem;
    }
}

