/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #EEEEEE;
    background: linear-gradient(135deg, #232931, #393E46);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: #32E875;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF8C42;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #32E875, #FF8C42);
    color: #232931;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(50, 232, 117, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 232, 117, 0.4);
    color: #232931;
}

/* Header */
header {
    background-color: rgba(35, 41, 49, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.logo svg {
    height: 100%;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: #EEEEEE;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #32E875, #FF8C42);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(35, 41, 49, 0.7), rgba(35, 41, 49, 0.7)), url('./img/SEH1kh.jpg');
}

.hero-content {
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: rgba(57, 62, 70, 0.8);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #232931, #2c3440);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #32E875, #FF8C42);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(57, 62, 70, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(50, 232, 117, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #32E875, #FF8C42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(50, 232, 117, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #32E875;
}

.service-title {
    color: #EEEEEE;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C42;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: rgba(57, 62, 70, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-icon {
    font-size: 2.5rem;
    color: #32E875;
    margin-bottom: 15px;
}

.feature-title {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #232931, #2c3440);
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    position: relative;
    height: 350px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: rgba(57, 62, 70, 0.3);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.5s ease;
    border: 1px solid rgba(50, 232, 117, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-slide:nth-child(1) {
    animation: testimonialSlide 15s infinite;
}

.testimonial-slide:nth-child(2) {
    animation: testimonialSlide 15s 5s infinite;
}

.testimonial-slide:nth-child(3) {
    animation: testimonialSlide 15s 10s infinite;
}

@keyframes testimonialSlide {
    0%, 25% {
        opacity: 0;
        transform: translateX(50px);
    }
    33.33%, 58.33% {
        opacity: 1;
        transform: translateX(0);
    }
    66.66%, 100% {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 700;
    color: #32E875;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background-color: rgba(57, 62, 70, 0.8);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(35, 41, 49, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(50, 232, 117, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #FFFFFF;
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #32E875, #FF8C42);
    border-image-slice: 1;
    color: #232931;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(50, 232, 117, 0.2);
    color: #232931;
}

.form-control::placeholder {
    color: #6c757d;
}

.form-select {
    appearance: none;
    background-color: #FFFFFF;
    color: #232931;
    background-image: linear-gradient(45deg, transparent 50%, #32E875 50%), 
                      linear-gradient(135deg, #32E875 50%, transparent 50%);
    background-position: calc(100% - 20px) center, calc(100% - 15px) center;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-select option {
    color: #232931;
    background-color: #FFFFFF;
}

.checkbox-group {
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkbox-input {
    margin-right: 10px;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #232931, #2c3440);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 15px;
    color: #32E875;
    font-size: 1.2rem;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #232931;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #32E875;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #32E875, #FF8C42);
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #EEEEEE;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #32E875;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(238, 238, 238, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    background-color: rgba(35, 41, 49, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    border: 1px solid rgba(50, 232, 117, 0.2);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.cookie-popup.hidden {
    transform: translateY(200%);
}

.cookie-text {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    /* Mobile Menu */
    header {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        flex-direction: column;
        background-color: #232931;
        width: 100%;
        top: 80px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        color: #EEEEEE;
    }
    
    /* Adjusting sections */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text,
    .about-image,
    .contact-info,
    .contact-map {
        flex: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-popup {
        max-width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px 10px 0 0;
    }
} 