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

:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #d4af37;
    --gold-light: #f5d778;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

a[href^="#"] {
    scroll-behavior: smooth;
}

img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.destination-card {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.quick-action-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    color: var(--accent-color);
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: rotate(90deg);
}

.modal-form {
    padding: 30px;
}

.modal-form .form-group {
    margin-bottom: 18px;
}

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

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--light-color);
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    transition: var(--transition);
}

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

.logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.logo .logo-text span:first-child {
    font-size: 1.2em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .logo-text span:last-child {
    font-size: 0.9em;
    opacity: 0.9;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    line-height: 1.2;
    text-align: left;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.logo span {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-light));
    transition: var(--transition);
}

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

.btn-primary-small {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    color: var(--dark-color) !important;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary-small:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-primary-small::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
    position: relative;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3.5px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 3px;
    display: block;
}

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

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

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 7px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(59, 130, 246, 0.7) 50%, rgba(212, 175, 55, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.98;
    font-weight: 400;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    color: var(--dark-color);
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.15rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    font-family: var(--font-heading);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--accent-color));
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.15rem;
    display: inline-block;
    border: 3px solid var(--white);
    font-family: var(--font-heading);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-color);
    font-weight: 700;
}

.about {
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--gray-color);
    margin-bottom: 45px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 45px;
}

.mv-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.3);
}

.mv-icon i {
    color: var(--white);
    font-size: 1.8rem;
}

.mv-card h3 {
    margin-bottom: 18px;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

.values h4 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-color);
    font-weight: 600;
    font-size: 1rem;
}

.value-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    height: 450px;
    background: url('airport.jpg') center/cover;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(30, 64, 175, 0.35);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
}

.service-icon i {
    color: var(--white);
    font-size: 2.5rem;
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray-color);
    font-size: 1rem;
}

.why-choose {
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.feature-icon i {
    color: var(--white);
    font-size: 2rem;
}

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

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

.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-label {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.destination-card:nth-child(1) {
    background: url('Unitedkingdom.jpg') center/cover;
}

.destination-card:nth-child(2) {
    background: url('Canada.jpg') center/cover;
}

.destination-card:nth-child(3) {
    background: url('Unitedstate.jpg') center/cover;
}

.destination-card:nth-child(4) {
    background: url('europe.jpg') center/cover;
}

.destination-card:nth-child(5) {
    background: url('uae.jpg') center/cover;
}

.destination-card:nth-child(6) {
    background: url('asia.jpg') center/cover;
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.9), rgba(59, 130, 246, 0.5), rgba(212, 175, 55, 0.3));
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    color: var(--white);
}

.dest-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.dest-content p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cta-banner {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 18px;
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.3);
}

.info-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.info-card h4 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

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

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--transition);
    font-family: var(--font-heading);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.btn-full {
    width: 100%;
}

.social-section {
    background: var(--light-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.social-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.social-card.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(225, 48, 108, 0.4);
}

.social-card.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0f5fcc);
    color: var(--white);
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(24, 119, 242, 0.4);
}

.social-card.tiktok:hover {
    background: linear-gradient(135deg, #000, #25f4ee);
    color: var(--white);
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.social-card.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(37, 211, 102, 0.4);
}

.social-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.social-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.social-card p {
    font-size: 1rem;
}

.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 30%, #3b82f6 55%, rgba(212, 175, 55, 0.6) 100%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('gurarawaterfalls.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.footer-logo .logo-text span:first-child {
    font-size: 1.2em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-text span:last-child {
    font-size: 0.9em;
    opacity: 0.9;
    background: linear-gradient(135deg, var(--gold-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    line-height: 1.2;
    text-align: left;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

.footer-logo span {
    background: linear-gradient(135deg, var(--gold-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.footer-col p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 1rem;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-light));
    border-radius: 3px;
}

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

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 10px;
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 14px;
    flex-direction: column;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    transition: var(--transition);
}

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

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

.newsletter-form button {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(212, 175, 55, 0.2);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    color: var(--dark-color);
    transform: translateY(-8px) scale(1.15);
    border-color: var(--gold-light);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 120px 30px 40px;
        gap: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 18px 25px;
        border-radius: 12px;
        background: var(--light-color);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
        color: var(--dark-color);
    }
}

@media (max-width: 768px) {
    .footer-social a {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo .logo-text span:first-child {
        font-size: 1.05em;
    }
    
    .logo .logo-text span:last-child {
        font-size: 0.8em;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .badge {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .dest-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.05rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-dots {
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .dot.active {
        width: 35px;
    }
}

@media (max-width: 480px) {
    .footer-social a {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
}
