/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F5F3EF;
}

/* Container */
.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: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6F61, #3B82F6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.btn-secondary:hover {
    background-color: #3B82F6;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #FF6F61;
    border: 2px solid #FF6F61;
}

.btn-outline:hover {
    background-color: #FF6F61;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1F2937;
    color: white;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    margin-bottom: 8px;
    color: #FF6F61;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-link {
    color: #3B82F6;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-accept {
    background-color: #FF6F61;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: #e55a50;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6F61, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3B82F6;
}

.nav-link.cta-link {
    background: linear-gradient(135deg, #FF6F61, #3B82F6);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #111827;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F3EF 0%, #ffffff 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6F61, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #1F2937;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(59, 130, 246, 0.1));
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6F61, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-text {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F5F3EF;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    color: #1F2937;
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.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:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #3B82F6, #FF6F61);
    color: white;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #FF6F61;
    color: white;
    padding: 5px 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.service-card .service-header,
.service-card .service-features,
.service-card .btn {
    padding-left: 30px;
    padding-right: 30px;
}

.service-card .service-header {
    padding-top: 30px;
}

.service-card .btn {
    margin-bottom: 30px;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #FF6F61;
}

.service-card.featured .service-price {
    color: white;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: white;
}

.advantages h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1F2937;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.05), rgba(59, 130, 246, 0.05));
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(59, 130, 246, 0.1));
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    color: #1F2937;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #F5F3EF;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1F2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FF6F61;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    color: #666;
}

.testimonial-author strong {
    color: #1F2937;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Order Form Section */
.order-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #1F2937, #374151);
    color: white;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    color: white;
    margin-bottom: 15px;
}

.form-header p {
    color: #D1D5DB;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-error {
    background-color: rgba(255, 111, 97, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #FF6F61;
}

.form-error p {
    margin: 0;
    font-weight: 500;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    color: white !important;
}

.form-group select option {
    background-color: #1F2937;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-checkboxes {
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-group a {
    color: #3B82F6;
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1F2937;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 10px;
    background: #F5F3EF;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.05), rgba(59, 130, 246, 0.05));
}

.faq-item h3 {
    color: #1F2937;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F5F3EF;
}

.contact h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1F2937;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item h3 {
    color: #1F2937;
    margin-bottom: 10px;
}

.contact-item p {
    color: #111827;
    margin-bottom: 0;
}

.contact .contact-item a {
    color: #3B82F6;
    text-decoration: none;
}

.contact .contact-item a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FF6F61;
    margin-bottom: 20px;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.6;
}

.footer .contact-info p {
    margin-bottom: 15px;
    color: #D1D5DB;
}

.footer .contact-info a {
    color: white;
    text-decoration: none;
}

.footer .contact-info a:hover {
    color: #3B82F6;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3B82F6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-content p {
    color: #9CA3AF;
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
    padding: 100px 0 80px;
    background-color: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: #1F2937;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF6F61, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #1F2937;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #3B82F6;
}

.policy-section h3 {
    color: #1F2937;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.policy-section h4 {
    color: #3B82F6;
    font-size: 1rem;
    margin: 20px 0 10px 0;
}

.policy-section ul, .policy-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section strong {
    color: #1F2937;
}

.policy-content a {
    color: #3B82F6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #FF6F61;
}

.policy-content .contact-info,
.thank-you .contact-info {
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.05), rgba(59, 130, 246, 0.05));
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.policy-content .contact-info p,
.thank-you .contact-info p {
    margin-bottom: 10px;
}

.policy-content .contact-info strong,
.thank-you .contact-info strong {
    color: #1F2937;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-image {
        height: 180px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card .service-header,
    .service-card .service-features,
    .service-card .btn {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
