/* Base Styles and Variables */
:root {
    --color-bg: #FFF8E7;
    --color-accent-1: #0B7285;
    --color-accent-2: #F59F00;
    --color-button: #A61E4D;
    --color-heading: #0D1B2A;
    --color-text: #495057;
    --color-white: #FFFFFF;
    --font-primary: 'Arial', sans-serif;
    --shadow-main: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    position: relative;
}

/* Noise Background Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-accent-1);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent-2);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-accent-1);
    margin: 0.8rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-button);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #871a41;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 30, 77, 0.3);
}

.btn-secondary {
    background-color: var(--color-accent-1);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #096273;
    color: var(--color-white);
}

/* Header */
.site-header {
    background-color: var(--color-accent-1);
    box-shadow: var(--shadow-main);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: block;
}

/* Navigation */
.main-nav {
    position: relative;
}

.desktop-menu {
    display: flex;
    list-style: none;
}

.desktop-menu li {
    margin-left: 2rem;
}

.desktop-menu a {
    color: white;
    font-weight: 600;
    position: relative;
}

.desktop-menu a:hover {
    color: var(--color-accent-2);
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent-2);
    transition: var(--transition);
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    position: relative;
}

.mobile-menu-toggle a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.mobile-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 250px;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-main);
    border-radius: 5px;
    padding: 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1rem;
}

.mobile-menu a {
    color: var(--color-heading);
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
}

/* When mobile menu is active */
.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    height: calc(100vh - 70px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 114, 133, 0.8), rgba(245, 159, 0, 0.5));
}

.hero-content {
    color: var(--color-white);
    max-width: 800px;
    padding: 2rem;
    border-radius: 0;
    margin: 0 auto;
    animation: fadeIn 1s ease;
    box-shadow: none;
    border: none;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.advantage-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: var(--shadow-main);
    text-align: center;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, var(--color-bg), rgba(11, 114, 133, 0.1));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
}

.service-card .btn {
    margin: 1rem 1.5rem 1.5rem;
}

/* Why Us Section */
.why-us {
    background-color: rgba(245, 159, 0, 0.05);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-us-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-2);
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-bg);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2rem;
    color: var(--color-accent-2);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

/* Contact Form Section */
.contact {
    background: linear-gradient(135deg, rgba(11, 114, 133, 0.1), rgba(245, 159, 0, 0.1));
    position: relative;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form {
    display: grid;
    grid-gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-heading);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(11, 114, 133, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent-1);
    box-shadow: 0 0 10px rgba(11, 114, 133, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    accent-color: var(--color-button);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    background: rgba(255, 255, 255, 0.7);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(11, 114, 133, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    width: 100%;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    display: none;
}

/* Contact Information Section */
.contact-info {
    background-color: rgba(11, 114, 133, 0.05);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info-text {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: var(--color-accent-1);
}

.contact-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-main);
}

/* Footer */
.site-footer {
    background-color: var(--color-heading);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-legal li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent-2);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact .icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background-color: var(--color-heading);
    color: var(--color-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-text {
    flex-grow: 1;
    padding-right: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Legal Pages */
.legal-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: var(--shadow-main);
}

.legal-title {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-accent-1);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

/* Thank You Page */
.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 5rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: var(--shadow-main);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--color-accent-2);
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-text {
        order: 1;
    }
    
    .contact-map {
        order: 0;
    }
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .services-grid,
    .testimonial-slider,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 1.5rem;
        width: 90%;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-bottom: 1rem;
        padding-right: 0;
    }
} 

/* Logo */
.simple-logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: Arial, sans-serif;
    display: block;
    padding: 5px 0;
}

.simple-logo.footer {
    margin-bottom: 10px;
} 