/* Modern Tech Theme - Futuristic & Digital */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(39, 174, 96, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 10px 0;
    font-size: 0.95rem;
}

.nav-menu li a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #27ae60;
    overflow: hidden;
    width: 0;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #27ae60;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #0f1419 0%, #0a0a0a 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #27ae60, #2ecc71);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3498db, #2980b9);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #9b59b6, #8e44ad);
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #27ae60, #2ecc71, #58d68d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-desc {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.cta-primary {
    position: relative;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover .btn-effect {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(39, 174, 96, 0.5);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-modern {
    text-align: center;
    color: #ffffff;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    height: 500px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 60%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.app-interface {
    color: white;
    width: 100%;
}

.interface-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.interface-content {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: -10px;
    animation-delay: 4s;
}

.card-icon {
    width: 25px;
    height: 25px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.section-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    margin: 25px auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-block {
    margin-bottom: 40px;
}

.text-block h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.text-block p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-modern {
    background: rgba(39, 174, 96, 0.05);
    border: 1px solid rgba(39, 174, 96, 0.2);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-modern:hover {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
    transform: translateY(-5px);
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
}

.feature-modern h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-modern p {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.modern-card {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    opacity: 0.05;
    border-radius: 20px;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.card-stat {
    text-align: center;
}

.card-stat .value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 5px;
}

.card-stat .label {
    font-size: 0.8rem;
    color: #b0b0b0;
    font-weight: 500;
}

.progress-bars {
    display: grid;
    gap: 20px;
}

.progress-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: center;
    font-size: 0.85rem;
    color: #b0b0b0;
}

.progress-bar {
    grid-column: 1 / -1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 5px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 3px;
    width: 0;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    to {
        width: var(--progress);
    }
}

/* Features Section */
.features {
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    transition: background 0.3s ease;
    z-index: -1;
}

.glow-blue { background: linear-gradient(135deg, #3498db, #2980b9); opacity: 0; }
.glow-purple { background: linear-gradient(135deg, #9b59b6, #8e44ad); opacity: 0; }
.glow-green { background: linear-gradient(135deg, #27ae60, #2ecc71); opacity: 0; }
.glow-orange { background: linear-gradient(135deg, #f39c12, #e67e22); opacity: 0; }
.glow-pink { background: linear-gradient(135deg, #e91e63, #ad1457); opacity: 0; }
.glow-cyan { background: linear-gradient(135deg, #1abc9c, #16a085); opacity: 0; }

.feature-card:hover .card-glow {
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(39, 174, 96, 0.5);
    background: rgba(39, 174, 96, 0.05);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-large {
    transform: scale(1.1) rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Tours */
.tours-modern {
    background: #111111;
}

.tours-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.modern-tour-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.modern-tour-card.featured {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.modern-tour-card:hover {
    transform: translateY(-15px);
    border-color: rgba(39, 174, 96, 0.6);
    box-shadow: 0 25px 60px rgba(39, 174, 96, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.card-badge.trending { background: #e74c3c; color: white; }
.card-badge.new { background: #27ae60; color: white; }
.card-badge.popular { background: #f39c12; color: white; }
.card-badge.cool { background: #3498db; color: white; }
.card-badge.adventure { background: #9b59b6; color: white; }
.card-badge.chill { background: #1abc9c; color: white; }

.tour-visual {
    position: relative;
    overflow: hidden;
}

.tour-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-tour-card:hover .tour-visual img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.3), rgba(46, 204, 113, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-tour-card:hover .visual-overlay {
    opacity: 1;
}

.tour-tech {
    display: flex;
    gap: 10px;
}

.tech-tag {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.tour-info {
    padding: 30px;
}

.tour-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tour-header-modern h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.price-modern {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 1rem;
    color: #27ae60;
    font-weight: 600;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.tour-desc {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tour-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.highlight i {
    color: #27ae60;
    width: 16px;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tech-feature {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.modern-btn {
    width: 100%;
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transition: left 0.3s ease;
    z-index: -1;
}

.modern-btn:hover .btn-gradient {
    left: 0;
}

.modern-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

/* Contact Form */
.contact-modern {
    background: #0a0a0a;
}

.modern-form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-visual-modern {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.visual-elements {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
}

.element-1,
.element-2,
.element-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    border: 2px solid rgba(39, 174, 96, 0.3);
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation: float 4s ease-in-out infinite;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation: float 4s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 50%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 4s;
}

.form-stats {
    display: grid;
    gap: 20px;
}

.form-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
}

.stat-icon {
    width: 35px;
    height: 35px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.stat-text {
    font-weight: 500;
    font-size: 0.9rem;
}

.modern-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.input-modern {
    position: relative;
    margin-bottom: 25px;
}

.input-modern input,
.input-modern textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(39, 174, 96, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-modern input:focus,
.input-modern textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.input-modern label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #b0b0b0;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-modern input:focus + label,
.input-modern input:not(:placeholder-shown) + label,
.input-modern textarea:focus + label,
.input-modern textarea:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 0.8rem;
    color: #27ae60;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #27ae60;
    transition: width 0.3s ease;
}

.input-modern input:focus ~ .input-line,
.input-modern textarea:focus ~ .input-line {
    width: 100%;
}

.preference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.preference-item {
    background: rgba(39, 174, 96, 0.05);
    border: 2px solid rgba(39, 174, 96, 0.2);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preference-item:hover,
.preference-item.selected {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
    transform: translateY(-3px);
}

.pref-icon {
    width: 40px;
    height: 40px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1rem;
}

.preference-item span {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.nav-btn {
    background: transparent;
    color: #27ae60;
    border: 2px solid rgba(39, 174, 96, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-btn:hover {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.step-indicator {
    display: flex;
    gap: 10px;
}

.step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.step.active {
    background: #27ae60;
    transform: scale(1.3);
}

.submit-modern-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}

/* Gallery */
.gallery-modern {
    background: #111111;
}

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-modern-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.gallery-modern-item:hover {
    transform: scale(1.05);
    border-color: #27ae60;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.gallery-modern-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-modern-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.8), rgba(46, 204, 113, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modern-item:hover .gallery-overlay-modern {
    opacity: 1;
}

.overlay-content-modern {
    color: white;
}

.content-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.content-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.content-tag {
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Contact Info */
.contact-info {
    background: #0a0a0a;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method.featured {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.contact-method:hover {
    border-color: rgba(39, 174, 96, 0.6);
    background: rgba(39, 174, 96, 0.08);
    transform: translateY(-8px);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.gradient-bg-1 { background: linear-gradient(135deg, #25d366, #128c7e); }
.gradient-bg-2 { background: linear-gradient(135deg, #3498db, #2980b9); }
.gradient-bg-3 { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.gradient-bg-4 { background: linear-gradient(135deg, #27ae60, #2ecc71); }

.contact-method h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-method p {
    color: #b0b0b0;
    margin-bottom: 5px;
    font-weight: 500;
}

.response-time {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin: 15px 0 20px;
    text-transform: uppercase;
}

.contact-modern-btn {
    background: transparent;
    color: #27ae60;
    border: 2px solid rgba(39, 174, 96, 0.5);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-modern-btn:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-3px);
}

.social-modern {
    text-align: center;
    margin-top: 60px;
}

.social-modern h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.social-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.social-modern-link {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-modern-link.instagram:hover { border-color: #e1306c; background: rgba(225, 48, 108, 0.05); }
.social-modern-link.tiktok:hover { border-color: #000; background: rgba(0, 0, 0, 0.1); }
.social-modern-link.youtube:hover { border-color: #ff0000; background: rgba(255, 0, 0, 0.05); }

.social-modern-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.social-modern-link.instagram .social-icon { background: linear-gradient(135deg, #e1306c, #fd1d1d); }
.social-modern-link.tiktok .social-icon { background: #000; }
.social-modern-link.youtube .social-icon { background: #ff0000; }

.social-info {
    flex: 1;
    text-align: left;
}

.social-name {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 2px;
}

.social-desc {
    display: block;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.follow-count {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer */
.footer-modern {
    background: #111111;
    border-top: 1px solid rgba(39, 174, 96, 0.2);
    padding: 80px 0 30px;
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-modern p {
    color: #d6d6d6;
    line-height: 1.7;
}

.footer-logo-modern {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.brand-info p {
    color: #b0b0b0;
    line-height: 1.7;
}

.tech-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-badge {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links-modern h4,
.footer-app h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links-modern ul {
    list-style: none;
}

.footer-links-modern ul li {
    margin-bottom: 10px;
}

.footer-links-modern ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links-modern ul li a:hover {
    color: #27ae60;
}

.footer-app p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.app-btn:hover {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.5rem;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-text {
    font-size: 0.7rem;
    color: #b0b0b0;
}

.app-store {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-bottom-modern {
    border-top: 1px solid rgba(39, 174, 96, 0.2);
    padding-top: 25px;
}

.footer-bottom-content-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content-modern p {
    color: #b0b0b0;
}

.footer-tech-links {
    display: flex;
    gap: 25px;
}

.footer-tech-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-tech-links a:hover {
    color: #27ae60;
}

/* Modern WhatsApp Float */
.whatsapp-modern-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-modern-content {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25d366;
    border-radius: 25px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.whatsapp-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 25px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whatsapp-modern-content:hover .whatsapp-glow {
    opacity: 0.5;
}

.whatsapp-modern-content:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}

.whatsapp-icon-modern {
    width: 35px;
    height: 35px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.whatsapp-text-modern {
    color: white;
}

.main-text {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.sub-text {
    display: block;
    font-size: 0.7rem;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .tours-modern-grid {
        grid-template-columns: 1fr;
    }

    .modern-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modern-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-modern-grid {
        grid-template-columns: 1fr;
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-modern {
        height: 40px;
        margin: 0 auto;
    }

    .footer-bottom-content-modern {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-text-modern {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .preference-grid {
        grid-template-columns: 1fr;
    }

    .modern-gallery {
        grid-template-columns: 1fr;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animations */
.loading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll */
section {
    scroll-margin-top: 90px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #219a52, #27ae60);
}

/* Glowing Effects */
.glow-effect {
    filter: drop-shadow(0 0 20px rgba(39, 174, 96, 0.3));
}

/* Modern Animations */
@keyframes modernPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
}

.pulse-effect {
    animation: modernPulse 2s infinite;
}
