/* Global Styles */
:root {
    /* Color Palette */
    --bg-gradient-start: #fdfcfb;
    --bg-gradient-end: #e2d1c3;
    --accent-coral: #ff6f61;
    --accent-dark-blue: #0f3057;
    --text-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Fonts */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Georgia', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--accent-dark-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-coral);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-coral);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

section {
    padding: 4rem 0;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-dark-blue);
}

.logo span {
    color: var(--accent-coral);
}

.nav-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    list-style-type: none;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu li a {
    color: var(--accent-dark-blue);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-coral);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.phone-number {
    display: flex;
    align-items: center;
    color: var(--accent-dark-blue);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url('../img/PARfWv.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-light);
    margin-top: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 48, 87, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-coral);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 111, 97, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-dark-blue);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(15, 48, 87, 0.4);
}

/* Services Section */
.services-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 20px var(--shadow-color);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 180px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 0.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--accent-dark-blue);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-coral);
    font-weight: 600;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-link:hover::after {
    margin-left: 10px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--accent-dark-blue);
    color: var(--text-light);
    padding: 5rem 0;
}

.benefits-section h2 {
    color: var(--text-light);
}

.benefits-section h2::after {
    background-color: var(--accent-coral);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: var(--accent-coral);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial-item {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 20px var(--shadow-color);
    padding: 2rem;
    width: 100%;
    max-width: 350px;
}

.testimonial-item blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-item blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-coral);
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: -1rem;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    display: block;
    text-align: right;
    color: var(--accent-dark-blue);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-question {
    background-color: var(--accent-dark-blue);
    position: relative;
}

.faq-toggle {
    color: var(--text-light);
    padding: 1rem 1.5rem;
    font-weight: 600;
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    text-align: left;
}

.faq-toggle::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-item.active .faq-toggle::after {
    content: '−';
}

.faq-answer {
    background-color: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-dark-blue) 0%, #1a4875 100%);
    color: var(--text-light);
}

.contact-section h2 {
    color: var(--text-light);
}

.form-container {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--accent-coral);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-coral);
    background-color: rgba(255, 255, 255, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--accent-dark-blue);
    color: var(--text-light);
    padding: 10px;
}

select.form-control:focus {
    border-color: var(--accent-coral);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-group label {
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--accent-coral);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--accent-coral);
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.submit-btn:hover {
    background-color: #ff5a4c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.4);
}

.error-message {
    color: #ff6f61;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 5px;
    display: inline-block;
}

.global-error {
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    padding: 10px;
}

/* Footer */
footer {
    background-color: var(--accent-dark-blue);
    color: var(--text-light);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: var(--accent-coral);
    margin-bottom: 1rem;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    margin-bottom: 0.5rem;
}

.footer-links h3 {
    color: var(--accent-coral);
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--text-light);
}

.footer-nav a:hover {
    color: var(--accent-coral);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup p {
    margin-bottom: 1rem;
}

.cookie-popup button {
    background-color: var(--accent-coral);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-popup button:hover {
    background-color: var(--accent-dark-blue);
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.policy-title {
    color: var(--accent-dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h3 {
    color: var(--accent-coral);
    margin: 1.5rem 0 1rem;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 2rem;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--accent-dark-blue);
        cursor: pointer;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 10px 20px var(--shadow-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .phone-number {
        display: none;
    }
    
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .container {
        width: 95%;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 1s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
} 