/* ==================== VARIÁVEIS E RESET ==================== */
:root {
    --navy: #1a2f4d;
    --navy-dark: #0f1a2e;
    --navy-light: #2d4a7a;
    --gold: #d4a574;
    --gold-dark: #b8884a;
    --gold-light: #e8c9a0;
    --cream: #f8f6f3;
    --cream-dark: #ede9e4;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
}

/* ==================== TIPOGRAFIA ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; color: var(--text-light); }

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* ==================== NAVBAR ==================== */
.navbar {
    background-color: var(--navy);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.navbar-logo h1 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.navbar-logo p {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 0;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.navbar-cta {
    display: flex;
}

.btn-cta {
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, rgba(26, 47, 77, 0.9) 0%, rgba(15, 26, 46, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a2f4d" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: left;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gold-text {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-contact a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.hero-contact a:hover {
    color: var(--gold);
}

/* ==================== BOTÕES ==================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--navy);
}

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

.btn-light:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

/* ==================== STATS SECTION ==================== */
.stats {
    background-color: var(--navy);
    color: white;
    padding: 3rem 20px;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background-color: var(--cream);
    padding: 5rem 20px;
}

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

.section-header.light {
    color: white;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-label {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

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

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background-color: var(--navy);
    padding: 5rem 20px;
}

.testimonials .section-header {
    margin-bottom: 3rem;
}

.testimonials .section-header.light p {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 4px;
    color: white;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.testimonial-card .stars {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-card strong {
    display: block;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.testimonial-card small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ==================== ABOUT TEASER ==================== */
.about-teaser {
    background-color: var(--cream);
    padding: 5rem 20px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==================== CTA SECTION ==================== */
.cta {
    background-color: var(--gold);
    color: var(--navy);
    padding: 4rem 20px;
    text-align: center;
}

.cta h2 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.cta p {
    color: var(--navy);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--navy-dark);
    color: white;
    padding: 3rem 20px 1rem;
}

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

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

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

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ==================== PAGE CONTENT ==================== */
.page-content {
    padding: 3rem 20px;
}

.page-content .container {
    max-width: 900px;
}

.content-section {
    margin-bottom: 3rem;
}

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

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

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

.value-item {
    background-color: var(--cream);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.value-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-item p {
    font-size: 0.9rem;
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-section h2 {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.contact-item p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--gold);
    font-weight: 600;
}

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

.social-btn {
    background-color: var(--navy);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.map-container {
    margin-top: 3rem;
}

.map-container h2 {
    margin-bottom: 1.5rem;
}

.map-container iframe {
    border-radius: 4px;
    box-shadow: var(--shadow);
}

/* ==================== BLOG ==================== */
.blog-header {
    margin-bottom: 2rem;
    text-align: right;
}

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

.blog-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.blog-card-date {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.blog-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.blog-card .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

.no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ==================== DESTINATIONS ==================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.destination-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.destination-card h3 {
    padding: 1.5rem 1.5rem 0;
    margin: 0;
    font-size: 1.3rem;
}

.destination-location {
    padding: 0 1.5rem;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.destination-description {
    padding: 0 1.5rem;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.destination-highlights {
    padding: 0 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.destination-highlights span {
    background-color: var(--cream);
    color: var(--navy);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.destination-card .btn {
    margin: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

/* ==================== SERVICE DETAILS ==================== */
.service-detail {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h2 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.service-detail h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.2rem;
}

.service-detail p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-detail ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-detail .btn {
    margin-top: 1.5rem;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #1fba50;
    transform: scale(1.1);
}

/* ==================== ADMIN AREA ==================== */
.admin-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h1 {
    margin: 0;
}

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

.posts-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.posts-table thead {
    background-color: var(--navy);
    color: white;
}

.posts-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.posts-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.posts-table tbody tr:hover {
    background-color: var(--cream);
}

.posts-table .actions {
    display: flex;
    gap: 0.5rem;
}

.posts-table .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--navy);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--navy-dark);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        width: 100%;
    }

    .navbar-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link.active::after {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-contact {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-buttons,
    .hero-buttons,
    .about-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn,
    .hero-buttons .btn,
    .about-buttons .btn {
        width: 100%;
    }

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-buttons {
        width: 100%;
    }

    .admin-buttons .btn {
        flex: 1;
    }

    .posts-table {
        font-size: 0.85rem;
    }

    .posts-table th,
    .posts-table td {
        padding: 0.7rem;
    }

    .modal-content {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .navbar-logo h1 {
        font-size: 1.3rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .service-card,
    .testimonial-card,
    .blog-card,
    .destination-card {
        padding: 1.5rem;
    }

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

    .page-header h1 {
        font-size: 1.5rem;
    }

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