:root {
    --primary: #7711ed;
    --primary-light: #ab6cf4;
    --secondary: #f8d448;
    --gradient: linear-gradient(135deg, #7711ed 0%, #ab6cf4 100%);
    --dark: #1a1a2e;
    --text: #2d2d3a;
    --text-light: #6b6b7f;
    --border: #e8e8f0;
    --bg-light: #f8f7fc;
    --bg-lighter: #f2ebfd;
    --white: #ffffff;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.hamburger-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hamburger-btn:hover {
    background: rgba(119, 17, 237, 0.1);
}

.hamburger-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 0 2px black;
    /*border: 1px solid var(--primary);*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a i {
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(119, 17, 237, 0.3);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.whatsapp-info small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.whatsapp-info strong {
    font-size: 0.95rem;
}

.auth-btn {
    padding: 0.75rem 1.75rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(119, 17, 237, 0.3);
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 17, 237, 0.4);
    color: white;
}

/* Auth Dropdown */
.auth-dropdown {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(119, 17, 237, 0.4);
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 0.5rem;
    display: none;
    z-index: 1000;
}

.dropdown-menu-custom.show {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-custom a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu-custom a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    left: -350px;
    top: 0;
    width: 350px;
    height: 100vh;
    background: var(--white);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    overflow-y: auto;
}

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

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: var(--primary);
    color: white;
}

.sidebar-links {
    padding: 2rem;
}

.sidebar-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.sidebar-links a:hover {
    background: var(--gradient);
    color: white;
    transform: translateX(5px);
}

.sidebar-links i {
    margin-right: 0.75rem;
    width: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 50%, #5b21b6 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-image-1, .hero-image-2, .hero-image-3 {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.hero-image-1 {
    top: var(--img1-top, 15%);
    right: var(--img1-right, 74%);
    width: 320px;
    height: 200px;
    rotate: -12deg;
    transform: rotate(-8deg);
    animation: floatImg 8s ease-in-out infinite;
}

.hero-image-2 {
    bottom: var(--img2-bottom, 15%);
    right: var(--img2-right, 55%);
    width: 280px;
    height: 180px;
    rotate: 7deg;
    transform: rotate(5deg);
    animation: floatImg 10s ease-in-out infinite reverse;
}

.hero-image-3 {
    bottom: var(--img3-bottom, 15%);
    left: var(--img3-left, 15%);
    width: 240px;
    height: 160px;
    rotate: -5deg;
    transform: rotate(-5deg);
    animation: floatImg 12s ease-in-out infinite;
}

.hero-image-1 img, .hero-image-2 img, .hero-image-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

@keyframes floatImg {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

/* Booking Form */
.booking-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease 0.3s both;
    position: relative;
    z-index: 20;
}

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

.booking-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(119, 17, 237, 0.1);
    outline: none;
}

.form-control[readonly] {
    background: white;
    cursor: pointer;
}

.guest-selector {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-selector:hover {
    border-color: var(--primary);
}

.guest-selector-text {
    color: var(--text);
    font-size: 0.95rem;
}

.guest-selector-icon {
    color: var(--primary);
}

.btn-primary-custom {
    background: var(--gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    color: white;
    width: 100%;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(119, 17, 237, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(119, 17, 237, 0.4);
}

/* Room & Guest Modal */
.room-guest-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2500;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.room-guest-modal.active {
    display: flex;
}

.room-guest-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.room-guest-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.room-guest-header h4 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
}

.room-guest-body {
    padding: 2rem;
}

.room-item {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.room-header {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.counter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.counter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.counter-label {
    font-weight: 500;
    color: var(--text);
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.counter-btn:hover:not(:disabled) {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.counter-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.child-age-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.child-age-item {
    margin-bottom: 1rem;
}

.child-age-item label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.child-age-item select {
    width: 100%;
    padding: 0.65rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
}

.child-age-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.add-room-btn {
    width: 100%;
    padding: 0.85rem;
    background: white;
    border: 2px dashed var(--primary);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.add-room-btn:hover {
    background: rgba(119, 17, 237, 0.05);
}

.room-rules {
    background: rgba(119, 17, 237, 0.05);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.remove-room-btn {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.remove-room-btn:hover {
    background: rgba(220, 38, 38, 0.1);
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.btn-view-all {
    padding: 0.75rem 1.75rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(119, 17, 237, 0.3);
    white-space: nowrap;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 17, 237, 0.4);
    color: white;
}

/* Tours Carousel */
.tours-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.tours-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tours-carousel > * {
    flex: 0 0 calc(33.333% - 1rem);
    margin-right: 1.5rem;
}

.carousel-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary);
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.3rem;
}

.carousel-nav-btn:hover:not(:disabled) {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Tour Card */
.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.tour-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.tour-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tour-feature i {
    color: var(--primary);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.tour-price-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.tour-price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.tour-btn:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 4px 15px rgba(119, 17, 237, 0.3);
}

/* Destination Card */
.destination-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.destination-card:hover::before {
    background: linear-gradient(to bottom, transparent 0%, rgba(119, 17, 237, 0.8) 100%);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
}

.destination-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-count {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.footer-brand {
    /*background: var(--gradient);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/

    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-badge {
    display: inline-block;
}

.footer-badge img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.app-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.whatsapp {
    background: #128c7e;
}

.social-link.twitter {
    background: #000000;
}

.social-link.youtube {
    background: #FF0000;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .hero-image-1,
    .hero-image-2,
    .hero-image-3 {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tours-carousel > * {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-form {
        margin-top: 2rem;
    }

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

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .whatsapp-btn {
        display: none !important;
    }

    .auth-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .btn-view-all {
        align-self: flex-end;
    }

    .tours-carousel > * {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .sidebar-menu {
        width: 100%;
        left: -100%;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .hamburger-btn {
        width: 36px;
        height: 36px;
    }

    .hamburger-icon {
        font-size: 1.3rem;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .auth-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Secondary Button */
.btn-secondary-custom {
    background: var(--secondary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 212, 72, 0.3);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 212, 72, 0.4);
    color: var(--dark);
    background: #f9dc5c;
}

/* Tours Grid/List View Toggle */
.tours-grid .tour-card {
    height: 100%;
}

.tours-list .tour-card {
    display: flex;
    flex-direction: row;
    height: auto;
}

.tours-list .tour-image {
    width: 300px;
    height: auto;
    min-height: 250px;
    flex-shrink: 0;
}

.tours-list .tour-content {
    flex: 1;
}

.tours-list .tour-footer {
    margin-top: 1rem;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Dashboard Tabs */
.dashboard-tabs {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dashboard-tabs .nav-tabs {
    border-bottom: 2px solid var(--border);
    padding: 1rem 1rem 0;
}

.dashboard-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem 1.5rem;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.dashboard-tabs .nav-link:hover {
    color: var(--primary);
    background: var(--bg-lighter);
    border-bottom-color: var(--primary-light);
}

.dashboard-tabs .nav-link.active {
    color: var(--primary);
    background: var(--bg-lighter);
    border-bottom-color: var(--primary);
}

.dashboard-tabs .tab-content {
    padding: 2rem;
}

/* Tour Detail Sidebar */
.tour-detail-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tour-gallery img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-gallery img:hover {
    transform: scale(1.05);
}

.tour-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tour-info-item {
    background: var(--bg-lighter);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.tour-info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.tour-info-item .label {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

.tour-info-item .value {
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.25rem;
}

.participation-badge {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.participation-badge.full {
    background: #dc2626;
}

.participation-badge.available {
    background: #10b981;
}

.price-section {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    margin: 1.5rem 0;
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount-large {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.sold-out-badge {
    background: #dc2626;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

.call-us-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.call-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 212, 72, 0.4);
}

/* Tour Tabs */
.tour-tabs .nav-tabs {
    border-bottom: 2px solid var(--border);
}

.tour-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 500;
    padding: 1rem 1.5rem;
    margin-bottom: -2px;
}

.tour-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tour-tabs .tab-pane {
    padding: 2rem 0;
}

.departure-point {
    padding: 1rem;
    background: var(--bg-lighter);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.departure-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 80px;
}

.departure-location {
    flex: 1;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tours-list .tour-card {
        flex-direction: column;
    }

    .tours-list .tour-image {
        width: 100%;
        height: 250px;
    }

    .map-container {
        height: 300px;
    }

    .tour-detail-sidebar {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

/* Utility Classes */
.text-primary-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-primary-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.page-header-gradient {
    background: var(--gradient);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header-gradient-small {
    background: var(--gradient);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header-gradient h1 {
    color: white;
}

.page-header-gradient .lead {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-section {
    background: var(--bg-light);
    padding: 1rem 0;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-card-lg {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.stat-card.secondary {
    border-left-color: var(--secondary);
}

.stat-card.success {
    border-left-color: #10b981;
}

.dashboard-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding: 2rem 0;
}

.tour-hero {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tour-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-lg {
    font-size: 4rem;
    color: var(--text-light);
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

/* Remove any remaining inline styles helpers */
.ms-4 {
    margin-left: 1.5rem !important;
}

.text-success {
    color: #10b981 !important;
}

.text-danger {
    color: #dc2626 !important;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--white) 100%);
    padding: 2rem 0;
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(119, 17, 237, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-left {
    background: var(--gradient);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 723px;
}

.auth-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.auth-description {
    opacity: 0.9;
    line-height: 1.8;
}

.auth-feature {
    opacity: 0.8;
    font-size: 0.9rem;
}

.auth-right {
    padding: 3rem;
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider span {
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 2rem 1.5rem;
    }
}

/* Auth Dropdown - Hover */
.auth-dropdown:hover .dropdown-menu-custom {
    display: block;
}

.dropdown-menu-custom a.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-menu-custom a.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Badge Styles */
.badge-warning-custom {
    background: var(--secondary);
    color: var(--dark);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Auth Pages Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--white) 100%);
    padding: 2rem 0;
}

.auth-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(119, 17, 237, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.auth-left {
    background: var(--gradient);
    padding: 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 723px;
}

.auth-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.auth-description {
    opacity: 0.9;
    line-height: 1.8;
}

.auth-feature {
    opacity: 0.8;
    font-size: 0.9rem;
}

.auth-right {
    padding: 3rem;
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider span {
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-primary-link {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-primary-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.page-header-gradient {
    background: var(--gradient);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header-gradient h1 {
    color: white;
}

.page-header-gradient .lead {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb-section {
    background: var(--bg-light);
    padding: 1rem 0;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-card-lg {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.stat-card.secondary {
    border-left-color: var(--secondary);
}

.stat-card.success {
    border-left-color: #10b981;
}

.dashboard-page {
    background: var(--bg-light);
    min-height: 100vh;
    padding: 2rem 0;
}

.badge-secondary-custom {
    background: var(--secondary);
    color: var(--dark);
}

.tour-hero {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.tour-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-lg {
    font-size: 4rem;
    color: var(--text-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

/* Update Auth Dropdown - Hover instead of Click */
.auth-dropdown:hover .dropdown-menu-custom {
    display: block;
}

@media (max-width: 991px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 2rem 1.5rem;
    }
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Section background variants */
.section-bg-light {
    background: var(--bg-light);
}

/* Footer copyright text */
.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Footer badge images */
.footer-badge img {
    width: 100%;
    height: auto;
}

/* Tab content box */
.tab-content-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
}

.tab-content-box-center {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

/* Google ile Giriş Butonu */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1.5px solid #dadce0;
    border-radius: 8px;
    color: #3c4043;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-google i {
    font-size: 18px;
    color: var(--primary);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #d2d3d5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #3c4043;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-google:active {
    background: #f1f3f4;
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Divider stili */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    padding: 0 15px;
    font-size: 13px;
    font-weight: 500;
}

/* alerts */

/* Success Alert - Yeşil */
.alert-success {
    background: #dcfce7;
    border-color: #22c55e;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.alert-success .alert-link {
    color: #15803d;
    font-weight: 600;
}

.alert-success .bi {
    color: #22c55e;
}

/* Warning Alert - Sarı */
.alert-warning {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-warning .alert-link {
    color: #b45309;
    font-weight: 600;
}

.alert-warning .bi {
    color: #f59e0b;
}

/* Info Alert - Mavi */
.alert-info {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e3a8a;
    border-left: 4px solid #3b82f6;
}

.alert-info .alert-link {
    color: #1e40af;
    font-weight: 600;
}

.alert-info .bi {
    color: #3b82f6;
}

/* Danger Alert - Kırmızı */
.alert-danger {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert-danger .alert-link {
    color: #b91c1c;
    font-weight: 600;
}

.alert-danger .bi {
    color: #ef4444;
}

/* Alert genel düzenlemeler */
.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert .bi {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.alert .btn-close {
    padding: 0.5rem;
    margin-left: auto;
}

.alert .btn-close:focus {
    box-shadow: none;
}

/* Alert heading */
.alert h4,
.alert .alert-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Alert with buttons */
.alert .btn {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.alert-success .btn-success {
    background: #22c55e;
    border-color: #22c55e;
}

.alert-success .btn-success:hover {
    background: #16a34a;
    border-color: #16a34a;
}

.alert-warning .btn-warning {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.alert-warning .btn-warning:hover {
    background: #d97706;
    border-color: #d97706;
}

.alert-info .btn-primary {
    background: #3b82f6;
    border-color: #3b82f6;
}

.alert-info .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.alert-danger .btn-danger {
    background: #ef4444;
    border-color: #ef4444;
}

.alert-danger .btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.alert .btn-outline-secondary {
    color: inherit;
    border-color: rgba(0, 0, 0, 0.2);
}

.alert .btn-outline-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    color: inherit;
}


/* Email Verification Page - Ecco Turizm */

.verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--white) 100%);
    padding: 2rem 0;
}

.verify-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(119, 17, 237, 0.1);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.verify-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.verify-icon i {
    font-size: 2.5rem;
    color: white;
}

.verify-icon.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.verify-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.verify-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.email-display {
    background: var(--bg-lighter);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 1.5rem 0;
    border: 2px solid var(--border);
}

.email-display strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.verify-steps {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.verify-steps h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.verify-steps p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.verify-steps p:last-child {
    margin-bottom: 0;
}

.success-message {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #22c55e;
    margin: 1.5rem 0;
}

.success-message i {
    font-size: 3rem;
    color: #22c55e;
    display: block;
    margin-bottom: 1rem;
}

.success-message h4 {
    color: #166534;
    margin: 0;
}

.btn-resend {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-resend:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 17, 237, 0.4);
    color: white;
}

.btn-goto-inbox {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-goto-inbox:hover {
    background: var(--bg-lighter);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-goto-inbox i {
    margin-right: 0.5rem;
}

.back-to-home {
    text-align: center;
    margin-top: 2rem;
}

.back-to-home a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-home a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .verify-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .verify-title {
        font-size: 1.5rem;
    }
}


/* Breadcrumb Component - Ecco Turizm */

.breadcrumb-wrapper {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-custom li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-custom a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.breadcrumb-custom .home-icon {
    font-size: 1rem;
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 0.75rem;
}

.breadcrumb-custom .active {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Breadcrumb Variant - With Background */
.breadcrumb-wrapper-bg {
    background: var(--bg-light);
    padding: 1rem 0;
}

/* Breadcrumb Variant - Colored */
.breadcrumb-wrapper-colored {
    background: linear-gradient(to right, rgba(119, 17, 237, 0.05), rgba(171, 108, 244, 0.05));
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary);
}

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

.breadcrumb-wrapper-colored .breadcrumb-custom .active {
    color: var(--primary);
    font-weight: 600;
}

/* Breadcrumb with Icons */
.breadcrumb-custom .breadcrumb-icon {
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .breadcrumb-custom {
        font-size: 0.85rem;
    }

    .breadcrumb-custom a,
    .breadcrumb-custom .active {
        font-size: 0.85rem;
    }
}


/* Newsletter Divider */
.newsletter-divider {
    text-align: center;
    margin: 1rem 0;
    color: #fff;
    font-size: 0.9rem;
}

/* Notification Button */
.btn-notification {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: white;
    border: 2px solid var(--secondary);
    color: var(--text);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-notification:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 212, 72, 0.4);
}

.btn-notification i {
    font-size: 1.1rem;
}

.btn-notification.active {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-notification.active i {
    animation: bellRing 0.5s ease-in-out;
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 .25rem rgba(165, 13, 253, 0.25);
}
