/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', 'Kalam', cursive;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fef9e7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hand-drawn style utilities */
.sketch-border {
    border: 3px solid #e67e22;
    border-radius: 15px;
    position: relative;
}

.sketch-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #d35400;
    border-radius: 18px;
    z-index: -1;
    transform: rotate(-0.5deg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Kalam', cursive;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-accept-all, .btn-necessary, .btn-customize, .btn-save, .btn-cancel {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid #e67e22;
    border-radius: 25px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    font-family: 'Kalam', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.btn-primary:hover, .btn-secondary:hover, .btn-accept-all:hover {
    background: #e67e22;
    transform: rotate(1deg) scale(1.05);
    box-shadow: 5px 5px 12px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: #3498db;
    border-color: #2980b9;
}

.btn-secondary:hover {
    background: #2980b9;
}

.btn-necessary {
    background: #95a5a6;
    border-color: #7f8c8d;
}

.btn-customize {
    background: #9b59b6;
    border-color: #8e44ad;
}

.btn-save {
    background: #27ae60;
    border-color: #229954;
}

.btn-cancel {
    background: #e74c3c;
    border-color: #c0392b;
}

/* Header */
.header {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-bottom: 4px solid #d35400;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
}

.logo span {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 15px;
}

.nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(-2deg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef9e7, #f4e4bc);
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243,156,18,0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    transform: rotate(3deg);
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.2));
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    transform: rotate(-1deg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    width: 100px;
    height: 4px;
    background: #f39c12;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: #e67e22;
    margin-bottom: 1.5rem;
    transform: rotate(-0.5deg);
}

.about-text h4 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin: 1.5rem 0;
}

.about-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.about-list li::before {
    content: '✈️';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #e67e22;
    position: relative;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.service-card h3 {
    color: #e67e22;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fef9e7;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #f39c12;
    position: relative;
    transform: rotate(1deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card:nth-child(even) {
    transform: rotate(-1deg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #f39c12;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-author strong {
    color: #e67e22;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.rating {
    color: #f39c12;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #27ae60;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.blog-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.2);
}

.blog-card h3 a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #2ecc71;
}

.blog-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #2ecc71;
    transform: translateX(5px);
}

/* Blog Articles */
.blog-article {
    padding: 120px 0 80px;
    background: #fff;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #2980b9;
    transform: translateX(-5px);
}

/* Subscription Section */
.subscription {
    padding: 80px 0;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    text-align: center;
}

.subscription .section-title {
    color: white;
}

.subscription p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px;
    border: 3px solid #d35400;
    border-radius: 25px;
    font-size: 1.1rem;
    font-family: 'Comic Neue', cursive;
    background: white;
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    transform: rotate(0deg);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    transform: scale(1.2);
}

.checkbox-label a {
    color: #fef9e7;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f39c12;
    margin-bottom: 1.5rem;
    transform: rotate(-1deg);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #34495e;
    border-radius: 20px;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-links a:hover {
    background: #f39c12;
    border-color: #f39c12;
    transform: rotate(1deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #34495e;
    color: #bdc3c7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1001;
    border-top: 4px solid #f39c12;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons button {
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 40px;
    border: 3px solid #e67e22;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: rotate(-0.5deg);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 25px;
}

.close:hover {
    color: #e67e22;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h3 {
    color: #e67e22;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.cookie-option span {
    flex: 1;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #fef9e7, #f4e4bc);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-illustration {
    margin-bottom: 2rem;
}

.success-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.thanks-title {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    transform: rotate(-2deg);
}

.thanks-subtitle {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    transform: rotate(1deg);
}

.thanks-message {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid #27ae60;
    margin: 2rem 0;
    transform: rotate(-0.5deg);
}

.what-next {
    text-align: left;
    margin-top: 2rem;
}

.what-next h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.what-next ul {
    list-style: none;
}

.what-next li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-share {
    margin-top: 3rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn:hover {
    transform: rotate(1deg) scale(1.05);
}

.thanks-footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.thanks-footer a {
    color: #f39c12;
    text-decoration: none;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #f39c12;
        padding: 20px;
        z-index: 999;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        border-top: 3px solid #e67e22;
    }
    
    .nav.mobile-open {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav li {
        text-align: center;
    }
    
    .nav a {
        display: block;
        padding: 10px 15px;
        background: rgba(255,255,255,0.1);
        border-radius: 20px;
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .nav a:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle {
        display: flex;
        cursor: pointer;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10% auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .thanks-title {
        font-size: 2.5rem;
    }
    
    .thanks-subtitle {
        font-size: 1.5rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 1.5rem;
    }
    
    .thanks-message {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 15px;
    }
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .modal,
    .subscription {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .about,
    .services,
    .testimonials,
    .blog {
        background: white;
        box-shadow: none;
    }
}
