/* Base Styles and Variables */
:root {
    --emerald: #2ecc71;
    --dark-blue: #1f2a44;
    --silver-gray: #bdc3c7;
    --bright-orange: #e67e22;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--emerald);
    transition: var(--transition);
}

a:hover {
    color: var(--bright-orange);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

section {
    padding: 4rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--bright-orange);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--emerald);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--bright-orange);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header */
.main-header {
    background-color: var(--dark-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    margin-left: 10px;
}

.main-nav .nav-list {
    display: flex;
}

.nav-list li {
    margin-left: 1.5rem;
}

.nav-list a {
    color: var(--white);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--bright-orange);
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    background-image: linear-gradient(rgba(31, 42, 68, 0.9), rgba(31, 42, 68, 0.9)), url('img/vwcqLc.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background-color: var(--white);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--dark-blue);
    padding: 1.5rem 1rem 0.5rem;
}

.service-card p {
    padding: 0 1rem 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    text-align: center;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

@keyframes slide {
    0% { transform: translateX(0); }
    30% { transform: translateX(0); }
    33.33% { transform: translateX(-100%); }
    63.33% { transform: translateX(-100%); }
    66.66% { transform: translateX(-200%); }
    96.66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}


.testimonial {
    width: 33.33%;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.client-name {
    font-weight: 700;
    color: var(--dark-blue);
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--light-gray);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: left;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--silver-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

/* Contact Info Section */
.contact-info-section {
    background-color: var(--white);
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 200px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--silver-gray);
}

.footer-links a:hover {
    color: var(--bright-orange);
}

address p {
    margin-bottom: 0.5rem;
    color: var(--silver-gray);
}

.copyright {
    border-top: 1px solid rgba(189, 195, 199, 0.3);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--silver-gray);
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
}

.cookie-content p {
    margin: 0 1rem 0 0;
}

.cookie-content a {
    color: var(--emerald);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--bright-orange);
}

/* Custom Icon Font */
.icon-location::before {
    content: "📍";
}

.icon-phone::before {
    content: "📞";
}

.icon-email::before {
    content: "✉️";
}

/* Media Queries */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .testimonial-slider {
        flex-direction: column;
        animation: none;
        width: 100%;
    }
    .services-grid  {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    .testimonial {
        width: 100%;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    .menu-toggle:checked ~ .nav-list {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .contact-item {
        width: 100%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .service-image {
        height: 180px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* Form errors */
.form-errors {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
}

.form-errors p.error {
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.form-errors p.error:last-child {
    margin-bottom: 0;
}

textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--silver-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
} 