/* Main Color Palette */
:root {
    --color-background: #FAF3E0;
    --color-accent-1: #EF476F;
    --color-accent-2: #118AB2; 
    --color-accent-3: #06D6A0;
    --color-text-primary: #1D3557;
    --color-text-secondary: #6D6875;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: var(--color-accent-2);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-accent-1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-3), var(--color-accent-2));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent-3));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-accent-2);
    color: var(--color-accent-2);
}

.btn-secondary:hover {
    background-color: var(--color-accent-2);
    color: white;
}

.btn-nav {
    background-color: var(--color-accent-1);
    color: white;
    padding: 0.5rem 1rem;
}

.btn-nav:hover {
    background-color: var(--color-accent-3);
    color: white;
}

.btn-cookie {
    background-color: var(--color-accent-3);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent-2);
    text-decoration: none;
    font-family: var(--font-heading);
}

.logo-text-light {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent-3);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--color-text-primary);
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1rem;
}

.main-nav a:hover {
    color: var(--color-accent-1);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-primary);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    z-index: 9999;
    display: flex;
    align-items: center;
    max-width: 90%;
    width: 500px;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(17, 138, 178, 0.1), rgba(6, 214, 160, 0.1));
    padding: 6rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-secondary);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--color-accent-2);
    border-radius: 10px;
    margin: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: cover;
    border-radius: 50%;
}

/* Pricing Section */
.pricing-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--color-accent-2);
    color: white;
}

tr:hover {
    background-color: rgba(6, 214, 160, 0.05);
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-secondary);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--color-accent-2);
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3, .contact-info h4 {
    color: white;
}

.contact-info p {
    margin-bottom: 0.7rem;
}

.contact-hours {
    margin-top: 1.5rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: var(--color-text-primary);
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
    border-color: var(--color-accent-2);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent-3);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-section {
    margin-bottom: 2rem;
}

.last-updated {
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.response-time {
    margin: 2rem 0;
    color: var(--color-text-secondary);
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.thank-you-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    /* Force box sizing for all elements in mobile view */
    *, *:before, *:after {
        box-sizing: border-box;
    }
    
    /* Ensure all sections and divs respect container width */
    body, html, div, section, header, footer, main, aside {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        margin: 0.5rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .pricing-table {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        width: 100%;
        min-width: 300px; /* Reduced min-width for better mobile display */
        font-size: 14px; /* Smaller font size on mobile */
    }
    
    .thank-you-buttons {
        flex-direction: column;
        gap: 1rem;
    }
} 