/* Paper Haven Quartz - Main Stylesheet */

/* Base Styles and Typography */
:root {
    --primary-color: #0d7ea2;
    --primary-dark: #085e7b;
    --primary-light: #9acfe3;
    --secondary-color: #f8a13f;
    --secondary-dark: #e58b1e;
    --secondary-light: #ffc679;
    --dark-color: #333333;
    --text-color: #4a4a4a;
    --light-color: #ffffff;
    --grey-color: #f7f7f7;
    --grey-dark: #e6e6e6;
    --border-color: #dddddd;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --font-main: 'Montserrat', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Container and Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.page-header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.8rem;
    opacity: 0.9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4.2rem;
    font-weight: 700;
}

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

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

h4 {
    font-size: 2rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.6rem;
}

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

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

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 1.2rem 2.4rem;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--light-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--grey-color);
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.centered-button {
    text-align: center;
    margin-top: 4rem;
}

/* Translucent Elements */
.translucent-block {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: url(images/1.jpg) center/cover no-repeat;
    height: 80vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.service-icon {
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 4rem;
    color: var(--primary-color);
}

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

.service-card p {
    font-size: 1.6rem;
    color: var(--text-color);
}

/* Featured Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
}

.destination-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

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

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.destination-info {
    padding: 2rem;
    background-color: var(--light-color);
}

.destination-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.destination-info p {
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--grey-color);
    padding: 6rem 0;
}

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

.testimonial {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-text p {
    position: relative;
    padding: 0 2rem;
}

.testimonial-text p:before,
.testimonial-text p:after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-light);
    position: absolute;
    line-height: 0;
}

.testimonial-text p:before {
    top: 3rem;
    left: 0;
}

.testimonial-text p:after {
    bottom: -1rem;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-meta {
    font-size: 1.4rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.blog-content p {
    margin-bottom: 2rem;
}

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

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

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    background: url(images/9.jpg) center/cover no-repeat;
    padding: 8rem 0;
    position: relative;
}

.newsletter:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.newsletter-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--light-color);
}

.newsletter-content h2 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.6rem;
}

/* Spell Check Button */
.spell-check {
    background-color: var(--grey-color);
    padding: 4rem 0;
}

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

.spell-check-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.spell-check-content p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-logo p {
    font-size: 1.5rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links ul li a {
    color: #ccc;
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 1rem;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

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

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

.social-icons i {
    color: var(--light-color);
    font-size: 1.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom p {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 1.4rem;
    color: #ccc;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 2rem 0;
    z-index: 2000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
    max-width: 600px;
}

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

.cookie-learn-more {
    color: var(--primary-light);
    font-size: 1.4rem;
    text-decoration: underline;
    margin-left: 2rem;
}

/* Blog Featured Post */
.blog-featured {
    margin-bottom: 6rem;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image {
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 4rem;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.post-meta {
    font-size: 1.4rem;
    color: #777;
    margin-bottom: 2rem;
}

/* Blog Main Posts */
.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.post-image {
    height: 100%;
    min-height: 250px;
}

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

.post-content {
    padding: 3rem;
}

/* Blog Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
}

.category-item {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    background-color: var(--primary-color);
}

.category-item:hover i,
.category-item:hover h3 {
    color: var(--light-color);
}

.category-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.category-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    transition: var(--transition);
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission h2,
.values h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding-bottom: 2rem;
}

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

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

.team-member h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 1rem;
}

.team-member p:nth-child(3) {
    font-weight: 500;
    color: var(--primary-color);
}

.team-member .social-icons {
    justify-content: center;
    margin-top: 1.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.achievement {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.achievement-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.achievement h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.achievement p {
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 0;
}

/* Call To Action */
.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg') center/cover no-repeat;
    padding: 8rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--light-color);
}

.cta-content h2 {
    font-size: 3.6rem;
    color: var(--light-color);
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 3rem;
}

.contact-item .icon {
    margin-right: 2rem;
}

.contact-item .icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-item .info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-item .info p {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.social-connect {
    margin-top: 4rem;
}

.social-connect h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    padding: 4rem;
}

.contact-form-container {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 4rem;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-form-container p {
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-checkbox input {
    width: auto;
}

.form-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--grey-color);
}

.map-placeholder img {
    max-width: 100%;
    max-height: 70%;
    object-fit: cover;
}

.map-placeholder p {
    margin-top: 1.5rem;
    font-style: italic;
    color: #777;
}

/* FAQ Section */
.faq {
    margin-top: 6rem;
    padding: 4rem;
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    cursor: pointer;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 2rem;
    margin-bottom: 0;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding-bottom: 2rem;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
}

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

.modal-content {
    background-color: var(--light-color);
    margin: 10% auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    position: relative;
    animation: modalOpen 0.3s ease-out;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--dark-color);
}

.modal-body {
    padding: 4rem;
    text-align: center;
}

.modal-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.modal-body h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.modal-body p {
    margin-bottom: 3rem;
}

.close-btn {
    display: inline-block;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .about-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    header .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 3.6rem;
    }
    
    .service-card,
    .destination-card,
    .blog-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 3rem 2rem;
    }
    
    .post-content {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
}
