@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #00bfa5;
    --primary-dark: #009688;
    --secondary: #263238;
    --accent: #ff6f00;
    --bg-light: #f7f9fc;
    --white: #ffffff;
    --text-main: #37474f;
    --text-light: #90a4ae;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.logo img {
    height: 54px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 191, 165, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 191, 165, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(247, 249, 252, 0.95) 0%, rgba(247, 249, 252, 0.7) 50%, rgba(247, 249, 252, 0.2) 100%);
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding: 5%;
    z-index: 10;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 40px;
}

/* Forms */
.form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.section {
    position: relative;
    overflow: hidden;
}

.img-container {
    transition: transform 0.5s ease;
}

.img-container:hover {
    transform: scale(1.02);
}

.tourism-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tourism-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tourism-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.tariff-table tr:hover td {
    background: rgba(0, 191, 165, 0.03);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid #eef0f5;
    background: #fcfdfe;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 191, 165, 0.1);
}

.form-select {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid #eef0f5;
    background: #fcfdfe;
    font-family: inherit;
    font-size: 1rem;
}

/* Dashboard */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.table-container {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background: #f8fafc;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 2px solid #eef0f5;
}

.table td {
    padding: 20px;
    border-bottom: 1px solid #eef0f5;
    color: #546e7a;
}

.table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3e0;
    color: #ff6f00;
}

.status-confirmed {
    background: #e0f2f1;
    color: #00695c;
}

/* Footer */
footer {
    background: white;
    padding: 60px 5%;
    text-align: center;
    color: var(--text-light);
    margin-top: 80px;
    border-top: 1px solid #eef0f5;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.w-full {
    width: 100%;
}

/* Alerts */
.alert {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
}

.alert-success {
    background: #e0f2f1;
    color: #00695c;
    border: 1px solid #b2dfdb;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--secondary);
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--secondary);
        transition: all 0.3s ease;
    }

    .hamburger::before {
        transform: translateY(-8px);
    }

    .hamburger::after {
        transform: translateY(8px);
    }

    .toggle-active .hamburger {
        background: transparent;
    }

    .toggle-active .hamburger::before {
        transform: rotate(45deg);
    }

    .toggle-active .hamburger::after {
        transform: rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        right: 0px;
        top: 90px;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateY(-150%);
        transition: transform 0.5s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        z-index: 999;
    }

    .nav-active {
        transform: translateY(0%);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .form-card {
        padding: 20px;
    }

    /* Stack form grids */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Dashboard Table Responsive */
    .table-container {
        overflow-x: auto;
    }

    .table th,
    .table td {
        white-space: nowrap;
        padding: 15px;
    }
}

@media screen and (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
}