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

:root {
    --dark-blue: #0f1419;
    --ice-blue: #f0f8ff;
    --accent-blue: #00d4ff;
    --text-dark: #0f1419;
    --text-light: rgba(255, 255, 255, 0.95);
    --bg-white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background: var(--accent-blue);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--accent-blue);
    color: var(--text-dark);
}

/* Header Styles */
header {
    background: var(--dark-blue);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(5px);
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

nav a:hover {
    color: var(--accent-blue);
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Footer Styles */
footer {
    background: linear-gradient(180deg, var(--dark-blue) 0%, #0d1a2d 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 214, 152, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-logo p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
    padding-left: 2rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 214, 152, 0.1);
    border: 1px solid rgba(197, 214, 152, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social-link:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-blue);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    footer {
        padding: 4rem 0 2rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 1.5rem;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-blue);
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    nav a {
        display: block;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Styles */
.home-page,
.about-page,
.services-page,
.contact-page,
.terms-page,
.privacy-page {
    padding: 0;
}

.hero-section {
    background: url('assets/img/1.webp') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 4rem 4rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 33, 29, 0.3) 0%, rgba(26, 33, 29, 0.85) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(197, 214, 152, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    font-size: 8rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-section h1:hover {
    transform: translateX(10px);
}

.hero-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    margin-left: 1rem;
    display: inline-block;
    position: relative;
    top: -0.5rem;
    text-transform: lowercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-section h2:hover {
    transform: translateX(5px) scale(1.05);
}

.about-page .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-transform: none;
    letter-spacing: 1px;
    margin-left: 0;
    top: 0;
    display: block;
    margin-top: 2rem;
    line-height: 1.6;
}

.about-page .hero-section h2:hover,
.services-page .hero-section h2:hover,
.contact-page .hero-section h2:hover,
.terms-page .hero-section h2:hover,
.privacy-page .hero-section h2:hover {
    transform: none;
}

/* Privacy Page Styles */
.privacy-hero {
    min-height: 50vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(26, 33, 29, 0.1);
}

.privacy-section {
    margin-bottom: 4rem;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    margin-top: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.privacy-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(26, 33, 29, 0.08);
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-list li strong {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-box {
    background: rgba(197, 214, 152, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    margin-top: 1.5rem;
}

.contact-box p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-box a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 0 1rem;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-section h4 {
        font-size: 1.1rem;
    }

    .privacy-section p {
        font-size: 0.95rem;
    }

    .privacy-list li {
        padding-left: 1.5rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    min-height: 50vh;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
}

.terms-intro {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(26, 33, 29, 0.1);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.terms-section {
    margin-bottom: 4rem;
}

.terms-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-section p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.terms-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(26, 33, 29, 0.08);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-list li strong {
    color: var(--text-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 0 1rem;
    }

    .terms-section h2 {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .terms-section p {
        font-size: 0.95rem;
    }

    .terms-list li {
        padding-left: 1.5rem;
    }
}

.contact-page .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-transform: none;
    letter-spacing: 1px;
    margin-left: 0;
    top: 0;
    display: block;
    margin-top: 2rem;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(197, 214, 152, 0.1);
    border: 1px solid rgba(197, 214, 152, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(197, 214, 152, 0.2);
    border-color: var(--accent-blue);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 214, 152, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(26, 33, 29, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(197, 214, 152, 0.1);
}

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

.submit-button {
    padding: 1.25rem 3rem;
    background: var(--accent-blue);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(197, 214, 152, 0.3);
}

.submit-button:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 33, 29, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

.services-page .hero-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-transform: none;
    letter-spacing: 1px;
    margin-left: 0;
    top: 0;
    display: block;
    margin-top: 2rem;
    line-height: 1.6;
}

/* Services Page Styles */
.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 5rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.section-block.dark .category-title::after {
    background: var(--accent-blue);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.section-block.dark .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.section-block.dark .service-header h4 {
    color: white;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-blue);
    white-space: nowrap;
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-block.dark .service-description {
    color: rgba(255, 255, 255, 0.85);
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.section-block.dark .service-details {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.detail-item {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.section-block.dark .detail-item {
    color: rgba(255, 255, 255, 0.9);
}

.package-card {
    background: linear-gradient(135deg, rgba(197, 214, 152, 0.1) 0%, rgba(197, 214, 152, 0.05) 100%);
    border: 2px solid var(--accent-blue);
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--accent-blue);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.trial-card {
    background: linear-gradient(135deg, rgba(197, 214, 152, 0.15) 0%, rgba(197, 214, 152, 0.08) 100%);
    border: 2px dashed var(--accent-blue);
}

.trial-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    background: var(--accent-blue);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.service-header-small {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.service-header-small h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.service-price-small {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    white-space: nowrap;
}

.highlight-service {
    background: rgba(197, 214, 152, 0.15);
    border-left-color: var(--accent-blue);
    border-left-width: 5px;
}

.hero-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 3rem;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Special Elements */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-blue);
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(197, 214, 152, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 214, 152, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-scroll-indicator {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: fadeInUp 1.5s ease-out;
    z-index: 3;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: white;
    position: relative;
    animation: scrollArrow 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 4rem;
    background: var(--ice-blue);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.content-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.section-block {
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 214, 152, 0.4), transparent);
}

.section-number {
    position: absolute;
    top: 4rem;
    left: 4rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(197, 214, 152, 0.15);
    line-height: 1;
    z-index: 0;
}

.section-block.dark .section-number {
    color: rgba(255, 255, 255, 0.05);
}

.content-grid.modern-layout {
    position: relative;
    z-index: 1;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-label {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(197, 214, 152, 0.2);
    border: 1px solid rgba(197, 214, 152, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    color: var(--accent-blue);
}

.section-block.dark .text-label {
    background: rgba(197, 214, 152, 0.15);
    color: var(--accent-blue);
    border-color: rgba(197, 214, 152, 0.3);
}

.image-container.large-image {
    aspect-ratio: 3 / 4;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 33, 29, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 0.6rem 1.5rem;
    background: rgba(197, 214, 152, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.image-container:hover .image-badge {
    opacity: 1;
    transform: translateY(0);
}

.quote-box {
    background: rgba(197, 214, 152, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-blue);
    margin: 2.5rem 0;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--accent-blue);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.quote-box p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    padding-left: 1rem;
}

.section-block.dark .quote-box {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--accent-blue);
}

/* Modern Section Divider */
.section-divider-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0;
    position: relative;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 214, 152, 0.4), transparent);
    max-width: 200px;
}

.divider-icon {
    font-size: 2rem;
    opacity: 0.6;
    animation: float 3s infinite ease-in-out;
}

/* Modern Highlight Box */
.highlight-box-modern {
    background: white;
    padding: 4rem;
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-box-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(197, 214, 152, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 214, 152, 0.1);
    border-radius: 16px;
}

.highlight-box-modern h5 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-box-modern p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.program-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(197, 214, 152, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: rgba(197, 214, 152, 0.2);
    transform: translateY(-3px);
}

.option-icon {
    font-size: 1.5rem;
}

.option-item span:last-child {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(197, 214, 152, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(197, 214, 152, 0.2);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: inherit;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

.section-block.dark {
    background: var(--dark-blue);
    color: white;
}

.section-block.light {
    background: var(--ice-blue);
    color: var(--text-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.text-content {
    font-size: 1.05rem;
    line-height: 2;
    color: inherit;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-content p {
    margin-bottom: 2rem;
}

.text-content p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 2.2;
}

.image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ddd;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 33, 29, 0.1) 0%, rgba(197, 214, 152, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.image-container.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-container:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.image-container:hover::before {
    opacity: 1;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) contrast(1);
}

.image-container:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.05);
}

.highlight-box {
    background: var(--ice-blue);
    padding: 4rem;
    margin: 4rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    border-left: 5px solid var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-box:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 214, 152, 0.08) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.highlight-box:hover::before {
    opacity: 1;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .section-block {
        padding: 5rem 3rem;
    }

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

    .program-options {
        grid-template-columns: 1fr;
    }

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

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

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

    .service-card,
    .service-item {
        padding: 2rem;
    }

    .service-header h4,
    .service-header-small h4 {
        font-size: 1.2rem;
    }

    .service-price,
    .service-price-small {
        font-size: 1.4rem;
    }

    .contact-form-container {
        padding: 3rem 2rem;
    }

    .form-header h3 {
        font-size: 2rem;
    }

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

    .submit-button {
        width: 100%;
    }

    .section-number {
        top: 2rem;
        left: 2rem;
        font-size: 5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 0 2rem 3rem;
    }

    .hero-section h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-section h2 {
        font-size: 2rem;
        margin-left: 0.5rem;
    }

    .hero-section h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .section-block {
        padding: 4rem 2rem;
    }

    .content-grid {
        gap: 2.5rem;
    }

    .highlight-box,
    .highlight-box-modern {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }

    .text-content {
        font-size: 1rem;
    }

    .text-content p:first-child {
        font-size: 1.1rem;
    }

    .features-section {
        padding: 4rem 2rem;
    }

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

    .section-number {
        font-size: 4rem;
        top: 1.5rem;
        left: 1.5rem;
    }

    .highlight-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .highlight-box-modern h5 {
        font-size: 1.5rem;
    }

    .shape {
        display: none;
    }
}
