/* Reset & Base Styles */
:root {
    --color-primary: #1ABC9C; /* Deep turquoise */
    --color-secondary: #FF6F61; /* Peach */
    --color-dark: #2C3E50; /* Graphite gray */
    --color-light: #F5F5F5; /* Light gray background */
    --color-accent: #F9C922; /* Gold sand */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--color-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 15px auto 0;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: #0e9e83;
    color: var(--color-white);
}

.btn--secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn--secondary:hover {
    background-color: #e56154;
    color: var(--color-white);
}

.btn--full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: block;
}

.nav__list {
    display: flex;
    gap: 20px;
}

.nav__link {
    color: var(--color-dark);
    font-weight: 600;
    padding: 5px 10px;
}

.nav__link:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: var(--color-white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero__content {
    flex: 1;
}

.hero__image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 450px;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero__title {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.hero__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--color-text-light);
}

/* About Section */
.about {
    background-color: var(--color-light);
}

.about__grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about__content {
    flex: 1;
}

.about__content h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about__content p {
    margin-bottom: 20px;
}

.about__image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.about__values {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: var(--color-white);
}

.services__content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category__title {
    text-align: center;
    font-size: 28px;
    color: var(--color-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.service-category__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--color-dark);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.price {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
}

/* Benefits Section */
.benefits {
    background-color: var(--color-light);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-white);
}

.testimonials__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial__content {
    position: relative;
    padding: 20px 0;
}

.testimonial__content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 80px;
    color: rgba(26, 188, 156, 0.2);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial__image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info h4 {
    color: var(--color-dark);
    margin-bottom: 5px;
}

.testimonial__info p {
    color: var(--color-text-light);
    font-size: 14px;
}

/* Contact Form Section */
.contact {
    background-color: var(--color-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact__form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.contact__info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact__card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 220px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: translateY(-100%);
    transition: var(--transition);
}

.contact__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.contact__card:hover::before {
    transform: translateY(0);
}

.contact__icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
}

.contact__card h3 {
    color: var(--color-dark);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.contact__card p {
    color: var(--color-text);
    font-size: 17px;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__about {
    grid-column: span 2;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: var(--color-light);
}

.footer a:hover {
    color: var(--color-primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--color-white);
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-bottom: 0;
}

/* CSS Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.5s ease forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.5s ease forwards;
}

/* Animation delays for sequential animation */
.benefit-card:nth-child(1),
.slide-in:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2),
.slide-in:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3),
.slide-in:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4),
.slide-in:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5),
.slide-in:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6),
.slide-in:nth-child(6) { animation-delay: 0.6s; }

/* Media Queries for Responsive Design */
@media screen and (max-width: 992px) {
    .hero .container,
    .about__grid {
        flex-direction: column;
    }
    
    .hero__content,
    .hero__image,
    .about__content,
    .about__image {
        flex: none;
        width: 100%;
    }
    
    .hero__image,
    .about__image {
        margin-top: 30px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        height: auto;
        padding: 20px 0;
    }
    
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .contact__info {
        justify-content: center;
    }
    
    .contact__card {
        min-width: 100%;
        max-width: 350px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__image, 
    .about__image {
        height: 350px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    /* Footer responsiveness */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__about {
        grid-column: 1;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer__logo {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Fix for any potential overflow issues */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .service-cards {
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .hero__title {
        font-size: 32px;
    }
    
    .hero__subtitle {
        font-size: 18px;
    }
    
    .about__values {
        flex-direction: column;
    }
    
    .services__tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
    }
    
    .contact__form {
        padding: 25px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Make sure images don't cause overflow */
    .hero__image, 
    .about__image {
        width: 100%;
        max-width: 100%;
    }
    
    /* Footer responsiveness for very small screens */
    .footer {
        padding: 40px 0 20px;
    }

    .footer__grid {
        gap: 25px;
    }
}

/* Policy Pages */
.policy {
    padding: 100px 0;
}

.policy__content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy__section {
    margin-bottom: 30px;
}

.policy__section h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 24px;
}

.policy__section h3 {
    color: var(--color-dark);
    margin-bottom: 12px;
    font-size: 20px;
}

.policy__section p, .policy__section ul {
    margin-bottom: 15px;
}

.policy__section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.policy__section li {
    margin-bottom: 5px;
}

.policy__footer {
    margin-top: 30px;
    text-align: center;
}

.policy__footer p {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.thank-you__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.thank-you__title {
    color: var(--color-dark);
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you__icon {
    font-size: 80px;
    color: var(--color-primary);
    display: block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 50%;
    background-color: rgba(26, 188, 156, 0.1);
    margin: 30px auto;
    animation: scaleIn 0.5s ease;
}

.thank-you__message {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 15px;
}

.thank-you__details {
    color: var(--color-text-light);
    margin-bottom: 30px;
} 