/* 
Main Styles for domain Accounting Services
Color Palette:
- Main Background: #002D5C (Deep Blue Ocean)
- Text Color: #F7F9FA (White Ice)
- Accents: Gradient from #FF6F61 (Coral) to #B4FF39 (Neon Lime)
- Buttons: #000000 (Glossy Black) with #00FFB2 (Neon Glow)
- Dividers: #C0C0C0 (Silver)
*/

/* Base Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #002D5C;
    color: #F7F9FA;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #F7F9FA;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #B4FF39;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #FF6F61, #B4FF39);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.accent-line {
    width: 80px;
    height: 4px;
    margin: 0 auto;
    background: linear-gradient(90deg, #FF6F61, #B4FF39);
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background-color: #000000;
    color: #F7F9FA;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    color: #F7F9FA;
}

.glow-btn {
    box-shadow: 0 0 10px rgba(0, 255, 178, 0.5);
}

.glow-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 178, 0.8);
}

.hero-content .btn {
    padding: 12px 28px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 45, 92, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #FF6F61, #B4FF39);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6F61, #B4FF39);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
}

.mobile-toggle button {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F7F9FA;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: radial-gradient(circle at 70% 50%, rgba(0, 45, 92, 1) 0%, rgba(0, 30, 60, 1) 100%);
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.svg');
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    order: 1;
    margin-left: 40px;
}

.hero-image {
    order: 2;
}

.hero-content h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-image {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    width: 40%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
}

@keyframes float {
    0% {
        transform: translateY(-50%) translateZ(0);
    }
    50% {
        transform: translateY(-55%) translateZ(0);
    }
    100% {
        transform: translateY(-50%) translateZ(0);
    }
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FF6F61;
}

.about-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transform: skewX(-3deg);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.benefit-card:hover {
    transform: skewX(-3deg) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 111, 97, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(180, 255, 57, 0.1));
    border-radius: 50%;
    color: #B4FF39;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(180, 255, 57, 0.3);
}

.service-image {
    width: 100%;
    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-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #FF6F61;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(192, 192, 192, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 111, 97, 0.3);
}

.testimonial-quote {
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 111, 97, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #B4FF39;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: none;
    color: #F7F9FA;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question.active {
    background-color: rgba(255, 111, 97, 0.1);
    color: #B4FF39;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

/* Order Form Section */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 15px;
    transform: skewX(-2deg);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.order-form {
    transform: skewX(2deg);
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    color: #F7F9FA;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.form-group select option {
    background-color: #002D5C;
    color: #F7F9FA;
    padding: 10px;
    font-size: 1rem;
}

.form-group select:hover {
    border-color: #FF6F61;
}

.form-group select:focus option:hover,
.form-group select option:hover,
.form-group select option:checked {
    background-color: #FF6F61;
    color: white;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #B4FF39;
    box-shadow: 0 0 10px rgba(180, 255, 57, 0.3);
}

.form-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FF6F61;
}

.submit-group {
    text-align: center;
    margin-top: 15px;
}

.submit-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    width: 100%;
    gap: 30px;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(180, 255, 57, 0.1));
    border-radius: 50%;
    color: #B4FF39;
}

.contact-text h4 {
    color: #FF6F61;
    margin-bottom: 5px;
}

/* Footer Styles */
.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #FF6F61, #B4FF39);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-contact h4,
.footer-links h4 {
    color: #FF6F61;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    font-size: 0.9rem;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.active {
    bottom: 0;
}

#accept-cookies {
    background-color: #FF6F61;
    color: #F7F9FA;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

#accept-cookies:hover {
    background-color: #B4FF39;
    color: #002D5C;
}

/* Thank You Page */
.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.thankyou-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 111, 97, 0.5);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.thankyou-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: 5px;
    background: linear-gradient(90deg, #FF6F61, #B4FF39);
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    padding: 10px;
}

.thankyou-actions {
    margin-top: 30px;
}

.thankyou-actions .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thankyou-actions .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 178, 0.4);
}

/* Policy Pages */
.policy-content {
    max-width: 900px;
    margin: 120px auto 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(192, 192, 192, 0.2);
    padding: 40px;
    border-radius: 15px;
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: #FF6F61;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: disc;
    margin-left: 20px;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-image {
        right: 0;
    }
    
    .hero-image img {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 30px;
        margin-left: 0;
    }
    
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
        text-align: center;
        width: 100%;
        animation: none;
    }
    
    .hero-image img {
        max-width: 80%;
        border-radius: 10px;
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
    
    .hero-section {
        height: auto;
        padding: 120px 0 60px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .container {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-top: 0 !important;
        margin-bottom: 30px;
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        transform: none;
    }
    
    /* Mobile Menu */
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 45, 92, 0.98);
        padding: 80px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-container {
        padding: 15px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .policy-content {
        padding: 25px;
        margin-top: 100px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-image {
        margin-top: 20px;
    }
    
    .hero-image img {
        max-width: 90%;
        transform: none;
    }
    
    .hero-section {
        padding: 100px 0 40px;
    }
    
    .cookie-consent {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
