/* ========================================
   O.M.G. Resorts — Luxury Hospitality
   Elegant teal, gold, and navy palette
   ======================================== */

:root {
    --primary: #0d7377;
    --secondary: #14919b;
    --accent: #d4a853;
    --accent-hover: #c49a45;
    --dark: #1a1a2e;
    --light: #faf8f5;
    --white: #ffffff;
    --border: #e2ddd7;
    --text: #3d3d50;
    --text-light: #8a8a9a;
    --success: #0d7377;
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 400;
}

h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== Header & Navigation ========== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--dark);
    color: rgba(250, 248, 245, 0.7);
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.header-top a {
    color: var(--accent);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--dark);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.logo span {
    font-size: 0.7rem;
    color: var(--primary);
    display: block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: -2px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d7377 50%, #14919b 100%);
    color: var(--light);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    border: 1px solid rgba(212, 168, 83, 0.4);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--light);
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero p {
    color: rgba(250, 248, 245, 0.8);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.btn-outline {
    background: transparent;
    color: var(--light);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

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

.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
}

/* ========== Section Styles ========== */
section {
    padding: 5rem 0;
}

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

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

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.bg-white {
    background: var(--white);
}

.bg-warm {
    background: #eef6f6;
}

/* ========== Destination Cards ========== */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

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

.destination-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0d7377, #14919b);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.destination-image svg {
    width: 48px;
    height: 48px;
    fill: var(--white);
    opacity: 0.35;
}

.destination-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.destination-info {
    padding: 1.5rem;
}

.destination-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.destination-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.destination-info p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.destination-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destination-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.destination-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ========== Features / Why Choose ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(13, 115, 119, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

/* ========== Newsletter ========== */
.newsletter {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 0;
    text-align: center;
}

.newsletter h2 {
    color: var(--light);
}

.newsletter p {
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(250, 248, 245, 0.2);
    background: rgba(250, 248, 245, 0.08);
    color: var(--light);
    border-radius: var(--radius);
    font-size: 0.92rem;
}

.newsletter-form input::placeholder {
    color: rgba(250, 248, 245, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

/* ========== Package Cards ========== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.package-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d7377 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    color: var(--light);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

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

.package-card h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.package-card p {
    color: rgba(250, 248, 245, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-card .btn {
    position: relative;
    z-index: 1;
}

/* ========== Blog Cards ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.blog-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0d7377, #14919b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
    opacity: 0.5;
}

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.blog-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-body h3 a {
    color: var(--dark);
}

.blog-body h3 a:hover {
    color: var(--accent);
}

.blog-body p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
}

/* Blog Article Full */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.blog-article h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.blog-article h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-article p {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-article ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.blog-article li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ========== About Page ========== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0d7377, #14919b);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 64px;
    height: 64px;
    fill: var(--white);
    opacity: 0.4;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d7377, #14919b);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
    opacity: 0.5;
}

.founder-card h3 {
    margin-bottom: 0.25rem;
}

.founder-card .role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 2rem;
    border-left: 3px solid var(--accent);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.value-card h4 {
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0;
}

/* ========== Contact Page ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    margin-bottom: 1.25rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

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

.contact-form .optional {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.contact-info .info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.contact-info .info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.contact-info .info-card p {
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-detail {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

/* ========== Privacy / Legal ========== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-content .last-updated {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

/* ========== Page Hero (inner pages) ========== */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e, #0d7377);
    color: var(--light);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--light);
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(250, 248, 245, 0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.82rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 0.4rem;
}

/* ========== Info Bar ========== */
.info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.info-bar-item {
    text-align: center;
    padding: 0.5rem;
}

.info-bar-item h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-bar-item p {
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 0;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--dark);
    color: rgba(250, 248, 245, 0.6);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-col ul li a {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--light);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.82rem;
}

.footer-bottom-links a:hover {
    color: var(--light);
}

/* ========== Form Messages ========== */
.form-message {
    padding: 0.8rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* ========== Form Success Block ========== */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 5rem 2rem 2rem;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.25rem;
    }

    .main-nav a {
        font-size: 1.05rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

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

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

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

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

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

    section {
        padding: 3rem 0;
    }
}

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

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

    .btn {
        width: 100%;
        max-width: 280px;
    }
}
