/* 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: #2C3E50;
    background-color: #FFFFFF;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #34495E;
}

a {
    color: #3498DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980B9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.btn-primary {
    background-color: #3498DB;
    color: white;
}

.btn-primary:hover {
    background-color: #2980B9;
    color: white;
}

.btn-secondary {
    background-color: #34495E;
    color: white;
}

.btn-secondary:hover {
    background-color: #2C3E50;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #3498DB;
    border: 2px solid #3498DB;
}

.btn-outline:hover {
    background-color: #3498DB;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text h4 {
    color: white;
    margin-bottom: 5px;
}

.cookie-text p {
    color: #BDC3C7;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-modal-header h3 {
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7F8C8D;
}

.close-btn:hover {
    color: #2C3E50;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.slider {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background-color: #BDC3C7;
    border-radius: 24px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.cookie-toggle input:checked + .slider {
    background-color: #3498DB;
}

.cookie-toggle input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .slider {
    background-color: #27AE60;
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 20px;
    text-align: right;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
}

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

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

.nav-logo img {
    height: 40px;
}

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2C3E50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #2C3E50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498DB;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2C3E50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ECF0F1 0%, #BDC3C7 100%);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2C3E50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #34495E;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #7F8C8D;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.luxury {
    border-top: 4px solid #F39C12;
}

.service-card.business {
    border-top: 4px solid #3498DB;
}

.service-card.events {
    border-top: 4px solid #E74C3C;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 80px;
    height: 80px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: #7F8C8D;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 5px 0;
    color: #34495E;
}

.service-card li:before {
    content: "✓";
    color: #27AE60;
    font-weight: bold;
    margin-right: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-header img {
    width: 50px;
    height: 50px;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #2C3E50;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature h4 {
    color: #3498DB;
    margin-bottom: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #F8F9FA;
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 5px;
}

.stat p {
    color: #7F8C8D;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    margin-bottom: 5px;
}

.reviewer-info span {
    color: #7F8C8D;
    font-size: 0.9rem;
}

.rating {
    color: #F39C12;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: #34495E;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    color: white;
}

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

.newsletter-text h2 {
    color: white;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #BDC3C7;
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 24px;
    background-color: #27AE60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #229954;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #BDC3C7;
}

.form-disclaimer label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-disclaimer input[type="checkbox"] {
    accent-color: #27AE60;
}

.form-disclaimer a {
    color: #BDC3C7;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-header img {
    width: 50px;
    height: 50px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #7F8C8D;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-item strong {
    color: #2C3E50;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 0;
    color: #34495E;
}

.contact-form {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2C3E50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #BDC3C7;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498DB;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background-color: #2C3E50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 30px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: #BDC3C7;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #BDC3C7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498DB;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #BDC3C7;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3498DB;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495E;
    color: #BDC3C7;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #F8F9FA;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    margin-bottom: 10px;
    color: #2C3E50;
}

.last-updated {
    color: #7F8C8D;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #3498DB;
    margin-bottom: 15px;
    border-bottom: 2px solid #ECF0F1;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: #2C3E50;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #34495E;
}

.legal-section strong {
    color: #2C3E50;
}

/* Cookie Policy Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ECF0F1;
}

.cookie-table th {
    background-color: #F8F9FA;
    font-weight: 600;
    color: #2C3E50;
}

.cookie-settings-link {
    margin: 20px 0;
    text-align: center;
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0 80px;
    background-color: #F8F9FA;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    margin-bottom: 20px;
    color: #27AE60;
}

.thanks-message {
    font-size: 1.2rem;
    color: #34495E;
    margin-bottom: 40px;
}

.thanks-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.info-item h3 {
    color: #3498DB;
    margin-bottom: 10px;
}

.info-item ul {
    margin-left: 20px;
}

.info-item li {
    margin-bottom: 5px;
    color: #34495E;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Pages */
.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    color: white;
}

.blog-hero-content {
    text-align: center;
}

.blog-hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.blog-hero h1 {
    color: white;
    margin-bottom: 10px;
}

.blog-hero p {
    color: #BDC3C7;
    font-size: 1.2rem;
}

.blog-grid {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-post-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-post-meta .date {
    color: #7F8C8D;
}

.blog-post-meta .category {
    color: #3498DB;
    font-weight: 500;
}

.blog-post h2 {
    margin-bottom: 15px;
}

.blog-post h2 a {
    color: #2C3E50;
    text-decoration: none;
}

.blog-post h2 a:hover {
    color: #3498DB;
}

.blog-post p {
    color: #7F8C8D;
    margin-bottom: 15px;
}

.blog-read-more {
    color: #3498DB;
    font-weight: 500;
    text-decoration: none;
}

.blog-read-more:hover {
    color: #2980B9;
}

/* Blog Article */
.blog-article {
    padding: 120px 0 80px;
    background-color: #F8F9FA;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #7F8C8D;
}

.article-meta .category {
    color: #3498DB;
    font-weight: 500;
}

.article-intro {
    font-size: 1.2rem;
    color: #34495E;
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-image {
    text-align: center;
    margin-bottom: 30px;
}

.article-image svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.article-content h2 {
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content h3 {
    color: #3498DB;
    margin-top: 25px;
    margin-bottom: 10px;
}

.article-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-content li {
    margin-bottom: 8px;
    color: #34495E;
}

.article-content strong {
    color: #2C3E50;
}

.article-footer {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-share,
.article-tags {
    margin-bottom: 20px;
}

.article-share h4,
.article-tags h4 {
    margin-bottom: 10px;
    color: #2C3E50;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 8px 16px;
    background-color: #34495E;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: #2C3E50;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #ECF0F1;
    color: #2C3E50;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

.article-navigation {
    max-width: 800px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-info {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-navigation {
        flex-direction: column;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .article-content {
        padding: 30px 20px;
    }

    .article-footer {
        padding: 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .thanks-content {
        padding: 40px 20px;
    }
}
