/* 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: #2C2C2C;
    background-color: #FAF4EC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #FAF4EC;
    box-shadow: 0 2px 10px rgba(138, 28, 45, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #FAF4EC;
    border-radius: 8px;
    border: 2px solid #8A1C2D;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 28, 45, 0.2);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: #8A1C2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.calculator-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 4px;
    padding: 4px;
    position: relative;
}

.calc-display {
    width: 100%;
    height: 8px;
    background: #8A1C2D;
    border-radius: 2px;
    margin-bottom: 2px;
}

.calc-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.calc-buttons span {
    width: 6px;
    height: 6px;
    background: #8A1C2D;
    border-radius: 50%;
    display: block;
}

.logo-text {
    font-family: 'Arial', sans-serif;
}

.company-name {
    font-size: 14px;
    font-weight: bold;
    color: #8A1C2D;
    line-height: 1.2;
    margin-bottom: 2px;
}

.company-subtitle {
    font-size: 11px;
    color: #2C2C2C;
    line-height: 1;
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-container {
        padding: 6px 8px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }
    
    .calculator-icon {
        width: 22px;
        height: 22px;
        padding: 3px;
    }
    
    .calc-display {
        height: 6px;
    }
    
    .calc-buttons span {
        width: 4px;
        height: 4px;
    }
    
    .company-name {
        font-size: 12px;
    }
    
    .company-subtitle {
        font-size: 9px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8A1C2D;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8A1C2D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #1CC7C1;
}

.cta-btn {
    background: linear-gradient(135deg, #8A1C2D 0%, #F2C572 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 28, 45, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 28, 45, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #8A1C2D;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8A1C2D 0%, #F2C572 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/FEJ6eY.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-btn.primary {
    background: #FAF4EC;
    color: #8A1C2D;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: #8A1C2D;
    border: 2px solid #8A1C2D;
}

.hero-btn.secondary:hover {
    background: #8A1C2D;
    color: white;
}

/* Special styling for hero section */
.hero .hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero .hero-btn.secondary:hover {
    background: white;
    color: #8A1C2D;
}

/* Special styling for thank you page */
.thank-you .hero-btn.secondary {
    background: transparent;
    color: #8A1C2D;
    border: 2px solid #8A1C2D;
}

.thank-you .hero-btn.secondary:hover {
    background: #8A1C2D;
    color: white;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8A1C2D;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8A1C2D, #F2C572);
    border-radius: 2px;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #8A1C2D;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 28, 45, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Services Section */
.services {
    background: #FAF4EC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(138, 28, 45, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 28, 45, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3,
.service-card p,
.service-price,
.service-icon {
    padding: 0 2rem;
}

.service-card h3 {
    padding-top: 1.5rem;
}

.service-card .service-price {
    padding-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto;
    background: linear-gradient(135deg, #8A1C2D, #F2C572);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    color: #8A1C2D;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1CC7C1;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #1CC7C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-item h4 {
    color: #8A1C2D;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Process Section */
.process {
    background: #FAF4EC;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(138, 28, 45, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8A1C2D, #F2C572);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h4 {
    color: #8A1C2D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #FAF4EC;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #8A1C2D;
    box-shadow: 0 5px 20px rgba(138, 28, 45, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #8A1C2D;
}

.testimonial-rating {
    color: #F2C572;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Contact Form Section */
.contact-form {
    background: #FAF4EC;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(138, 28, 45, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8A1C2D;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8A1C2D;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: normal;
    line-height: 1.5;
}

.form-submit {
    background: linear-gradient(135deg, #8A1C2D 0%, #F2C572 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(138, 28, 45, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 28, 45, 0.4);
}

/* Contact Info Section */
.contact-info-section {
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: #FAF4EC;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(138, 28, 45, 0.1);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #8A1C2D, #F2C572);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info-card h4 {
    color: #8A1C2D;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info-card p {
    line-height: 1.6;
}

.contact-info-card a {
    color: #8A1C2D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #1CC7C1;
}

/* Footer */
.footer {
    background: #2C2C2C;
    color: white;
    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,
.footer-section h4 {
    color: #F2C572;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F2C572;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #8A1C2D;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #1CC7C1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: #F2C572;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F2C572;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2C2C2C;
    color: white;
    padding: 1rem;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background: #8A1C2D;
    color: white;
    border: none;
    cursor: pointer;
}

.cookie-btn.accept:hover {
    background: #1CC7C1;
}

.cookie-btn.info {
    background: transparent;
    color: #F2C572;
    border: 1px solid #F2C572;
}

.cookie-btn.info:hover {
    background: #F2C572;
    color: #2C2C2C;
}

/* Thank You Page Styles */
.thank-you {
    text-align: center;
    padding: 4rem 0;
    background: white;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you h1 {
    color: #8A1C2D;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-info {
    background: #FAF4EC;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(138, 28, 45, 0.1);
}

.thank-you-info h3 {
    color: #8A1C2D;
    margin-bottom: 1rem;
}

.thank-you-info ul {
    list-style: none;
    padding: 0;
}

.thank-you-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.thank-you-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1CC7C1;
    font-weight: bold;
}

.thank-you-info li:last-child {
    border-bottom: none;
}

.thank-you-contact {
    background: #8A1C2D;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
}

.thank-you-contact h3 {
    color: #F2C572;
    margin-bottom: 1rem;
}

.thank-you-contact .phone-link {
    color: #F2C572;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-contact .phone-link:hover {
    color: white;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .phone-link {
        font-size: 0.9rem;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .main-content {
        margin-top: 70px;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-section {
        padding-top: 8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-card h3,
    .service-card p,
    .service-price,
    .service-icon {
        padding: 0 1.5rem;
    }
    
    .service-card .service-price {
        padding-bottom: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .thank-you-info,
    .thank-you-contact {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-card h3,
    .service-card p,
    .service-price,
    .service-icon {
        padding: 0 1rem;
    }
    
    .service-card .service-price {
        padding-bottom: 1rem;
    }
    
    .thank-you-info,
    .thank-you-contact {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .thank-you h1 {
        font-size: 2rem;
    }
    
    .thank-you p {
        font-size: 1rem;
    }
    
    .main-content {
        margin-top: 60px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 2px solid #8A1C2D;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner {
        display: none;
    }
    
    .main-content {
        margin-top: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
} 