/* ===== Page-Specific Styles ===== */

/* ===== Animations ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-down {
    opacity: 0;
    animation: fadeDown 0.6s ease forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Active nav link */
.nav-link.active { color: var(--ocean) !important; }
.nav-link.active::after { width: 100% !important; background: var(--ocean) !important; }

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-tall { min-height: 70vh; }
.page-hero-short { min-height: 50vh; }

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        hsla(220, 35%, 12%, 0.3) 0%, 
        hsla(220, 35%, 12%, 0.6) 50%, 
        hsla(220, 35%, 12%, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 8rem 0 4rem;
}

.page-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.page-hero-description {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 36rem;
    margin: 0 auto;
}

/* ===== Blog Page ===== */
.blog-categories-section {
    padding: 3rem 0;
    background: var(--background);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.blog-category-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    background: var(--card);
    border: 2px solid var(--sand-dark);
    border-radius: 9999px;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s;
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--primary-foreground);
}

.blog-posts-section {
    background: var(--sand-light);
}

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

@media (min-width: 768px) {
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .blog-posts-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-post-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.blog-post-card.featured {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .blog-post-card.featured {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
    }
}

.blog-post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-post-card.featured .blog-post-image {
    height: 100%;
    min-height: 300px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.blog-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 35%, 12%, 0.4), transparent);
}

.blog-post-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--sunset);
    border-radius: 9999px;
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-card.featured .blog-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-post-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ocean);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-card.featured .blog-post-title {
    font-size: 1.75rem;
    -webkit-line-clamp: 3;
}

.blog-post-card:hover .blog-post-title {
    color: var(--ocean);
}

.blog-post-excerpt {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-card.featured .blog-post-excerpt {
    -webkit-line-clamp: 3;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--sand);
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--ocean);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-post-read-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.blog-post-read-time svg {
    width: 1rem;
    height: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    background: var(--card);
    border: 2px solid var(--sand-dark);
    border-radius: 0.5rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--ocean);
    border-color: var(--ocean);
    color: var(--primary-foreground);
}

.pagination-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ===== Destinations Page ===== */
.destinations-page-section {
    background: var(--background);
}

.featured-destination {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

@media (min-width: 1024px) {
    .featured-destination { grid-template-columns: 1.2fr 1fr; }
}

.featured-destination-image {
    position: relative;
    height: 300px;
}

@media (min-width: 1024px) {
    .featured-destination-image { height: 100%; min-height: 450px; }
}

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

.featured-destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(185, 65%, 35%, 0.3), transparent);
}

.featured-destination-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1024px) {
    .featured-destination-content { padding: 3rem; }
}

.destination-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.375rem 0.75rem;
    background: var(--sunset);
    border-radius: 9999px;
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-destination-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.featured-destination-subtitle {
    font-size: 1.125rem;
    color: var(--ocean);
    margin-bottom: 1.5rem;
}

.featured-destination-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.destination-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.destination-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.destination-stat svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--ocean);
}

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

@media (min-width: 768px) {
    .destinations-grid-page { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .destinations-grid-page { grid-template-columns: repeat(3, 1fr); }
}

.destination-page-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.destination-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.destination-page-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.destination-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.destination-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(220, 35%, 12%, 0.3), transparent);
}

.destination-page-content {
    padding: 1.5rem;
}

.destination-page-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(185, 65%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.destination-page-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--ocean);
}

.destination-page-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.destination-page-subtitle {
    font-size: 0.9375rem;
    color: var(--ocean);
    margin-bottom: 0.75rem;
}

.destination-page-description {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.destination-page-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--sand);
}

.destination-page-meta > span:first-child {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.destination-page-meta svg {
    width: 1rem;
    height: 1rem;
}

.destination-page-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.destination-page-card:hover .destination-page-arrow {
    background: var(--ocean);
    color: var(--primary-foreground);
}

/* Tips Section */
.tips-section {
    background: var(--sand-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .tips-grid { grid-template-columns: repeat(4, 1fr); }
}

.tip-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.tip-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: hsla(185, 65%, 35%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.tip-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--ocean);
}

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.tip-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== About Page ===== */
.about-content-section {
    background: var(--background);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-intro { grid-template-columns: 1fr 1fr; align-items: center; }
}

.about-intro-content {
    order: 2;
}

@media (min-width: 1024px) {
    .about-intro-content { order: 1; }
}

.about-intro-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1rem 0 1.5rem;
}

.about-intro-text {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-intro-image {
    position: relative;
    order: 1;
}

@media (min-width: 1024px) {
    .about-intro-image { order: 2; }
}

.about-intro-image img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
}

.about-image-decoration {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 3px solid var(--ocean);
    border-radius: 1rem;
    z-index: -1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem;
    background: var(--midnight);
    border-radius: 1.5rem;
}

@media (min-width: 768px) {
    .about-stats { grid-template-columns: repeat(4, 1fr); }
}

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

.about-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--sunset-light);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9375rem;
    color: hsla(40, 33%, 97%, 0.7);
}

/* Team Section */
.team-section {
    background: var(--sand-light);
}

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

@media (min-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
    background: var(--card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.team-social {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.team-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--ocean);
    color: var(--primary-foreground);
}

.team-social svg {
    width: 1rem;
    height: 1rem;
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--ocean);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    background: var(--background);
}

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

@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--coral);
    transform: translateY(-4px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: hsla(12, 85%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--coral);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--ocean-dark) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 32rem;
    margin: 0 auto 2rem;
}

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

/* ===== Contact Page ===== */
.contact-section {
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1.2fr 1fr; }
}

.contact-form-wrapper {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.contact-form-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    background: var(--sand-light);
    border: 2px solid var(--sand-dark);
    border-radius: 0.75rem;
    color: var(--foreground);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--ocean);
    background: var(--card);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

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

.contact-submit {
    align-self: flex-start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--midnight);
    padding: 2rem;
    border-radius: 1.5rem;
    color: var(--sand-light);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info-card > p {
    font-size: 0.9375rem;
    color: hsla(40, 33%, 97%, 0.7);
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsla(185, 65%, 35%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--ocean-light);
}

.contact-info-label {
    display: block;
    font-size: 0.75rem;
    color: hsla(40, 33%, 97%, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info-item a {
    color: var(--sand-light);
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--sunset-light);
}

.contact-social {
    padding-top: 1.5rem;
    border-top: 1px solid hsla(40, 33%, 97%, 0.1);
}

.contact-social > span {
    display: block;
    font-size: 0.875rem;
    color: hsla(40, 33%, 97%, 0.6);
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsla(40, 33%, 97%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand-light);
    transition: all 0.3s;
}

.contact-social-link:hover {
    background: var(--sunset);
}

.contact-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* FAQ */
.faq-preview {
    background: var(--card);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.faq-preview h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--sand-dark);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem;
    font-weight: 500;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--sand-light);
}

.faq-item[open] summary {
    background: var(--ocean);
    color: var(--primary-foreground);
    border-bottom: 2px solid var(--ocean);
}

.faq-item p {
    padding: 1rem;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    background: var(--sand-light);
}

/* Map Section */
.map-section {
    background: var(--sand-light);
    padding-bottom: 6rem;
}

.map-wrapper {
    background: var(--card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sand-light), var(--sand));
    text-align: center;
    padding: 2rem;
}

.map-placeholder svg {
    width: 3rem;
    height: 3rem;
    color: var(--ocean);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* ===== Blog Detail Page ===== */
.blog-detail-section {
    padding: 4rem 0 6rem;
    background: var(--background);
}

.blog-detail-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .blog-detail-container {
        grid-template-columns: 1fr 320px;
    }
}

/* Blog Article */
.blog-article {
    max-width: 100%;
}

.blog-article-header {
    margin-bottom: 2.5rem;
}

.blog-article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--ocean);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
}

.blog-article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--sand);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--ocean);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.blog-author-name {
    font-weight: 600;
    color: var(--foreground);
}

.blog-author-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.blog-meta-item svg {
    width: 1rem;
    height: 1rem;
}

/* Blog Content */
.blog-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--foreground);
}

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

.blog-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 2.5rem 0 1rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 2rem 0 0.75rem;
}

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--sand-light);
    border-left: 4px solid var(--ocean);
    border-radius: 0 0.75rem 0.75rem 0;
    font-style: italic;
    color: var(--foreground);
}

.blog-content blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-style: normal;
    color: var(--muted-foreground);
}

.blog-content-image {
    margin: 2.5rem 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.blog-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    background: var(--sand-light);
}

/* Info Box */
.info-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, hsla(185, 65%, 35%, 0.1), hsla(185, 65%, 35%, 0.05));
    border: 1px solid hsla(185, 65%, 35%, 0.2);
    border-radius: 1rem;
}

.info-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 0.75rem;
}

.info-box h4 svg {
    width: 1.25rem;
    height: 1.25rem;
}

.info-box ul {
    margin: 0;
    padding-left: 1.25rem;
}

.info-box li {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

.blog-tag {
    padding: 0.5rem 1rem;
    background: var(--sand-light);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: all 0.3s;
}

.blog-tag:hover {
    background: var(--ocean);
    color: var(--primary-foreground);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.sidebar-widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ocean);
}

/* Author Widget */
.sidebar-author {
    text-align: center;
}

.sidebar-author-avatar {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--ocean);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.sidebar-author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.sidebar-author-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.sidebar-author-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Related Posts Widget */
.related-post {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sand);
    transition: all 0.3s;
    text-decoration: none;
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post:first-child {
    padding-top: 0;
}

.related-post:hover .related-post-title {
    color: var(--ocean);
}

.related-post-image {
    width: 80px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-post-content {
    flex: 1;
}

.related-post-title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.related-post-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Tags Widget */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-tag {
    padding: 0.375rem 0.75rem;
    background: var(--sand-light);
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    transition: all 0.3s;
    text-decoration: none;
}

.sidebar-tag:hover {
    background: var(--ocean);
    color: var(--primary-foreground);
}

/* Blog Post Card Link Styling */
a.blog-post-card {
    text-decoration: none;
    display: block;
}

a.blog-post-card .blog-post-title,
a.blog-post-card .blog-post-excerpt,
a.blog-post-card .blog-post-category,
a.blog-post-card .blog-post-date,
a.blog-post-card .blog-post-read-time {
    color: inherit;
}
