/* 
* Main CSS file for domain.com
* Color palette: #3A0CA3 (purple), #FFBE0B (yellow), #FB5607 (orange), #00F5D4 (turquoise), #14213D (dark blue)
*/

/* === RESET & BASE STYLES === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #3A0CA3;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FB5607;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.thanks-page .container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3A0CA3 0%, #5b3cc4 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5b3cc4 0%, #3A0CA3 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(58, 12, 163, 0.2);
}

.btn-primary-outline {
    background: transparent;
    border: 2px solid #3A0CA3;
    color: #3A0CA3;
}

.btn-primary-outline:hover {
    background: #3A0CA3;
    color: white;
}

.btn-submit {
    background: linear-gradient(135deg, #FB5607 0%, #ff7a38 100%);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff7a38 0%, #FB5607 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 86, 7, 0.2);
}

/* === HEADER === */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14213D;
}

.main-nav .menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-nav .menu li a {
    font-weight: 500;
    color: #14213D;
    position: relative;
}

.main-nav .menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3A0CA3;
    transition: width 0.3s ease;
}

.main-nav .menu li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, #14213D 0%, #233156 100%);
    color: white;
    padding: 80px 0;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #14213D;
    font-size: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #eaeaea 100%);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #14213D;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    padding: 20px;
    background: linear-gradient(135deg, #3A0CA3 0%, #5b3cc4 100%);
    color: white;
    font-size: 1.3rem;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card p {
    padding: 20px;
}

/* === BENEFITS SECTION === */
.benefits-section {
    padding: 80px 0;
    background-color: #14213D;
    color: white;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: #FFBE0B;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* === PROCESS SECTION === */
.process-section {
    padding: 80px 0;
    background-color: #fff;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #14213D;
    font-size: 2rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.step {
    flex-basis: calc(25% - 20px);
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #FB5607 0%, #ff7a38 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #3A0CA3;
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #eaeaea 100%);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #14213D;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: #FFBE0B;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.2;
}

.testimonial blockquote p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    margin-top: 15px;
}

.client-name {
    font-weight: 700;
    color: #3A0CA3;
}

.client-position {
    font-size: 0.9rem;
    color: #666;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #14213D 0%, #233156 100%);
    color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.form-error {
    max-width: 600px;
    margin: 0 auto 20px;
    background-color: rgba(251, 86, 7, 0.2);
    border-left: 4px solid #FB5607;
    padding: 15px;
    border-radius: 5px;
    color: white;
}

.form-error p {
    margin: 0;
    font-weight: 500;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group a {
    color: #00F5D4;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #FFBE0B;
}

/* === FOOTER === */
.site-footer {
    background-color: #3A0CA3;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-info p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
    color: #FFBE0B;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact address {
    font-style: normal;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-contact address p {
    margin-bottom: 10px;
}

.footer-contact a,
.footer-links a,
.footer-legal a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: #00F5D4;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === THANK YOU PAGE === */
.thanks-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    width: 100%;
}

.thanks-section {
    padding: 80px 0;
    width: 100%;
}

.full-center {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 0;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
}

.thanks-content svg {
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #3A0CA3;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.thanks-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.response-time {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 30px auto;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.button-center {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* === POLICY PAGES === */
.policy-page {
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #14213D;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3A0CA3;
}

.policy-section p,
.policy-section ul,
.policy-section address {
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    list-style-type: disc;
}

.policy-section ul li {
    margin-bottom: 8px;
}

.policy-section a {
    color: #3A0CA3;
    text-decoration: underline;
}

.policy-section a:hover {
    color: #FB5607;
}

/* === COOKIE POPUP === */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: #14213D;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.cookie-popup.show {
    transform: translateY(-100px);
    opacity: 1;
}

.cookie-popup p {
    margin-right: 20px;
    flex: 1;
}

.cookie-popup button {
    background-color: #FFBE0B;
    color: #14213D;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
    background-color: #FB5607;
    color: white;
}

/* === MEDIA QUERIES === */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-section .container,
    .about-content {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .about-image,
    .about-text {
        flex: none;
        width: 100%;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .step {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .nav-toggle-label {
        display: block;
        position: relative;
        cursor: pointer;
        width: 30px;
        height: 20px;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        position: absolute;
        height: 2px;
        width: 30px;
        background-color: #14213D;
        transition: transform 0.3s ease;
    }
    
    .nav-toggle-label span {
        top: 9px;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
    }
    
    .nav-toggle-label span::before {
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav .menu {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-toggle:checked ~ .main-nav {
        height: auto;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span {
        transform: rotate(45deg);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::before {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(90deg) translate(-8px);
    }
    
    .step {
        flex-basis: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
} 