/* Kiwi.com-inspired design - Royal Travel */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00A991;
    --primary-dark: #008f7a;
    --primary-light: #e6f7f4;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --border: #e8e8e8;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Kiwi style */
.navbar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    min-height: 56px;
}

.logo {
    margin-left: -24px;
    margin-right: 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: block;
    line-height: 0;
}

.logo-img {
    display: block;
    width: 300px;
    max-width: 300px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.btn-outline {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.2s;
}

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

.btn-primary {
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.2s;
}

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

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
}

/* Hero - "Where to next?" style, no search */
.hero {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
    padding: 80px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.hero-content h1.hero-tagline {
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hero .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.hero .btn-outline:hover {
    background: var(--primary-light);
}

.hero-background,
.hero-overlay {
    display: none;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0,169,145,0.12);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

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

.hero-stat .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.hero-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Section titles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Popular destinations - card grid with images */
.destinations {
    padding: 64px 0;
    background: var(--bg);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.destination-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.destination-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-alt);
}

.destination-card-body {
    padding: 20px;
}

.destination-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.destination-card-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Popular flights - Kiwi-style cards (image + route) */
.popular-flights {
    padding: 64px 0;
    background: var(--bg-alt);
}

.popular-flights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.9s ease-out;
    max-height: 520px;
}

@media (min-width: 768px) {
    .popular-flights-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-height: 560px;
    }
}

.popular-flight-card {
    border-radius: 12px;
    background: var(--bg);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s ease-out;
}

.popular-flight-card:hover {
    box-shadow: var(--shadow-hover);
}

.popular-flight-link {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.popular-flight-img-wrap {
    flex-shrink: 0;
    width: 132px;
    aspect-ratio: 1.5;
    overflow: hidden;
    background: var(--bg-alt);
}

.popular-flight-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popular-flight-route {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    min-width: 0;
}

.route-from,
.route-to {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.route-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
}

/* Popular flights - Show More functionality (slide in/out) */
.popular-flights-list.expanded {
    max-height: 9999px;
}

/* Collapsing state: shrink height first, then hide extra items after transition */
.popular-flights-list.collapsing.expanded {
    max-height: 560px;
}

.popular-flights-list:not(.expanded) .popular-flight-card:nth-child(n+10) {
    display: none;
}

@media (max-width: 767px) {
    .popular-flights-list:not(.expanded) {
        max-height: 520px;
    }
    .popular-flights-list.collapsing.expanded {
        max-height: 520px;
    }
    .popular-flights-list:not(.expanded) .popular-flight-card:nth-child(n+7) {
        display: none;
    }
}

.show-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-show-more:hover {
    background: var(--primary);
    color: white;
}

.btn-show-more svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.btn-show-more.expanded svg {
    transform: rotate(180deg);
}

/* App promo section */
.app-promo {
    padding: 64px 0;
    background: var(--bg);
}

.app-promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.app-promo-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.app-promo-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.app-promo-features {
    list-style: none;
}

.app-promo-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.app-promo-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.app-promo-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.app-promo-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Explore section - link columns like Kiwi */
.explore {
    padding: 64px 0;
    background: var(--bg-alt);
}

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

.explore-column h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.explore-column ul {
    list-style: none;
}

.explore-column li {
    margin-bottom: 10px;
}

.explore-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Guarantee / trust strip */
.guarantee-strip {
    padding: 48px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.guarantee-strip h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.guarantee-strip ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 48px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-strip li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Footer - Kiwi multi-column */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 24px;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    color: white;
}

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

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

.footer-section a,
.footer-section li {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Page header (inner pages) */
.page-header {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 48px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* About */
.about-content {
    padding: 64px 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.7;
}

.about-image .image-container {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}

.about-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image img,
.placeholder-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.placeholder-image {
    background: var(--bg-alt);
    display: block;
}

.stats-section {
    margin-top: 48px;
    text-align: center;
}

.stats-section h2 {
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat-card {
    background: var(--bg-alt);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Services */
.services-content {
    padding: 64px 0;
}

.service-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

.service-image {
    min-width: 0;
}

.service-image .image-container {
    width: 100%;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-alt);
}

.service-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image img,
.service-image .placeholder-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-details {
    min-width: 0;
}

.service-details h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.service-details p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.service-item {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-icon-wrapper {
    margin-bottom: 16px;
}

.service-icon-wrapper .service-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-generic {
    margin-top: 48px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.services-generic h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-generic > p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.services-generic .service-features {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 28px;
}

.services-generic .btn {
    margin-top: 8px;
}

.pricing-section h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Contact */
.contact-content {
    padding: 64px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.social-links h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    padding: 10px 18px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
}

/* Forms */
.contact-form,
.auth-form {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
}

.auth-section {
    padding: 48px 0 64px;
    background: var(--bg-alt);
}

.auth-container {
    max-width: 440px;
    margin: 0 auto;
}

.auth-container--wide {
    max-width: 600px;
}

.auth-form-wrapper {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.auth-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    text-align: center;
    color: var(--text-dark);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.auth-notice {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    padding: 14px 18px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: var(--bg);
    padding: 0 16px;
    color: var(--text-muted);
    position: relative;
    font-size: 0.875rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Legacy features section (if kept on homepage) */
.features {
    padding: 64px 0;
    background: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

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

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery */
.gallery {
    padding: 64px 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.gallery-caption {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA */
.cta {
    padding: 64px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn-outline {
    border-color: white;
    color: white;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg);
        width: 100%;
        padding: 24px;
        box-shadow: var(--shadow-hover);
        transition: left 0.3s;
        border-top: 1px solid var(--border);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 48px 0 64px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-section,
    .service-card-large,
    .contact-wrapper,
    .app-promo-inner {
        grid-template-columns: 1fr;
    }

    .about-section.reverse {
        direction: ltr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .guarantee-strip ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-stats {
        gap: 32px;
    }

    .destination-card-img {
        height: 160px;
    }

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