/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F87E2C;
    --dark-graphite: #1A1B1E;
    --arctic-turquoise: #45C7DC;
    --ice-background: #EAF6F6;
    --transparent-black: #333941;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow-light: rgba(248, 126, 44, 0.1);
    --shadow-dark: rgba(26, 27, 30, 0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-graphite);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff6b1a);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-light);
}

.btn-secondary {
    background: transparent;
    color: var(--arctic-turquoise);
    border-color: var(--arctic-turquoise);
}

.btn-secondary:hover {
    background: var(--arctic-turquoise);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(69, 199, 220, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 27, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(248, 126, 44, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--dark-graphite);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    z-index: 999;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-accept-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
    background: #ff6b1a;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--ice-background) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(69, 199, 220, 0.1));
    transform: rotate(-15deg);
    animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatRight {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--dark-graphite);
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--transparent-black);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease 0.4s both;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease 0.3s both;
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-graphite);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--arctic-turquoise));
    border-radius: 2px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--arctic-turquoise));
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.benefit-title {
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.benefit-text {
    color: var(--transparent-black);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--ice-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-20px) rotateX(2deg);
    box-shadow: 0 25px 60px var(--shadow-dark);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-title {
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--transparent-black);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--transparent-black);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-dark);
}

.pricing-professional {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-period {
    color: var(--transparent-black);
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Info Block */
.info-block {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-graphite) 0%, var(--transparent-black) 100%);
    color: var(--white);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.info-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ccc;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.info-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--ice-background);
}

.testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--transparent-black);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--dark-graphite);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--transparent-black);
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--arctic-turquoise));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(248, 126, 44, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(248, 126, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 126, 44, 0); }
}

.step-title {
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--transparent-black);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--ice-background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    color: var(--dark-graphite);
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--transparent-black);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text strong {
    display: block;
    color: var(--dark-graphite);
    margin-bottom: 0.25rem;
}

.contact-text {
    color: var(--dark-graphite);
}

.contact-text a {
    color: var(--arctic-turquoise);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.map-svg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow-dark);
}

/* Order Form */
.order-form {
    padding: 80px 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.form-title {
    text-align: center;
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    color: var(--transparent-black);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-graphite);
    font-weight: 600;
}

.form-input, .form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(248, 126, 44, 0.1);
}

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--transparent-black);
}

.checkbox-label a {
    color: var(--arctic-turquoise);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0 80px;
    background: var(--ice-background);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    animation: bounceIn 1s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.thanks-title {
    color: var(--dark-graphite);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--transparent-black);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thanks-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 40px var(--shadow-dark);
    text-align: left;
}

.thanks-info h2 {
    color: var(--dark-graphite);
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.next-steps li {
    padding: 1rem;
    background: var(--ice-background);
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
}

.thanks-contact {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.thanks-contact h3 {
    color: var(--dark-graphite);
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    color: var(--dark-graphite);
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--dark-graphite);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ice-background);
}

.legal-content h3 {
    color: var(--dark-graphite);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--transparent-black);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--transparent-black);
    margin-bottom: 0.5rem;
}

.last-updated {
    text-align: center;
    color: var(--transparent-black);
    font-style: italic;
    margin-bottom: 3rem;
}

.contact-info {
    background: var(--ice-background);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info p {
    color: var(--dark-graphite) !important;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--dark-graphite) !important;
}

/* Footer */
.footer {
    background: var(--dark-graphite);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer .contact-info p {
    color: var(--primary-orange) !important;
    margin-bottom: 0.25rem;
}

.footer .contact-info strong {
    color: var(--primary-orange) !important;
}

.footer .contact-info a {
    color: var(--primary-orange) !important;
    text-decoration: none;
}

.footer .contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--transparent-black);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .benefits-grid,
    .services-grid,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .info-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-scroll {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .pricing-professional {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .benefits,
    .services,
    .pricing,
    .info-block,
    .testimonials,
    .how-it-works,
    .contact,
    .order-form {
        padding: 60px 0;
    }

    .form-wrapper {
        padding: 2rem;
        margin: 0 15px;
    }

    .hero-img {
        height: 250px;
    }

    .service-image {
        height: 150px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-popup,
    .footer {
        display: none;
    }

    .main-content {
        margin-top: 0;
    }

    * {
        background: white !important;
        color: black !important;
    }
} 