/* Base Styles */
:root {
    --color-bg: #fdf6ec;
    --color-accent1: #ff8c42;
    --color-accent2: #006d77;
    --color-text: #1b1b1b;
    --color-light: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --border-radius-large: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent1);
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--color-accent2);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent1);
}

ul {
    list-style: none;
}

.service-card ul {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent1);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: #e67e35;
    color: var(--color-light);
}

.btn-secondary {
    background-color: var(--color-accent2);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: #005a63;
    color: var(--color-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Header Styles */
.header {
    background-color: var(--color-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent2);
    text-transform: lowercase;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-accent1);
}

.mobile-toggle {
    display: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.close-menu {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
}

/* Hero Section */
.hero {
    background-color: var(--color-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 100%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero h1 {
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* About Section */
.about {
    background-color: var(--color-light);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.5rem;
}

/* Services Section */
.services {
    background-color: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    overflow: visible;
}

.service-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-large);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    margin: 0 auto 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
    height: 200px;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Why Us Section */
.why-us {
    background-color: var(--color-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    padding: 25px;
    text-align: center;
    background-color: var(--color-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--color-accent1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Process Section */
.process {
    background-color: var(--color-bg);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    counter-reset: step;
    position: relative;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent2);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent2);
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 25px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: var(--color-accent2);
    z-index: 1;
}

.step-content {
    padding: 20px;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-light);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-container {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 30px;
    background-color: var(--color-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 10px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--color-accent1);
}

/* FAQ Section */
.faq {
    background-color: var(--color-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    width: 100%;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background-color: var(--color-light);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-question .indicator {
    width: 20px;
    height: 20px;
    position: relative;
}



.faq-question .indicator::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-question .indicator::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-answer {
    background-color: var(--color-light);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .indicator::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Contact Section */
.contact {
    background-color: var(--color-light);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-accent2);
    border-radius: var(--border-radius-large);
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    color: var(--color-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-accent1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

/* Footer Styles */
.footer {
    background-color: #1b1b1b;
    color: var(--color-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-accent1);
}

.footer-contact {
    margin-top: 20px;
}

.contact-item {
    margin-bottom: 10px;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--color-accent1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-accent2);
    color: var(--color-light);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--color-light);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}

.policy-container h1 {
    margin-bottom: 30px;
    color: var(--color-accent2);
}

.policy-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-container p,
.policy-container ul {
    margin-bottom: 20px;
}

.policy-container ul {
    list-style: disc;
    padding-left: 20px;
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* Thank You Page */
.thank-you {
    text-align: center;
    padding: 100px 20px;
}

.thank-you-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow);
}

.thank-you h1 {
    margin-bottom: 30px;
    color: var(--color-accent2);
}

.thank-you p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .hero-content {
        flex-direction: column;
        width: 100%;
    }
    
    .about-image,
    .hero-image {
        order: -1;
        width: 100%;
    }
    
    .about-image img,
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
    
    .process-steps::after {
        display: none;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-light);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .close-menu {
        display: block;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .service-card, .reason-card {
        height: auto;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

/* Always show animations immediately */
.fade-in, .fade-in-left, .fade-in-right { 
    opacity: 1 !important; 
    transform: translate(0) !important; 
}
