/* ============================================
   HORIZONHUB - COMPLETE STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0077ff;
    --primary-dark: #005fd1;
    --secondary: #00c6ff;
    --secondary-dark: #009ccc;
    --dark: #1e293b;
    --light: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --gray-light: #f8fafc;
    --danger: #e74c3c;
    
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    --transition: all 0.3s ease;
    --site-bg: linear-gradient(135deg, #4aa8d2 0%, #4ab8c8 42%, #4ad08b 100%);
    --travel-bg: var(--site-bg);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.about-page .navbar {
    background: rgba(248, 250, 252, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.about-page .nav-content {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-display);
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

.btn-admin {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.10), transparent 28%),
        var(--site-bg);
    opacity: 1;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="100" height="100"/><path d="M0 0L50 50L0 100L50 100Z" fill="rgba(255,255,255,0.02)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

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

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--white);
    margin: 0.5rem auto;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

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

.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.hero .btn-primary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

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

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 5rem 0;
    background: var(--white);
}

.hero {
    background: transparent;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Preview Grid */
.destinations-preview {
    background: var(--white);
}

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

.preview-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.preview-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

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

.preview-button {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.preview-button:hover {
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.5)),
        var(--travel-bg) center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page Header */
.page-header {
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.10), transparent 28%),
        var(--site-bg);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Login Page */
.login-section {
    padding: 4rem 0;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.10), transparent 28%),
    var(--site-bg);
}

.login-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 640px;
    margin: 3rem auto;
    align-items: stretch;
}

.login-copy {
    display: block;
    text-align: center;
    padding-bottom: 0.75rem;
}

.login-form {
    width: 100%;
    display: block;
}

.login-copy .card-category {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.login-copy h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.login-copy p {
    color: var(--gray);
    font-size: 0.98rem;
    margin-top: 0.5rem;
}

.login-copy,
.login-form {
    padding-top: 0.25rem;
}

.login-form .form-group {
    margin-bottom: 1rem;
}

.login-form label {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.login-form input {
    height: 48px;
    padding: 0.55rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #e6e9ec;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.login-form input:focus {
    box-shadow: 0 4px 12px rgba(52,152,219,0.08);
    border-color: var(--primary);
}

.login-form .btn-block {
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
}

.password-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.password-help-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.password-help-trigger {
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1;
    cursor: help;
    padding: 0;
}

.password-help-popup {
    position: absolute;
    right: 0;
    top: 30px;
    width: 220px;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: var(--transition);
    z-index: 2;
}

.password-help-popup::before {
    content: '';
    position: absolute;
    right: 12px;
    top: -6px;
    width: 12px;
    height: 12px;
    background: var(--dark);
    transform: rotate(45deg);
}

.password-help-wrap:hover .password-help-popup,
.password-help-wrap:focus-within .password-help-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-panel .logo-icon {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .login-panel {
        flex-direction: column;
        padding: 1.5rem;
    }
    .login-copy {
        text-align: center;
        padding-right: 0;
    }
    .login-copy h1 {
        font-size: 1.75rem;
    }
    .login-copy .card-category {
        margin-left: auto;
        margin-right: auto;
    }
    .login-form {
        width: 100%;
    }
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

/* Search Controls */
.search-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
}

.search-input,
.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-select {
    min-width: 200px;
    cursor: pointer;
}

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

.destination-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.destination-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.destination-content {
    padding: 1.5rem;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.card-rating {
    color: #ffd700;
}

.destination-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.destination-book-btn {
    margin-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.booking-summary {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

/* Admin Panel */
.admin-modal-content {
    max-width: 1100px;
}

.admin-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 2rem;
}

.admin-form-wrap h2,
.admin-list-wrap h2 {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

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

.admin-secondary-btn {
    background: var(--gray);
    color: var(--white);
}

.admin-destination-list {
    display: grid;
    gap: 1rem;
    max-height: 680px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.admin-destination-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    background: var(--gray-light);
    border-radius: 5px;
    padding: 1rem;
}

.admin-destination-item span {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    text-transform: capitalize;
}

.admin-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.admin-small-btn {
    background: var(--primary);
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
}

.admin-danger-btn {
    background: var(--danger);
}

/* About Page */
.about-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8rem 0 6rem;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.42)),
        var(--travel-bg) center/cover no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.42) 0%,
        rgba(15, 23, 42, 0.55) 45%,
        rgba(15, 23, 42, 0.68) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-hero .card-category {
    display: inline-flex;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.03;
    margin-bottom: 1rem;
    max-width: 12ch;
}

.about-hero p {
    font-size: 1.15rem;
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.92);
}

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

.about-content {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: -3.5rem 0 4rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.7rem);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-card span {
    color: var(--dark);
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-card {
    text-align: left;
    height: 100%;
    padding: 2rem;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.about-card .feature-icon {
    margin-bottom: 0.8rem;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.about-card p {
    color: var(--gray);
    line-height: 1.75;
}

.features-grid,
.tech-grid,
.team-grid {
    gap: 1.5rem;
}

.feature-card,
.tech-card,
.team-member,
.project-info,
.about-cta-card {
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.tech-card:hover,
.team-member:hover,
.project-info:hover,
.about-cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 119, 255, 0.14);
}

.feature-card {
    padding: 2rem;
}

.feature-card h3 {
    font-family: var(--font-display);
}

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

.content-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

.tech-card {
    background: var(--white);
    padding: 1.75rem;
    text-align: center;
}

.tech-card h4 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.team-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.team-avatar-s {
    background: linear-gradient(135deg, #0077ff, #00c6ff);
}

.team-avatar-m {
    background: linear-gradient(135deg, #0f172a, #0077ff);
}

.team-avatar-s2 {
    background: linear-gradient(135deg, #00c6ff, #38bdf8);
}

.team-role {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.project-info {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    display: grid;
    gap: 0.75rem;
}

.about-cta {
    padding-top: 0;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.06), rgba(0, 198, 255, 0.08));
    padding: 2rem;
}

.about-cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--dark);
    max-width: 18ch;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bookings Page */
.booking-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
}

.booking-item::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--primary);
}

.booking-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-light);
    border-radius: 10px;
}

.empty-state h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
}

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

.info-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-contact {
    margin-top: 4rem;
}

.team-contact h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light);
}

/* Utilities */
.text-center {
    text-align: center;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
    background: var(--gray-light);
    border-radius: 10px;
}

.no-results h2 {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(248, 250, 252, 0.97);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        height: 80vh;
    }

    .about-hero {
        min-height: auto;
        padding: 6.5rem 0 5rem;
    }

    .about-hero h1 {
        max-width: none;
    }

    .about-hero-actions,
    .about-cta-card {
        flex-direction: column;
        align-items: stretch;
    }

    .about-stats {
        margin-top: -2.25rem;
    }
    
    .features-grid,
    .preview-grid,
    .testimonials-grid,
    .destinations-grid,
    .about-grid,
    .tech-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .search-controls {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-panel {
        grid-template-columns: 1fr;
    }

    .admin-destination-item {
        align-items: flex-start;
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .modal-content {
        padding: 1rem;
    }

    .about-card,
    .feature-card,
    .tech-card,
    .team-member,
    .project-info,
    .about-cta-card,
    .stat-card {
        border-radius: 18px;
    }
}
