/* Base Styles */
:root {
    --color-bg-primary: #200122;
    --color-bg-secondary: #6f0000;
    --color-accent-amber: #FFC857;
    --color-accent-lime: #A3FF12;
    --color-text: #1C1C1E;
    --color-bg-light: rgba(255, 255, 255, 0.85);
    --color-bg-dark: rgba(28, 28, 30, 0.85);
    --font-primary: 'Arial', sans-serif;
    --transition-speed: 0.3s;
    --border-radius: 30px;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%) fixed;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--color-accent-amber);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-accent-lime);
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-text);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: var(--section-padding);
}

.rounded-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Domain Logo Styles */
.domain-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
    padding: 5px 10px;
    border: 2px solid var(--color-accent-amber);
    border-radius: 5px;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    text-transform: uppercase;
}

.main-domain-logo {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: 3px solid var(--color-accent-amber);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--color-bg-dark);
    color: white;
    padding: 15px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed);
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-button {
    padding: 8px 20px;
    border: 2px solid var(--color-accent-amber);
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.cookie-button:hover {
    border-color: var(--color-accent-lime);
    background-position: right center;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all var(--transition-speed);
    background-color: rgba(32, 1, 34, 0.9);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    text-decoration: none;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all var(--transition-speed);
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before, .menu-icon::after {
    content: '';
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.menu-toggle.active .menu-icon {
    background-color: transparent;
}

.menu-toggle.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-list li a {
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.nav-list li a:hover {
    color: var(--color-accent-lime);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(32, 1, 34, 0.8) 0%, rgba(111, 0, 0, 0.8) 100%), url('./img/3D1mQk.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.logo-container {
    margin-bottom: 30px;
}

.hero h1 {
    margin-bottom: 20px;
    color: white;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--color-accent-amber);
    color: white;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    border-color: var(--color-accent-lime);
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    color: white;
}

/* About Section */
.about-us {
    background-color: var(--color-bg-light);
    backdrop-filter: blur(10px);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
}

.about-image {
    flex: 0 1 400px;
}

/* Services Section */
.services {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.services-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.services-intro-image {
    flex: 0 1 400px;
}

.services-intro-text {
    flex: 1 1 400px;
    color: white;
}

.services-intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed);
    backdrop-filter: blur(5px);
    color: var(--color-text);
}

.service-card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text);
    margin: 20px 0;
}

.service-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--color-accent-amber);
    color: white;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.service-button:hover {
    border-color: var(--color-accent-lime);
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    color: white;
}

/* Why Us Section */
.why-us {
    background-color: var(--color-bg-light);
    backdrop-filter: blur(10px);
}

.advantages {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.advantage {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

/* Workflow Section */
.workflow {
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.workflow-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.workflow-intro-image {
    flex: 0 1 400px;
}

.workflow-intro-text {
    flex: 1 1 400px;
    color: white;
}

.workflow-intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    color: var(--color-text);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    border: 2px solid var(--color-accent-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-bg-light);
    backdrop-filter: blur(10px);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
}

/* Contact Form Section */
.contact-form {
    background: linear-gradient(135deg, rgba(32, 1, 34, 0.8) 0%, rgba(111, 0, 0, 0.8) 100%), url('./img/JXrDUJ.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-text);
    padding-bottom: 80px;
}

.contact-form h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: var(--border-radius);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-bg-secondary);
    box-shadow: 0 0 0 2px rgba(111, 0, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 5px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.95rem;
    line-height: 1.4;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form a {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 600;
}

.form a:hover {
    color: var(--color-bg-secondary);
}

/* Contact & Map Section */
.contact-map {
    background: linear-gradient(135deg, rgba(32, 1, 34, 0.8) 0%, rgba(111, 0, 0, 0.8) 100%), url('./img/d3sERI.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-map h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-details {
    flex: 1 1 400px;
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--color-text);
}

.contact-item {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: bold;
    color: var(--color-text);
}

.map-container {
    flex: 0 1 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.map-image:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background-color: rgba(28, 28, 30, 0.95);
    color: white;
    padding: 60px 0 20px;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-section ul li a:hover {
    color: var(--color-accent-lime);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Policy Page Styles */
.policy-page {
    background-color: var(--color-bg-light);
    padding-top: 120px;
    padding-bottom: 60px;
    backdrop-filter: blur(10px);
}

.policy-page h1 {
    color: var(--color-text);
    text-align: center;
}

.policy-page h2 {
    color: var(--color-text);
    font-size: 1.5rem;
    margin-top: 30px;
    text-align: left;
    margin-bottom: 15px;
}

.thanks h1 {
    color: var(--color-text);
    margin-bottom: 30px;
}

/* Fix Header Overlap */
section:first-of-type, .policy-page, .thanks {
    padding-top: 120px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(32, 1, 34, 0.95);
        backdrop-filter: blur(10px);
        height: 0;
        overflow: hidden;
        transition: height var(--transition-speed);
        gap: 0;
        z-index: 1000;
    }
    
    .nav-list.active {
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list li a {
        display: block;
        padding: 15px;
        text-align: center;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 500px;
    }
    
    .about-content,
    .contact-info {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }

    .services-intro,
    .workflow-intro {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form {
        padding: 20px;
    }
} 

.services h2, .workflow h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Fix header overlap on anchor navigation */
html {
    scroll-padding-top: 100px; /* Adds padding to the scroll location */
}

/* Additional padding for sections with anchors */
section {
    scroll-margin-top: 100px;
} 