/* 
* Main Stylesheet
* Color Palette:
* - Breezy Turquoise: #00CED1
* - Midnight Purple: #4B0082
* - Soft Pink: #FFB6C1
* - Energetic Orange: #FFA500
* - Pure White: #FFFFFF
* - Light Gray: #F5F5F5
*/

/* ====== RESET & BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #F5F5F5;
}

a {
    text-decoration: none;
    color: #4B0082;
    transition: color 0.3s ease;
}

a:hover {
    color: #00CED1;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #4B0082;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00CED1, #4B0082);
    margin: 1rem auto 0;
    border-radius: 2px;
}

section {
    padding: 5rem 0;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #00CED1, #4B0082);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #4B0082, #00CED1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #00CED1;
    color: #4B0082;
}

.btn-secondary:hover {
    background-color: #00CED1;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ====== HEADER ====== */
.site-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: block;
}

.nav-list {
    display: flex;
}

.nav-list li {
    margin-left: 1.5rem;
}

.nav-list a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00CED1;
    transition: width 0.3s ease;
}

.nav-list a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #4B0082;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ====== MAIN CONTENT ====== */
.site-main {
    margin-top: 80px; /* Header height */
}

/* ====== HERO SECTION ====== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/7RPhjU.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeIn 1s ease 0.6s;
    animation-fill-mode: both;
}

/* ====== ABOUT SECTION ====== */
.about-section {
    background-color: #FFFFFF;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: rotate(0);
}

/* ====== SERVICES SECTION ====== */
.services-section {
    background-color: #F5F5F5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #4B0082;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ====== FORM SECTION ====== */
.form-section {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFA500 100%);
    padding: 5rem 0;
}

.form-section .section-title {
    color: #FFFFFF;
}

.form-section .section-title:after {
    background: #FFFFFF;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.contact-form:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(45deg, #00CED1, #4B0082, #FFB6C1, #FFA500);
    z-index: -1;
    border-radius: 15px;
    animation: borderAnimation 5s linear infinite;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4B0082;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00CED1;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-check {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.form-check input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.form-check label {
    font-size: 0.9rem;
}

.form-check a {
    color: #00CED1;
    text-decoration: underline;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

.form-errors {
    background-color: #FFEBEE;
    border-left: 4px solid #FF6B6B;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.form-errors p.error-message {
    color: #D32F2F;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* ====== ADVANTAGES SECTION ====== */
.advantages-section {
    background-color: #FFFFFF;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    padding: 2rem;
    position: relative;
    background-color: #F5F5F5;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.advantage-card:hover {
    border-bottom: 4px solid #00CED1;
    transform: translateY(-5px);
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(75, 0, 130, 0.1);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #4B0082;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonials-section {
    background-color: #F5F5F5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '"';
    font-size: 3rem;
    color: #00CED1;
    position: absolute;
    opacity: 0.2;
}

.testimonial-content:before {
    top: -20px;
    left: -5px;
}

.testimonial-content:after {
    content: '"';
    bottom: -40px;
    right: 0;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00CED1;
}

.author-info h4 {
    color: #4B0082;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
}

.testimonial-rating {
    color: #FFA500;
    font-size: 1.2rem;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: #00CED1;
    font-size: 1.5rem;
}

.contact-text h3 {
    color: #4B0082;
    margin-bottom: 0.5rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ====== FOOTER ====== */
.site-footer {
    background-color: #4B0082;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    flex: 2 1 600px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.footer-links h3 {
    color: #00CED1;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-links .footer-contact ul li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ====== COOKIE POPUP ====== */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    flex: 3 1 300px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content button {
    flex: 1 1 100px;
    margin: 0;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-list li {
        margin: 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
} 