/* 
* domain - Financial Audit Company
* Main stylesheet
*/

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #FFFFF0; /* Ivory */
    background-color: #0F0F0F; /* Off-black */
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 15px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: #6C33FF; /* Electric Indigo */
    color: #FFFFF0;
}

.btn-primary:hover {
    background: #5821E6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 51, 255, 0.3);
}

.btn-secondary {
    background: #FF6F61; /* Neon Coral */
    color: #FFFFF0;
}

.btn-secondary:hover {
    background: #E65E50;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 111, 97, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #6C33FF;
    color: #6C33FF;
}

.btn-outline:hover {
    background: #6C33FF;
    color: #FFFFF0;
}

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 51, 255, 0.2);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6C33FF;
    text-transform: lowercase;
}

.desktop-menu {
    display: none;
}

.desktop-menu ul {
    display: flex;
    align-items: center;
}

.desktop-menu li {
    margin: 0 15px;
}

.desktop-menu a:hover {
    color: #6C33FF;
}

.mobile-menu-toggle {
    display: block;
}

.menu-toggle {
    font-size: 1.5rem;
    color: #FFFFF0;
}

.header-contact {
    display: none;
}

.mobile-menu {
    margin-top: 20px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
}

.mobile-menu a {
    display: block;
    padding: 10px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('./img/BtRzj0.jpg') center/cover no-repeat;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.8), rgba(108, 51, 255, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

/* === BENEFITS SECTION === */
.benefits {
    background-color: #0F0F0F;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card {
    background: rgba(108, 51, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 51, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 51, 255, 0.3);
    box-shadow: 0 15px 30px rgba(108, 51, 255, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* === SERVICES SECTION === */
.services {
    background-color: #0A0A0A;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-card {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.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-content {
    padding: 30px;
}

.service-content h3 {
    color: #FF6F61;
}

.service-content p {
    margin-bottom: 20px;
}

/* === WHY US SECTION === */
.why-us {
    background-color: #0F0F0F;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: rgba(255, 111, 97, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 111, 97, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6F61;
    margin-bottom: 10px;
}

.why-us-points {
    display: grid;
    gap: 20px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.point-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background-color: #0A0A0A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(108, 51, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 51, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote {
    font-style: italic;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: #6C33FF;
    position: absolute;
    top: -20px;
    left: 0;
    font-family: serif;
}

.author-name {
    font-weight: 600;
}

.author-company {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === CONTACT SECTION === */
.contact {
    background-color: #0F0F0F;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    background: rgba(173, 232, 175, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #ADE8AF;
}

/* === ORDER FORM SECTION === */
.order-form {
    background-color: #0A0A0A;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(108, 51, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(108, 51, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #6C33FF, #FF6F61);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #FFFFF0;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 51, 255, 0.2);
    border-radius: 8px;
    color: #FFFFF0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

select option {
    background-color: #0F0F0F;
    color: #FFFFF0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #6C33FF;
    box-shadow: 0 0 0 3px rgba(108, 51, 255, 0.2);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236C33FF' 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: 16px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    accent-color: #6C33FF;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox a {
    color: #FF6F61;
    text-decoration: underline;
}

.checkbox a:hover {
    color: #6C33FF;
}

.form-submit {
    text-align: center;
}

/* === FOOTER === */
footer {
    background-color: #070707;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(108, 51, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6C33FF;
    text-transform: lowercase;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: #FF6F61;
}

.footer-links ul {
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: #6C33FF;
    padding-left: 5px;
}

.footer-contact a:hover {
    color: #6C33FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* === COOKIE POPUP === */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    z-index: 1000;
    max-width: 90%;
    width: 400px;
    border: 1px solid rgba(108, 51, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease forwards;
}

.cookie-content {
    text-align: center;
}

.cookie-content h3 {
    color: #6C33FF;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* === POLICY PAGES === */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(108, 51, 255, 0.2);
}

.policy-content h2 {
    color: #6C33FF;
}

.policy-content h3 {
    color: #FF6F61;
    font-size: 1.5rem;
    margin-top: 30px;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

.back-to-home {
    margin-top: 40px;
    text-align: center;
}

/* === THANK YOU PAGE === */
.thank-you {
    text-align: center;
}

.thank-you h2 {
    color: #6C33FF;
    margin-bottom: 20px;
}

.thank-icon {
    width: 80px;
    height: 80px;
    background: rgba(173, 232, 175, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thank-icon svg {
    width: 40px;
    height: 40px;
}

/* === RESPONSIVE STYLES === */
@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .desktop-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .header-contact {
        display: block;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .why-us-content {
        flex-direction: row;
    }
    
    .why-us-stats {
        width: 40%;
        grid-template-columns: 1fr 1fr;
    }
    
    .why-us-points {
        width: 60%;
    }
}
