/* Base Styles */
:root {
    --color-background: #0d0e1c;
    --color-background-alt: #1e1f2b;
    --color-accent: #ffc857;
    --color-text: #e6e6e6;
    --color-heading: #f75c03;
    --color-button: #8ecae6;
    --font-main: 'Arial', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    padding-top: 5rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--color-button);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn:hover, .btn:focus {
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-background);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #e6b650;
    color: var(--color-background);
}

.btn-secondary {
    background-color: var(--color-button);
    color: var(--color-background);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #79b7d7;
    color: var(--color-background);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background-color: var(--color-background-alt);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 14, 28, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo svg {
    height: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem;
    text-decoration: none;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.main-nav a:hover::after, .main-nav a:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background-color: rgba(30, 31, 43, 0.7);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 50px;
    height: 50px;
    color: var(--color-accent);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background-color: rgba(30, 31, 43, 0.7);
    padding: 2rem;
    border-radius: 5px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

/* Why Us Section */
.why-us-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.why-us-image {
    flex: 1;
}

.why-us-text {
    flex: 1;
}

.why-us-item {
    margin-bottom: 2rem;
}

.why-us-item:last-child {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-item {
    background-color: rgba(30, 31, 43, 0.7);
    padding: 2rem;
    border-radius: 5px;
    position: relative;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    color: rgba(255, 200, 87, 0.2);
}

.author-name {
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 0.2rem;
}

.author-position {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Gallery Section */
.gallery {
    background-color: var(--color-background);
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form {
    background-color: var(--color-background-alt);
}

.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.05);
    color: #c03d3d;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(255, 200, 87, 0.2);
}

.form-checkboxes {
    margin-bottom: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.form-checkbox input {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.form-submit {
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--color-background);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-info {
    flex-basis: 40%;
}

.footer-links {
    flex-basis: 50%;
    display: flex;
    justify-content: space-between;
}

.footer-link-group h4 {
    color: var(--color-accent);
    margin-bottom: 1.2rem;
}

.footer-link-group ul {
    list-style: none;
}

.footer-link-group li {
    margin-bottom: 0.5rem;
}

.footer-link-group a {
    color: var(--color-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: rgba(30, 31, 43, 0.95);
    padding: 1.5rem;
    z-index: 1000;
    border-top: 2px solid var(--color-accent);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    text-align: center;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container,
    .about-content,
    .why-us-content {
        flex-direction: column;
    }
    
    .hero-image {
        margin-top: 2rem;
        order: 2;
    }
    
    .why-us-image {
        margin-bottom: 2rem;
        order: -1;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        margin-bottom: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 200px);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 4rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo svg {
        width: 130px;
    }
    
    .main-nav li {
        margin-left: 1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
}

@media (max-width: 575px) {
    body {
        padding-top: 3.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .logo svg {
        width: 120px;
    }
    
    .main-nav ul {
        justify-content: space-between;
        width: 100%;
    }
    
    .main-nav li {
        margin-left: 0;
    }
    
    .main-nav a {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .hero {
        padding: 1.5rem 0;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-link-group {
        margin-bottom: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
    }
} 