/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-text: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --info-color: #2980b9;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-spacing: 60px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    text-align: center;
}

p {
    margin-bottom: 1rem;
    text-align: center;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

header h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

nav a:hover, nav a.active {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn {
    background-color: var(--accent-color);
    font-size: 1.1rem;
}

.hero .btn:hover {
    background-color: #c0392b;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 30px;
    background-color: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    margin-bottom: 20px;
}

.icon svg {
    width: 35px;
    height: 35px;
}

/* Fun Fact Section */
.fun-fact {
    background-color: var(--info-color);
    padding: 20px 30px;
    margin: 40px 0;
}

.fact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.fun-fact h3 {
    color: white;
    margin-bottom: 10px;
}

.fun-fact p {
    font-size: 1.1rem;
}

/* Recent Posts Section */
.recent-posts {
    padding: 60px 30px;
    background-color: var(--background-color);
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3, .post-card p {
    padding: 0 20px;
}

.post-card h3 {
    margin-top: 20px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.read-more {
    display: inline-block;
    margin: 15px 20px 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.read-more:hover {
    color: var(--primary-color);
}

.centered-btn {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 30px;
    background-color: white;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    position: relative;
}

.quote {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.quote svg {
    width: 30px;
    height: 30px;
}

.testimonial p {
    margin-bottom: 20px;
    font-style: italic;
}

.client strong {
    display: block;
    color: var(--primary-color);
}

.client span {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 30px 20px;
}

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

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    color: #ccc;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact address p, .footer-contact p {
    margin-bottom: 5px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 20px;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.accept {
    background-color: var(--success-color);
    color: white;
}

.customize {
    background-color: var(--info-color);
    color: white;
}

.decline {
    background-color: #666;
    color: white;
}

.cookie-policy-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.blog-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.post-header {
    position: relative;
}

.post-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
}

.post-meta span {
    font-size: 0.9rem;
}

.blog-post h2 {
    padding: 20px;
    font-size: 1.8rem;
}

.post-content {
    padding: 0 30px 30px;
}

.post-content p {
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.8;
}

.share-post {
    border-top: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.social-share a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* About Page Styles */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.company-story {
    margin-bottom: 60px;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
}

.story-text {
    flex: 2;
    min-width: 300px;
}

.story-text p {
    text-align: left;
    margin-bottom: 15px;
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3, .team-member p {
    padding: 0 20px;
}

.team-member h3 {
    margin-top: 20px;
}

.team-member p:last-of-type {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 20px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

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

.achievement-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.achievement-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    margin-bottom: 20px;
}

.achievement-icon svg {
    width: 35px;
    height: 35px;
}

/* Services Page Styles */
.services-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-intro {
    margin-bottom: 60px;
    text-align: center;
}

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

.service-category {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-details h3 {
    text-align: left;
    color: var(--primary-color);
}

.service-details p {
    text-align: left;
}

.service-details ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-details li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-details .btn {
    margin-top: 10px;
}

.process-steps {
    max-width: 800px;
    margin: 40px auto 0;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    text-align: left;
    margin-bottom: 10px;
}

.step-content p {
    text-align: left;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.destination-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
    transform: translateY(-10px);
}

.destination-overlay h3 {
    color: white;
    margin-bottom: 5px;
    text-align: left;
}

.destination-overlay p {
    text-align: left;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.destination-link {
    display: inline-block;
    color: white;
    padding: 5px 10px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.destination-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-section {
    background-color: var(--primary-color);
    padding: 60px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 60px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: #ccc;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: var(--accent-color);
    font-size: 1.1rem;
}

.cta-btn:hover {
    background-color: #c0392b;
}

/* Contact Page Styles */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 3;
    min-width: 300px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
    min-width: 48%;
}

.form-group.full-width {
    width: 100%;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.checkbox-container input {
    width: auto;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.contact-info {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    margin-bottom: 15px;
}

.info-icon svg {
    width: 30px;
    height: 30px;
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    margin-bottom: 5px;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.business-hours, .social-connect {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.business-hours ul {
    margin: 15px 0;
}

.business-hours li {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.business-hours span {
    font-weight: 500;
}

.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.thank-you-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    margin-bottom: 20px;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .features, 
    .post-previews, 
    .testimonial-slider, 
    .footer-content,
    .team-grid,
    .values-grid,
    .achievements-grid,
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .service-category, 
    .reverse {
        flex-direction: column;
    }
    
    .service-details h3, 
    .service-details p,
    .step-content h3,
    .step-content p {
        text-align: center;
    }
    
    .service-details ul {
        max-width: 300px;
        margin: 20px auto;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .story-text p {
        text-align: center;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}
