/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1F1F1F;
    background-color: #FFFAF3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #FF6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FFE66D;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
    color: #1F1F1F;
    border-color: #FF6B6B;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFE66D, #FF6B6B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1F1F1F;
    border-color: #1F1F1F;
}

.btn-secondary:hover {
    background: #1F1F1F;
    color: #FFFAF3;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #FF6B6B;
    border-color: #FF6B6B;
}

.btn-outline:hover {
    background: #FF6B6B;
    color: #FFFAF3;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Header */
.header {
    background: #FFFAF3;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(31, 31, 31, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F1F1F;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: rotate(5deg) scale(1.05);
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1F1F1F;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #FF6B6B;
    color: #FFFAF3;
    transform: translateY(-1px);
}

/* Hidden checkbox for mobile menu */
.mobile-menu-checkbox {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1F1F1F;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFAF3;
    z-index: 99;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-checkbox:checked ~ .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 2rem;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F1F1F;
    border-bottom: 1px solid #FFE66D;
}

.mobile-nav-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #FF6B6B;
}

.mobile-nav-contact a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mobile nav overlay for closing menu */
.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: -1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(255, 230, 109, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFAF3;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #FFE66D;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #1F1F1F;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Services Intro */
.services-intro {
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
    color: #1F1F1F;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 250, 243, 0.95);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Service Cards */
.service-cards {
    background: #FFFAF3;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #FFFAF3;
    border: 2px solid #FFE66D;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #FF6B6B;
}

.service-card.featured {
    border-color: #FF6B6B;
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
    color: #1F1F1F;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFE66D;
    color: #1F1F1F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem 0;
}

.card-content {
    padding: 0 2rem;
}

.card-footer {
    padding: 1.5rem 2rem 2rem;
}

.card-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.card-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6B6B;
    font-weight: bold;
}

/* Why Choose Us */
.why-choose-us {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 250, 243, 0.95);
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #FFFAF3;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #FFE66D, #FF6B6B);
    color: #1F1F1F;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: rgba(255, 250, 243, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #1F1F1F;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #FFE66D;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 31, 31, 0.8);
}

.form-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    background: #FFFAF3;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: #1F1F1F;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1F1F1F;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #FFE66D;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFAF3;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #FF6B6B;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1F1F1F;
    color: #FFFAF3;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFE66D;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item svg {
    color: #FF6B6B;
    margin-top: 2px;
    flex-shrink: 0;
}

.legal-links,
.quick-links {
    list-style: none;
}

.legal-links li,
.quick-links li {
    margin-bottom: 0.5rem;
}

.legal-links a,
.quick-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.legal-links a:hover,
.quick-links a:hover {
    color: #FFE66D;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

.footer-legal-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #1F1F1F;
    color: #FFFAF3;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #FFE66D;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-contact {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .cards-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        background-attachment: scroll;
    }

    .why-choose-us,
    .contact-form {
        background-attachment: scroll;
    }

    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .card-image {
        height: 150px;
    }
    
    .card-header {
        padding: 1rem 1.5rem 0;
    }
    
    .card-content {
        padding: 0 1.5rem;
    }
    
    .card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 1.5rem 1rem;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 4rem 0;
    background: #FFFAF3;
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFAF3;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #FF6B6B;
}

.policy-header h1 {
    color: #1F1F1F;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-updated {
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.policy-body h2 {
    color: #FF6B6B;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FFE66D;
}

.policy-body h3 {
    color: #1F1F1F;
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-body p {
    color: #1F1F1F;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.policy-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-body li {
    color: #1F1F1F;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-box {
    background: #FFE66D;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #FF6B6B;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: #1F1F1F;
    font-weight: 600;
}

.policy-footer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF6B6B;
    font-weight: 500;
    margin-top: 2rem;
}

/* Policy Page Specific Elements */
.company-info {
    background: #FFE66D;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF6B6B;
    margin: 1.5rem 0;
}

.company-info p {
    margin-bottom: 0.5rem;
    color: #1F1F1F;
    font-weight: 500;
}

.important-note {
    background: linear-gradient(135deg, #FFE66D, #FF6B6B);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #FF6B6B;
}

.important-note h4 {
    color: #1F1F1F;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.important-note h4:first-child {
    margin-top: 0;
}

.important-note ul {
    margin-bottom: 1rem;
}

.important-note li {
    color: #1F1F1F;
    font-weight: 500;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFAF3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: #FF6B6B;
    color: #FFFAF3;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #FFE66D;
    color: #1F1F1F;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    background: #FFE66D;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF6B6B;
}

.browser-item h4 {
    color: #1F1F1F;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.browser-item p {
    color: #1F1F1F;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Print Styles */
@media print {
    .header,
    .mobile-nav,
    .cookie-popup,
    .hero-actions,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-overlay,
    .section-overlay,
    .form-overlay {
        display: none !important;
    }
    
    .policy-content {
        box-shadow: none;
        border: 2px solid #ccc;
    }
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-body h2 {
        font-size: 1.3rem;
    }
    
    .policy-body ul {
        padding-left: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .browser-instructions {
        grid-template-columns: 1fr;
    }
} 