/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --neon-teal: #0FFFD7;
    --deep-navy: #051729;
    --bright-coral: #FF6F61;
    --warm-yellow: #F5C842;
    --charcoal: #2B2B2B;
    
    /* Gradients */
    --gradient-teal-navy: linear-gradient(135deg, var(--neon-teal), var(--deep-navy));
    --gradient-coral-teal: linear-gradient(135deg, var(--bright-coral), var(--neon-teal));
    
    /* Typography */
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --heading-size: clamp(1.8rem, 2vw + 1rem, 3rem);
    --subheading-size: clamp(1.2rem, 1.5vw + 0.8rem, 2rem);
    --body-size: clamp(0.9rem, 1vw + 0.6rem, 1.1rem);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: clamp(60px, 8vw, 120px);
    --element-padding: clamp(20px, 3vw, 40px);
    
    /* Effects */
    --border-radius: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 40px rgba(5, 23, 41, 0.1);
    --shadow-hover: 0 30px 60px rgba(5, 23, 41, 0.15);
}

body {
    font-family: var(--font-family);
    font-size: var(--body-size);
    line-height: 1.6;
    color: var(--charcoal);
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--heading-size);
    color: var(--deep-navy);
}

h2 {
    font-size: var(--subheading-size);
    color: var(--deep-navy);
    text-align: center;
}

h3 {
    font-size: clamp(1rem, 1.2vw + 0.6rem, 1.4rem);
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--neon-teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--bright-coral);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--gradient-coral-teal);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--neon-teal);
    color: var(--neon-teal);
}

.cta-button.secondary:hover {
    background: var(--neon-teal);
    color: var(--deep-navy);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep-navy);
    text-transform: lowercase;
}

.logo a:hover {
    color: var(--neon-teal);
}

/* Mobile Menu Implementation */
.menu-toggle-checkbox {
    display: none;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--deep-navy);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--charcoal);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-menu a:hover {
    background: var(--neon-teal);
    color: var(--deep-navy);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
    }
    
    .menu-toggle-checkbox:checked + .nav-overlay {
        display: block;
    }
    
    .menu-toggle-checkbox:checked ~ .nav .nav-menu {
        right: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .nav .menu-toggle .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle-checkbox:checked ~ .nav .menu-toggle .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .nav .menu-toggle .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
    background: var(--gradient-teal-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Sections */
section {
    padding: var(--section-padding) 0;
}

.about, .benefits, .process, .contact {
    background: #f8fafc;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.advantages {
    display: grid;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-coral-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-coral-teal);
    z-index: 2;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card ul {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.service-card h3 {
    padding-top: 1.5rem;
}

.service-card ul {
    padding-bottom: 2.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.service-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-teal);
    font-weight: bold;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-coral-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--deep-navy);
    color: white;
}

.testimonials h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel input[type="radio"] {
    display: none;
}

.testimonials-wrapper {
    display: flex;
    transition: var(--transition);
    width: 300%;
}

.testimonial-slide {
    width: 33.333%;
    flex-shrink: 0;
    padding: 2rem;
    text-align: center;
}

.testimonial-slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-slide cite {
    color: var(--neon-teal);
    font-weight: 600;
}

#testimonial1:checked ~ .testimonials-wrapper {
    transform: translateX(0%);
}

#testimonial2:checked ~ .testimonials-wrapper {
    transform: translateX(-100%);
}

#testimonial3:checked ~ .testimonials-wrapper {
    transform: translateX(-200%);
}

/* Contact Form Section */
.contact-form {
    background: var(--gradient-teal-navy);
    color: white;
}

.contact-form h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.order-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-top: 2px;
    accent-color: var(--neon-teal);
    flex-shrink: 0;
}

.checkbox-text {
    color: white;
    flex: 1;
}

.checkbox-text a {
    color: var(--neon-teal);
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: var(--warm-yellow);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--gradient-coral-teal);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.contact-item a {
    color: black !important;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--deep-navy);
    color: white;
    padding: var(--section-padding) 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--neon-teal);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-buttons a {
    color: var(--neon-teal);
    text-decoration: underline;
}

.accept-cookies {
    background: var(--neon-teal);
    color: var(--deep-navy);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.accept-cookies:hover {
    background: var(--bright-coral);
    color: white;
}

/* Thank You Page */
.thank-you {
    padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-coral-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.next-steps {
    margin: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.phone-number a {
    color: var(--bright-coral);
}

.office-hours {
    color: var(--charcoal);
    font-style: italic;
}

/* Legal Pages */
.legal-page {
    padding: calc(80px + var(--section-padding)) 0 var(--section-padding);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content section {
    padding: 0;
    margin-bottom: 3rem;
}

.legal-content h2 {
    border-bottom: 2px solid var(--neon-teal);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--bright-coral);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: var(--neon-teal);
    color: var(--deep-navy);
    font-weight: 600;
}

.contact-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.last-updated {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: var(--charcoal);
    font-style: italic;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(40px, 6vw, 80px);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .order-form {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 15px;
    }
    
         .map-iframe {
         height: 300px;
     }
     
     /* Fix testimonials on mobile and tablet */
     .testimonials-wrapper {
         width: 100% !important;
         flex-direction: column;
     }
     
     .testimonial-slide {
         width: 100% !important;
         flex-shrink: 1;
     }
 }

@media (max-width: 480px) {
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        align-self: center;
    }
    
    .service-card .service-icon,
    .service-card h3,
    .service-card p,
    .service-card ul {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
         .testimonial-slide {
         padding: 1.5rem;
     }
     
     /* Fix testimonials layout on mobile */
     .testimonials-wrapper {
         width: 100% !important;
         flex-direction: column;
     }
     
     .testimonial-slide {
         width: 100% !important;
         flex-shrink: 1;
     }
     
     .order-form {
         padding: 1.5rem;
     }
    
    .legal-content {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .cta-button,
    .back-link {
        display: none !important;
    }
    
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        color: black !important;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
a:focus {
    outline: 2px solid var(--neon-teal);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --neon-teal: #00B8A0;
        --bright-coral: #D73502;
        --warm-yellow: #B8860B;
    }
} 