/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1C2237;
    background-color: #f5f2ed;
    overflow-x: hidden;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER STYLES === */
.header {
    background: rgba(245, 242, 237, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(123, 30, 58, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: #7B1E3A;
    text-decoration: none;
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #1C2237;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7B1E3A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2AB7CA, #7B1E3A);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-phone {
    color: #7B1E3A;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #2AB7CA;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #7B1E3A;
    transition: all 0.3s ease;
}

/* === MAIN CONTENT === */
.main-content {
    margin-top: 80px;
}

/* === SECTION STYLES === */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1C2237;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #4A4A4A;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, rgba(245, 242, 237, 0.9), rgba(42, 183, 202, 0.1));
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/qErjse.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #1C2237;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 24px;
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2AB7CA, #7B1E3A);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(123, 30, 58, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 30, 58, 0.4);
}

/* === ABOUT SECTION === */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
}

.about-text h3 {
    color: #7B1E3A;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* === SERVICES SECTION === */
.services {
    background: #f5f2ed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 30, 58, 0.15);
    border-color: #2AB7CA;
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2AB7CA, #7B1E3A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    position: relative;
    top: -15px;
    box-shadow: 0 5px 15px rgba(123, 30, 58, 0.3);
}

.service-card h3 {
    font-size: 22px;
    color: #1C2237;
    margin-bottom: 15px;
    margin-top: -10px;
}

.service-card p {
    color: #4A4A4A;
    line-height: 1.6;
    flex-grow: 1;
}

/* === PROCESS SECTION === */
.process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B1E3A, #2AB7CA);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 20px;
    color: #1C2237;
    margin-bottom: 15px;
}

.process-step p {
    color: #4A4A4A;
    line-height: 1.6;
}

/* === ADVANTAGES SECTION === */
.advantages {
    background: #f5f2ed;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2AB7CA, #7B1E3A);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-content h4 {
    color: #1C2237;
    font-size: 18px;
    margin-bottom: 10px;
}

.advantage-content p {
    color: #4A4A4A;
    line-height: 1.6;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #f5f2ed;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: #2AB7CA;
    position: absolute;
    top: -10px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #7B1E3A;
    font-size: 18px;
}

.testimonial-position {
    color: #4A4A4A;
    font-size: 14px;
    margin-top: 5px;
}

/* === CONTACT FORM SECTION === */
.contact-form-section {
    background: linear-gradient(135deg, #f5f2ed, rgba(42, 183, 202, 0.05));
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/yrIiej.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1C2237;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2AB7CA;
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 183, 202, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.4;
    color: #4A4A4A;
}

.checkbox-group a {
    color: #7B1E3A;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    background: linear-gradient(135deg, #2AB7CA, #7B1E3A);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 30, 58, 0.3);
}

/* === FOOTER STYLES === */
.footer {
    background: #1C2237;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #2AB7CA;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.company-description {
    color: #b0b0b0;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    color: #b0b0b0;
    line-height: 1.6;
}

.contact-item strong {
    color: white;
}

.contact-item a {
    color: #2AB7CA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
}

.legal-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-menu a:hover {
    color: #2AB7CA;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-links span {
    color: #b0b0b0;
    font-size: 14px;
}

/* === COOKIE POPUP === */
#cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border: 2px solid #2AB7CA;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content h4 {
    color: #7B1E3A;
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-content p {
    color: #4A4A4A;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.accept-btn {
    background: linear-gradient(135deg, #2AB7CA, #7B1E3A);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.accept-btn:hover {
    transform: translateY(-2px);
}

.policy-link {
    color: #7B1E3A;
    text-decoration: none;
    font-size: 14px;
}

.policy-link:hover {
    text-decoration: underline;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .navigation.mobile-open {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* === TABLET/MEDIUM MOBILE FORM STYLES === */
    .form-container {
        padding: 25px 20px;
        margin: 0 15px;
        border-radius: 18px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 7px;
    }
    
    .form-group input,
    .form-group select {
        padding: 13px 16px;
        font-size: 15px;
        border-radius: 10px;
        border: 2px solid #e0e0e0;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A4A4A'><path d='M7 10l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 18px;
        padding-right: 38px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .checkbox-group {
        margin-top: 15px;
        padding: 15px;
        background: rgba(245, 242, 237, 0.3);
        border-radius: 10px;
    }
    
    .checkbox-group label {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 10px;
        accent-color: #2AB7CA;
    }
    
    .submit-button {
        padding: 16px 30px;
        font-size: 16px;
        border-radius: 12px;
        margin-top: 20px;
        width: 100%;
        font-weight: 600;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        top: -12px;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-top: -8px;
    }
    
    /* === MOBILE FORM STYLES === */
    .form-container {
        padding: 20px 15px;
        margin: 0 10px;
        border-radius: 15px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
        border: 1px solid #ddd;
        background: #fafafa;
        transition: all 0.2s ease;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A4A4A'><path d='M7 10l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 20px;
        padding-right: 40px;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #2AB7CA;
        background: white;
        box-shadow: 0 0 0 2px rgba(42, 183, 202, 0.2);
        transform: translateY(-1px);
    }
    
    .checkbox-group {
        margin-top: 12px;
        padding: 12px;
        background: rgba(245, 242, 237, 0.5);
        border-radius: 8px;
        border: 1px solid #e8e8e8;
    }
    
    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        margin-right: 8px;
        flex-shrink: 0;
        accent-color: #2AB7CA;
    }
    
    .checkbox-group label {
        font-size: 12px;
        line-height: 1.4;
        color: #333;
        margin-bottom: 0;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .checkbox-group a {
        color: #7B1E3A;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .submit-button {
        padding: 16px 30px;
        font-size: 17px;
        border-radius: 10px;
        margin-top: 20px;
        width: 100%;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(123, 30, 58, 0.4);
        transition: all 0.3s ease;
    }
    
    .submit-button:hover,
    .submit-button:focus {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(123, 30, 58, 0.5);
    }
    
    .submit-button:active {
        transform: translateY(0);
    }
    
    /* Form section adjustments */
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-section .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .contact-form-section .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    #cookie-popup {
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .accept-btn {
        text-align: center;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; } 