/* Main Styles for Domain Accounting */

:root {
    --dark-indigo: #1B1F3B;
    --yellow-gold: #F4D35E;
    --olive-green: #7FB069;
    --white-text: #F9F9F9;
    --ruby-red: #E5383B;
    --main-font: 'Roboto', 'Open Sans', sans-serif;
    --heading-font: 'Poppins', 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--main-font);
    background-color: var(--dark-indigo);
    color: var(--white-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--ruby-red);
    margin-bottom: 1rem;
}

a {
    color: var(--yellow-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--ruby-red);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--yellow-gold);
    color: var(--dark-indigo);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-image: linear-gradient(to right, var(--yellow-gold), var(--ruby-red));
    color: var(--white-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta {
    background-image: linear-gradient(to right, var(--yellow-gold), var(--ruby-red));
    color: var(--white-text);
    font-size: 18px;
    padding: 15px 40px;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 211, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(244, 211, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 211, 94, 0);
    }
}

/* Header Styles */
header {
    background-color: rgba(27, 31, 59, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white-text);
}

.logo a {
    color: var(--white-text);
}

.nav-desktop {
    display: flex;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop ul li {
    margin-left: 30px;
}

.nav-desktop ul li a {
    color: var(--white-text);
    font-weight: 500;
    position: relative;
}

.nav-desktop ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--yellow-gold);
    transition: width 0.3s ease;
}

.nav-desktop ul li a:hover:after {
    width: 100%;
}

.phone-number {
    color: var(--yellow-gold);
    font-weight: 600;
}

/* Mobile Menu */
.nav-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    background-color: var(--white-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--dark-indigo);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 31, 59, 0.9), rgba(27, 31, 59, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(244, 211, 94, 0.2);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--yellow-gold);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Advantages Section */
.advantages {
    background-color: rgba(127, 176, 105, 0.1);
    padding: 100px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    font-size: 40px;
    color: var(--olive-green);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    font-size: 120px;
    color: rgba(244, 211, 94, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    color: var(--yellow-gold);
}

/* Form Section */
.form-section {
    background-color: rgba(229, 56, 59, 0.05);
    padding: 100px 0;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(244, 211, 94, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--white-text);
    transition: all 0.3s ease;
}

select.form-control {
    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;
    padding-right: 30px;
}

select.form-control option {
    background-color: var(--dark-indigo);
    color: var(--white-text);
}

.form-control:focus {
    border-color: var(--yellow-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 211, 94, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--white-text);
}

.faq-answer {
    padding: 0 0 15px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(27, 31, 59, 0.95), rgba(229, 56, 59, 0.15));
    padding: 80px 0 20px;
    border-top: 1px solid rgba(244, 211, 94, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--yellow-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--yellow-gold);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    font-size: 14px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background-color: var(--dark-indigo);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-consent.visible {
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
    }
    
    .cookie-consent .btn {
        margin-top: 15px;
        width: 100%;
    }
}

.cookie-text {
    flex-grow: 1;
    padding-right: 20px;
}

/* Policy Pages */
.policy-page {
    padding-top: 150px;
    padding-bottom: 80px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(244, 211, 94, 0.2);
}

.policy-container h1 {
    margin-bottom: 30px;
    text-align: center;
}

.policy-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container p {
    margin-bottom: 20px;
}

.policy-container ul, .policy-container ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* Thank You Page */
.thanks-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
}

.thanks-content {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(244, 211, 94, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-content .btn {
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .services-grid,
    .advantages-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* PHP Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--dark-indigo);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--white-text);
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
} 