/* 
   Main Stylesheet for domain website
   Color palette:
   - Gradient: aquamarine (#7FFFD4) to purple (#DA70D6)
   - Background: deep black (#0F0F0F)
   - Headings: white (#FFFFFF)
   - Text: light grey (#E0E0E0)
   - Accents and buttons: neon blue (#00FFFF)
   - Hover highlight: cyan (#00CED1)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0F0F0F;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: #00FFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00CED1;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7FFFD4, #DA70D6);
}

.btn-primary {
    display: inline-block;
    background: #00FFFF;
    color: #0F0F0F;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #00CED1;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #00FFFF;
    padding: 10px 28px;
    border: 2px solid #00FFFF;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #00CED1;
    color: #00CED1;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #7FFFD4, #DA70D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: #E0E0E0;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.main-nav ul li a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #7FFFD4, #DA70D6);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:before,
.main-nav ul li a.active:before {
    width: 100%;
}

.main-nav ul li a.active {
    color: #FFFFFF;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Hero Banner */
.hero-banner {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(15,15,15,0.8) 0%, rgba(15,15,15,1) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

.hero-cta {
    animation: fadeInUp 2s ease-out;
}

/* About Section */
.about-section {
    position: relative;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-card {
    flex: 1 1 300px;
    padding: 30px;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: translateY(0);
    border: 1px solid rgba(127, 255, 212, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(127, 255, 212, 0.3);
}

.about-card h3 {
    margin-bottom: 15px;
}

.about-card p {
    margin-bottom: 0;
}

/* Why Choose Us Section */
.features-section {
    background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(30,30,30,0.95) 100%);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1 1 300px;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    background: rgba(15, 15, 15, 0.7);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7FFFD4, #DA70D6);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00FFFF;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 300px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(30, 30, 30, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.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: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(30,30,30,0.95) 100%);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-plan {
    flex: 1 1 300px;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    background: rgba(15, 15, 15, 0.7);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.pricing-plan.featured {
    border: 2px solid #00FFFF;
    transform: scale(1.05);
}

.pricing-plan:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.pricing-plan.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    flex: 1 1 300px;
    padding: 30px;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(127, 255, 212, 0.1);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(127, 255, 212, 0.3);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(0, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Contact Form Section */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, rgba(15,15,15,0.95) 0%, rgba(30,30,30,0.95) 100%);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 15, 15, 0.7);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(224, 224, 224, 0.2);
    border-radius: 5px;
    color: #E0E0E0;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.service-checkbox {
    flex: 1 1 200px;
    background: rgba(30, 30, 30, 0.5);
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 224, 224, 0.1);
}

.service-checkbox:hover {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.service-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.site-footer {
    background-color: rgba(10, 10, 10, 0.9);
    padding: 60px 0 30px;
    position: relative;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #7FFFD4, #DA70D6);
}

.contact-info,
.legal-links {
    list-style: none;
}

.contact-info li,
.legal-links li {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0 20px 0 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Policy Pages */
.policy-page {
    padding: 140px 0 80px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(127, 255, 212, 0.1);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: 40px;
}

.policy-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

/* FAQ Toggles (PHP implementation) */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(224, 224, 224, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: rgba(30, 30, 30, 0.7);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(30, 30, 30, 0.9);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #00FFFF;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(15, 15, 15, 0.5);
}

.faq-answer.active {
    padding: 20px;
    height: auto;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thank You Page */
.thank-you-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 140px 40px 80px;
}

.thank-you-container {
    max-width: 800px;
    padding: 60px 40px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

.thank-you-icon {
    font-size: 3rem;
    color: #00FFFF;
    margin-bottom: 20px;
}

.home-button {
    margin-top: 30px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin: 0 0 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 30px;
        transition: right 0.3s ease;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        padding: 130px 0 60px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-grid {
        justify-content: center;
        text-align: center;
    }
    
    .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .policy-container {
        padding: 30px 20px;
    }
}
