/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1B1B1B;
    background-color: #F5F0EC;
    overflow-x: hidden;
    padding-top: 80px; /* Compensation for fixed header */
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(245, 240, 236, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(63, 109, 153, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3F6D99;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
}

.navbar-brand .logo svg {
    margin-right: 0.5rem;
}

.navbar-brand .logo span {
    font-size: 1.2rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #1B1B1B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF7A5C;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #3F6D99;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile menu checkbox (hidden) */
.navbar-toggle-checkbox {
    display: none;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #3F6D99;
    transition: all 0.3s ease;
    display: block;
}

/* Mobile menu animations */
.navbar-toggle-checkbox:checked + .navbar-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle-checkbox:checked + .navbar-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle-checkbox:checked + .navbar-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar-toggle-checkbox:checked ~ .navbar-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F0EC 0%, rgba(63, 109, 153, 0.1) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/RHM2Ub.jpg') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3F6D99;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #3F3D56;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #1B1B1B;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF7A5C 0%, #3F6D99 100%);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 122, 92, 0.3);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 122, 92, 0.4);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #3F6D99;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #3F3D56;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1B1B1B;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(63, 109, 153, 0.2);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose {
    background: #F5F0EC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(63, 109, 153, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF7A5C, #3F6D99);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(63, 109, 153, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF7A5C, #3F6D99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    color: #3F6D99;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: #1B1B1B;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #F5F0EC;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(63, 109, 153, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(63, 109, 153, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    color: #3F6D99;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #1B1B1B;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FF7A5C;
    margin-bottom: 1.5rem;
}

.service-button {
    display: inline-block;
    background: #3F6D99;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #FF7A5C;
    transform: translateY(-2px);
}

/* Process Section */
.process {
    background: #F5F0EC;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(63, 109, 153, 0.1);
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF7A5C, #3F6D99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }

.process-title {
    font-size: 1.3rem;
    color: #3F6D99;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.process-description {
    color: #1B1B1B;
    line-height: 1.6;
}

/* Order Form Section */
.order-form {
    background: white;
    padding: 5rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #F5F0EC;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(63, 109, 153, 0.15);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #3F6D99;
    font-weight: 600;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #3F6D99;
    box-shadow: 0 0 0 3px rgba(63, 109, 153, 0.1);
}

/* Form icon styles removed */

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #1B1B1B;
    line-height: 1.4;
}

.checkbox-group a {
    color: #3F6D99;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF7A5C, #3F6D99);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 122, 92, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 122, 92, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Testimonials Section */
.testimonials {
    background: #F5F0EC;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(63, 109, 153, 0.1);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #FF7A5C;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1B1B1B;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #3F6D99;
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: #3F3D56;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: #F5F0EC;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(63, 109, 153, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(63, 109, 153, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7A5C, #3F6D99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    color: #3F6D99;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #1B1B1B;
    margin: 0;
}

.contact-text a {
    color: #1B1B1B;
    text-decoration: none;
}

.contact-text a:hover {
    color: #FF7A5C;
    text-decoration: underline;
}

.contact-map {
    background: #F5F0EC;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(63, 109, 153, 0.1);
}

.contact-map h4 {
    color: #3F6D99;
    margin-bottom: 1rem;
}

.contact-map p {
    color: #1B1B1B;
    line-height: 1.6;
}

.map-container {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(63, 109, 153, 0.2);
}

/* Footer */
.footer {
    background: #3F3D56;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #FF7A5C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-subtitle {
    color: #FF7A5C;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    color: #e0e0e0;
}

.footer .contact-info {
    color: #1B1B1B;
}

.footer .contact-info a {
    color: #1B1B1B;
}

.footer .contact-info a:hover {
    color: #FF7A5C;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF7A5C;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #1B1B1B;
    text-decoration: none;
}

.contact-info a:hover {
    color: #FF7A5C;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    color: #e0e0e0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(63, 61, 86, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cookie-accept {
    background: #FF7A5C;
    color: white;
}

.cookie-accept:hover {
    background: #e66a4c;
}

.cookie-learn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-learn:hover {
    background: white;
    color: #3F3D56;
}

/* CSS Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auto animations for elements on page load */
.feature-card,
.service-card,
.process-step,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(4) { animation-delay: 0.6s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 6rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(245, 240, 236, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        padding-top: 8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .service-card,
    .process-step {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.hidden { display: none; }
.visible { display: block; } 