/* Main styles for domain accounting website */
:root {
    --bg-color: #1e1e2f;
    --accent-pink: #e63946;
    --accent-yellow: #ffb703;
    --text-white: #ffffff;
    --text-gray: #cfcfcf;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: var(--bg-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
    text-decoration: none;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-yellow);
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-yellow);
}

/* Hero section */
.hero {
    padding: 100px 0;
    background: linear-gradient(rgba(30, 30, 47, 0.8), rgba(30, 30, 47, 0.9)), url('./img/YHIZd9.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-yellow));
    color: var(--text-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

/* Section styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About section */
.about-container {
    display: flex;
    gap: 30px;
}

.about-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
    text-align: center;
    position: relative;
}

.about-box:hover {
    transform: translateY(-10px);
}

.about-box h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.about-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent-yellow);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-box h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

/* Why choose us section */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid var(--accent-pink);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.feature h3 {
    margin: 15px 0;
    color: var(--accent-yellow);
}

/* Testimonials section */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name h4 {
    color: var(--accent-yellow);
    margin-bottom: 5px;
}

.testimonial-name p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
}

/* FAQ section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-answer {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 20px;
    color: var(--text-gray);
    display: none;
}

.faq-active .faq-answer {
    display: block;
}

/* Form styles */
.form-section {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 15px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--text-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent-yellow);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    color: var(--text-white);
}

.checkbox-group label a {
    color: var(--text-white);
}

.submit-btn {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-yellow));
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.error-message {
    background-color: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--accent-pink);
    color: var(--text-white);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: left;
}

.error-message p {
    margin: 5px 0;
}

/* Blog section */
.blog-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.blog-container h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

/* Contact section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-box h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-item p {
    margin-left: 0;
}

.map-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-yellow);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--accent-yellow);
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup p {
    margin-bottom: 15px;
}

.cookie-popup button {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-yellow));
    color: var(--text-white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* Legal pages */
.legal-page {
    background-color: var(--text-white);
    color: #333;
    padding: 50px;
    border-radius: 10px;
    border: 2px solid var(--accent-pink);
    margin: 50px auto;
    max-width: 900px;
}

.legal-page h1 {
    color: var(--accent-pink);
    margin-bottom: 30px;
}

.legal-page h2 {
    color: var(--bg-color);
    margin: 30px 0 15px;
}

.legal-page p,
.legal-page ul {
    margin-bottom: 20px;
}

.legal-page ul {
    padding-left: 20px;
}

/* Thanks page styles */
.thanks-page {
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        padding: 20px;
        z-index: 100;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 0;
        order: 2;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }
    
    .about-container,
    .testimonials-container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 70px 0;
    }
} 