/* Base Styles */
:root {
    --primary-color: #4a6da7;
    --secondary-color: #a3c2e6;
    --accent-color: #2c4162;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #f5f7fa;
    --section-bg: #ffffff;
    --border-color: #e0e6f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --basic-color: #5b8ad5;
    --premium-color: #4a9fb8;
    --exclusive-color: #6a7cb3;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.6rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-color);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu li a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Combined Section */
.hero-combined {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 150px 0 80px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(74, 109, 167, 0.9), rgba(44, 65, 98, 0.7));
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    color: var(--text-color);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 0.95rem;
}

/* About Section */
.about {
    background-color: var(--section-bg);
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 60px;
}

.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    height: 300px;
}

.about-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-card:hover .about-card-image {
    transform: scale(1.1);
}

.about-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.about-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.about-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.about-quote {
    max-width: 800px;
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    position: relative;
    padding: 30px;
    margin-top: 20px;
}

.about-quote:before,
.about-quote:after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: var(--secondary-color);
    font-family: serif;
    line-height: 0;
}

.about-quote:before {
    left: 0;
    top: 30px;
}

.about-quote:after {
    right: 0;
    bottom: 0;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--background-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    background-color: var(--section-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    min-height: 220px; /* Все карточки одной высоты, можно скорректировать */
    flex-direction: column;
    justify-content: flex-start;
}

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

.step-number {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Examples Section */
.examples {
    background-color: var(--section-bg);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.example-item {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.example-item:hover {
    transform: translateY(-10px);
}

.example-video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.example-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.play-button:hover {
    background-color: var(--primary-color);
}

.play-button:hover i {
    color: var(--light-text);
}

.example-info {
    padding: 20px;
}

.example-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.examples-note {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    color: #777;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--background-color);
    position: relative;
}

.testimonials:before {
    content: '"';
    font-size: 15rem;
    position: absolute;
    top: 50px;
    left: 50px;
    color: rgba(163, 194, 230, 0.2);
    font-family: serif;
    line-height: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.testimonial {
    background-color: var(--section-bg);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 20px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--accent-color);
}

/* Services Section */
.services {
    background-color: var(--section-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-header {
    padding: 25px 20px;
    text-align: center;
    color: var(--light-text);
}

.service-header.basic {
    background-color: var(--basic-color);
}

.service-header.premium {
    background-color: var(--premium-color);
}

.service-header.exclusive {
    background-color: var(--exclusive-color);
}

.service-header h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.service-price-usd {
    font-size: 1rem;
    opacity: 0.8;
}

.service-features {
    padding: 25px;
    flex-grow: 1;
}

.service-features ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-item .btn {
    margin: 0 25px 25px;
}

.service-item.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Additional Services */
.additional-services {
    margin-top: 60px;
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.additional-service {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

.additional-service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.additional-service-icon i {
    color: var(--light-text);
    font-size: 1.2rem;
}

.additional-service-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.additional-service-content p {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0;
}

/* Order Section */
.order {
    background-color: var(--background-color);
}

.order-form {
    background-color: var(--section-bg);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.form-group {
    margin-bottom: 30px;
}

.form-group h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    flex: 1;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

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

.checkbox-field {
    display: flex;
    align-items: center;
}

.checkbox-field input {
    width: auto;
    margin-right: 10px;
}

.checkbox-field label {
    margin-bottom: 0;
}

.film-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.film-type {
    position: relative;
}

.film-type input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.film-type label {
    display: block;
    padding: 15px;
    background-color: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.film-type input:checked + label {
    border-color: var(--primary-color);
    background-color: rgba(74, 109, 167, 0.1);
}

.film-type-name {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.film-type-price {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.additional-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.additional-option {
    display: flex;
    align-items: center;
}

.additional-option input {
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Blog Section */
.blog {
    background-color: var(--section-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-post {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

.blog-excerpt {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

/* Partners Section */
.partners {
    background-color: var(--background-color);
}

.partners-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.partners-text {
    flex: 1;
}

.partners-text p {
    margin-bottom: 20px;
}

.partners-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.partners-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.partners-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.partners-image {
    flex: 1;
}

.partners-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Contacts Section */
.contacts {
    background-color: var(--section-bg);
}

.contacts-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--light-text);
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-form h3 {
    margin-bottom: 20px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 15px;
    display: block;
}

.footer-nav {
    flex: 1;
}

.footer-nav h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: var(--light-text);
    opacity: 0.8;
}

.footer-nav ul li a:hover {
    opacity: 1;
}

.footer-social {
    flex: 1;
}

.footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    color: var(--light-text);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--light-text);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .features-container,
    .about-cards,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-content,
    .contacts-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--section-bg);
        box-shadow: 0 5px 10px var(--shadow-color);
        flex-direction: column;
        padding: 20px 0;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .about-cards,
    .services-grid,
    .examples-grid,
    .blog-grid,
    .steps,
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .film-types,
    .additional-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-combined {
        padding: 120px 0 60px;
    }
    
    .order-form {
        padding: 20px;
    }
}
