/* Main styles for domain.com */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background-color: #F5F7FA;
    color: #333333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #20A39E;
    transition: all 0.3s ease;
}

a:hover {
    color: #187e79;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
}

.logo svg {
    height: 40px;
}

/* Navigation */
.nav-desktop {
    display: flex;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop li {
    margin-left: 25px;
}

.nav-desktop a {
    font-weight: 500;
}

.nav-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333333;
}

/* Contact info */
.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a {
    margin-left: 15px;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #20A39E 0%, #7D5BA6 100%);
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #20A39E;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #187e79;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white;
}

/* About section */
.about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333333;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

/* Services section */
.services {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    color: #333333;
    padding: 0 0 30px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
}

.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-card h3, .service-card p, .service-card ul {
    padding: 0 30px;
}

/* Why choose us section */
.why-us {
    padding: 80px 0;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1 1 300px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
}

/* Cases section */
.cases {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.case-slider {
    overflow: hidden;
    position: relative;
}

.case-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.case-slide {
    min-width: 100%;
    padding: 20px;
}

.case-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.case-image {
    flex: 0 0 40%;
    max-width: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-info {
    flex: 1;
}

.case-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.case-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #D0D0D0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.case-dot.active {
    background-color: #20A39E;
}

/* FAQ section */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:after {
    content: '+';
    font-size: 22px;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 1000px;
}

/* Order form section */
.order {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFC857 0%, #7D5BA6 100%);
    color: white;
}

.form-container {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.form-title {
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #D0D0D0;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #20A39E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 163, 158, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
    margin-top: 6px;
}

.form-check label {
    color: #333333;
    font-size: 14px;
}

/* Footer */
footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #20A39E;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Map */
.map {
    height: 300px;
    width: 100%;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-popup p {
    margin-right: 20px;
}

.cookie-btn {
    white-space: nowrap;
}

/* Policy pages */
.policy {
    padding: 60px 0;
}

.policy-container {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.policy h1 {
    margin-bottom: 30px;
}

.policy h2 {
    margin: 30px 0 15px;
}

.policy p {
    margin-bottom: 15px;
}

.policy ul, .policy ol {
    margin: 15px 0 15px 20px;
}

.policy li {
    margin-bottom: 10px;
}

/* Thank you page */
.thankyou {
    text-align: center;
    padding: 100px 0;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px solid #20A39E;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.thankyou-icon {
    font-size: 60px;
    color: #20A39E;
    margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .benefits,
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-mobile {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-mobile.active {
        display: block;
    }
    
    .nav-mobile ul {
        list-style: none;
    }
    
    .nav-mobile li {
        border-top: 1px solid #F5F7FA;
    }
    
    .nav-mobile a {
        display: block;
        padding: 15px 20px;
    }
    
    .hero h1 {
        font-size: 34px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .case-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .benefits,
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-info {
        display: none;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
