/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    gap: 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-image {
    filter: brightness(0) invert(0);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-20px);
    animation: logoFadeInLeft 0.8s ease-out 0.3s forwards;
}

.navbar.scrolled .logo-text {
    background: linear-gradient(135deg, #054048 0%, #0daabf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text::before {
    content: 'World Way ';
    font-weight: 700;
}

.logo-text::after {
    content: 'Travel';
    font-weight: 400;
}

@keyframes logoFadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.navbar-logo:hover .logo-text {
    color: #0daabf;
}

.navbar-logo:hover .logo-image {
    transform: scale(1.1);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.navbar-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s ease;
}

.navbar.scrolled .navbar-nav a {
    color: #333;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0daabf, #054048);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 1px;
}

.navbar-nav a:hover::after {
    width: 100%;
}

.navbar-nav a:hover {
    color: #0daabf;
    transform: translateY(-1px);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.navbar.scrolled .navbar-phone {
    color: #054048;
    background: rgba(5, 64, 72, 0.08);
    border: 1px solid rgba(5, 64, 72, 0.15);
}

.navbar-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.navbar.scrolled .navbar-phone:hover {
    background: rgba(5, 64, 72, 0.15);
    box-shadow: 0 8px 25px rgba(5, 64, 72, 0.15);
    color: #0daabf;
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: #0daabf;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.navbar.scrolled .phone-icon {
    color: #0daabf;
}

.navbar-phone:hover .phone-icon {
    color: #00c6ff;
    transform: scale(1.1) rotate(5deg);
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.2;
}

.phone-number {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.phone-time {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.8;
    letter-spacing: 0.2px;
}

/* Mobile phone styling */
@media (max-width: 768px) {
    .navbar-phone {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .phone-info {
        gap: 0.05rem;
    }
    
    .phone-number {
        font-size: 0.85rem;
    }
    
    .phone-time {
        font-size: 0.7rem;
    }
}

.navbar-signin {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.navbar.scrolled .navbar-signin {
    color: #333;
}

.navbar-signin:hover {
    color: #0daabf;
}

.navbar-cta {
    background: #0daabf;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    background: #054048;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 170, 191, 0.3);
}

/* Mobile Menu */
.navbar-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.navbar-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.navbar-mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.navbar-mobile-menu.active {
    transform: translateX(0);
}

.navbar-mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    list-style: none;
}

.navbar-mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-mobile-nav a:hover {
    color: #0daabf;
}

.navbar-mobile-actions {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ===== MAIN CONTENT ===== */
.page-container {
    min-height: 100vh;
    word-wrap: break-word;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%), url('../site-download/framerusercontent.com/images/kBU6rxVfibSHHpTqf2L04Ad3nHU.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 0s forwards;
}

.hero-logo-image {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.hero-logo:hover .hero-logo-image {
    transform: scale(1.1) rotate(5deg);
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 0.3s forwards;
}

.hero-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 0.9s forwards;
    color: rgba(255, 255, 255, 0.85);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #054048;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 1s ease-out 1.2s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0daabf 0%, #00c6ff 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover .cta-icon {
    transform: translateX(5px) rotate(15deg);
}

.cta-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

/* Hero animations */
@keyframes heroFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.5; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Section Divider */
.section-divider {
    position: relative;
    height: 120px;
    background: white;
    margin-top: -1px;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #054048;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../site-download/framerusercontent.com/images/4GzomsBaJz83HYe3iEpEexogyQ.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content {
    text-align: left;
}

.about-content h2 {
    color: #054048;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.about-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 64, 72, 0.1);
}

.about-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.about-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.about-item:hover .about-logo {
    transform: scale(1.1);
}

.about-item h3 {
    color: #054048;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-item p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

.about-item p:last-child {
    margin-bottom: 0;
}

.about-image {
    text-align: center;
}

.person-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.person-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('../site-download/framerusercontent.com/images/7nTlyAwH50RkugaVd7kymfdCnI.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(5, 64, 72, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 64, 72, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-logo {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    color: #054048;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ===== STATISTICS SECTION ===== */
.stats {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../site-download/framerusercontent.com/images/diNc94LKzILOl1sXKWrnZJ6Ck.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #054048;
    position: relative;
}

.stats h2 {
    color: #054048;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    text-align: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 180px;
    padding: 1.5rem;
    background: rgba(5, 64, 72, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(5, 64, 72, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(5, 64, 72, 0.1);
    box-shadow: 0 10px 30px rgba(5, 64, 72, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: block;
}

.count {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0daabf;
    display: block;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    color: #666;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../site-download/framerusercontent.com/images/XvUQt3zl4TvAu44o5UiTbAfRXE4.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #054048;
    margin-bottom: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('../site-download/framerusercontent.com/images/OWH1yUEtI3HbK7KSwRVtaUsECs.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}



/* ===== CONTACT PAGE ===== */
.contact-page {
    background: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h3 {
    color: #054048;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #054048;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0daabf;
    box-shadow: 0 0 0 3px rgba(13, 170, 191, 0.1);
}

.submit-button {
    width: 100%;
    background: #0daabf;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #054048;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 170, 191, 0.3);
}

/* ===== FAQ PAGE ===== */
.faq-page {
    background: white;
    padding: 80px 0;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-disclaimer {
    background: rgba(5, 64, 72, 0.05);
    border-left: 4px solid #0daabf;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.faq-disclaimer h3 {
    color: #054048;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.faq-disclaimer p:last-child {
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: #054048;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0daabf;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-answer h4 {
    color: #054048;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer h4:first-child {
    margin-top: 0;
}

.faq-answer p {
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #054048;
    font-weight: 600;
}

.faq-item.active .faq-question {
    background: #0daabf;
    color: white;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-toggle {
    color: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* General Mobile Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar Mobile */
    .navbar {
        height: 56px;
    }
    
    .navbar-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .navbar-mobile-toggle {
        display: flex;
    }
    
    .navbar-mobile-menu {
        top: 56px;
        height: calc(100vh - 56px);
        width: 100%;
    }
    
    .navbar-mobile-nav {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .navbar-mobile-nav a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
    
    .navbar-mobile-actions {
        padding: 1rem;
        gap: 1rem;
    }
    
    /* Phone Number Mobile */
    .navbar-phone {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
        min-width: auto;
        width: 100%;
        justify-content: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .phone-info {
        gap: 0.05rem;
    }
    
    .phone-number {
        font-size: 0.85rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .phone-time {
        font-size: 0.7rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Hero Mobile */
    .hero-content {
        word-wrap: break-word;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Stats Mobile */
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat {
        min-width: auto;
    }
    
    .count {
        font-size: 2.5rem;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* FAQ Mobile */
    .faq-content {
        max-width: 100%;
        padding: 0 1rem;
        overflow-x: hidden;
        word-wrap: break-word;
    }
    
    .faq-disclaimer {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-disclaimer h3 {
        font-size: 1.1rem;
    }
    
    .faq-disclaimer p {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .faq-answer {
        padding: 1rem;
        overflow-x: hidden;
        word-wrap: break-word;
    }
    
    .faq-answer h4 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .faq-answer ul {
        padding-left: 1.5rem;
        margin: 0.75rem 0;
    }
    
    .faq-answer li {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    
    /* About Mobile */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .about-item-header {
        gap: 0.5rem;
    }
    
    .about-logo {
        width: 35px;
        height: 35px;
    }
    
    .about-item h3 {
        font-size: 1rem;
    }
    
    .about-item p {
        font-size: 0.9rem;
    }
    
    .person-image {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    /* General Mobile */
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .navbar-phone {
        padding: 0.5rem 0.75rem;
    }
    
    .phone-number {
        font-size: 0.8rem;
    }
    
    .phone-time {
        font-size: 0.65rem;
    }
    
    .faq-disclaimer {
        padding: 1rem;
    }
    
    .faq-disclaimer h3 {
        font-size: 1rem;
    }
    
    .faq-disclaimer p {
        font-size: 0.85rem;
    }
    
    .faq-answer {
        padding: 0.75rem;
    }
    
    .faq-answer h4 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    .faq-answer ul {
        padding-left: 1.25rem;
    }
    
    .faq-answer li {
        font-size: 0.85rem;
    }
    
    .navbar-mobile-nav {
        padding: 1.5rem 1rem;
    }
    
    .navbar-mobile-nav a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .navbar-mobile-actions {
        padding: 0.75rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    overflow: hidden;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #22c55e;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon svg {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

/* ===== WHATSAPP POPUP ===== */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.whatsapp-popup.active {
    display: flex;
}

.whatsapp-popup-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 350px;
    width: 85%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.whatsapp-popup-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.whatsapp-popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.whatsapp-popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.whatsapp-popup-body p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.whatsapp-popup-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-popup-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-popup-button svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive for WhatsApp Popup */
@media (max-width: 768px) {
    .whatsapp-popup-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .whatsapp-popup-header h3 {
        font-size: 1.3rem;
    }
    
    .whatsapp-popup-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-popup-content {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .whatsapp-popup-header h3 {
        font-size: 1.2rem;
    }
    
    .whatsapp-popup-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
} 

/* ===== ELEGANT LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Background */
.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

/* Contrail */
.contrail-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.contrail-svg {
    width: 100%;
    height: 100%;
}

.contrail {
    animation: drawContrail 1s ease-out 0.3s forwards;
}

@keyframes drawContrail {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

/* Airplane */
.airplane-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.airplane {
    position: absolute;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    animation: flyElegant 1s ease-in-out 0.3s forwards;
    opacity: 0;
}

@keyframes flyElegant {
    0% {
        opacity: 0;
        transform: translate(15%, 80%) rotate(-20deg) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(25%, 70%) rotate(-15deg) scale(0.9);
    }
    50% {
        transform: translate(50%, 50%) rotate(-5deg) scale(1);
    }
    80% {
        transform: translate(75%, 30%) rotate(5deg) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(85%, 20%) rotate(10deg) scale(1);
    }
}

/* Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    opacity: 0;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

.cloud-1 {
    width: 80px;
    height: 30px;
    top: 40%;
    left: 30%;
    animation: cloudFloat1 1.5s ease-in-out 1s forwards;
}

.cloud-1:before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud-1:after {
    width: 50px;
    height: 35px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 60px;
    height: 25px;
    top: 35%;
    left: 60%;
    animation: cloudFloat2 1.5s ease-in-out 1.2s forwards;
}

.cloud-2:before {
    width: 35px;
    height: 35px;
    top: -15px;
    left: 8px;
}

.cloud-2:after {
    width: 40px;
    height: 30px;
    top: -12px;
    right: 8px;
}

@keyframes cloudFloat1 {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    50% {
        opacity: 0.6;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(50px);
    }
}

@keyframes cloudFloat2 {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    50% {
        opacity: 0.4;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* Loading Text */
.loading-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.loading-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c3e50;
    letter-spacing: 1.5px;
    opacity: 0;
    animation: textFadeIn 0.5s ease-out 0s forwards;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes flyPath {
    0% {
        transform: translate(20%, 120%) rotate(-15deg);
    }
    15% {
        transform: translate(30%, 100%) rotate(-10deg);
    }
    30% {
        transform: translate(45%, 80%) rotate(-5deg);
    }
    45% {
        transform: translate(60%, 60%) rotate(0deg);
    }
    60% {
        transform: translate(75%, 40%) rotate(5deg);
    }
    75% {
        transform: translate(85%, 25%) rotate(10deg);
    }
    90% {
        transform: translate(95%, 15%) rotate(15deg);
    }
    100% {
        transform: translate(110%, 5%) rotate(20deg);
    }
}

/* Airplane contrail */
.airplane::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 20px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.8) 0px,
        rgba(255, 255, 255, 0.8) 3px,
        transparent 3px,
        transparent 6px
    );
    animation: contrailFade 2s ease-out infinite;
}

@keyframes contrailFade {
    0% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Moving Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    opacity: 0.8;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}

.cloud-1 {
    width: 140px;
    height: 50px;
    top: 20%;
    animation: moveCloud1 50s linear infinite;
    opacity: 0.7;
}

.cloud-1:before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 20px;
}

.cloud-1:after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 20px;
}

.cloud-2 {
    width: 100px;
    height: 40px;
    top: 45%;
    animation: moveCloud2 35s linear infinite;
    opacity: 0.6;
    animation-delay: -10s;
}

.cloud-2:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.cloud-2:after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 15px;
}

.cloud-3 {
    width: 160px;
    height: 60px;
    top: 70%;
    animation: moveCloud3 40s linear infinite;
    opacity: 0.8;
    animation-delay: -20s;
}

.cloud-3:before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 25px;
}

.cloud-3:after {
    width: 90px;
    height: 90px;
    top: -45px;
    right: 25px;
}

.cloud-4 {
    width: 120px;
    height: 45px;
    top: 10%;
    animation: moveCloud4 45s linear infinite;
    opacity: 0.5;
    animation-delay: -15s;
}

.cloud-4:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 18px;
}

.cloud-4:after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 18px;
}

.cloud-5 {
    width: 90px;
    height: 35px;
    top: 60%;
    animation: moveCloud5 55s linear infinite;
    opacity: 0.6;
    animation-delay: -25s;
}

.cloud-5:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 12px;
}

.cloud-5:after {
    width: 55px;
    height: 55px;
    top: -27px;
    right: 12px;
}

@keyframes moveCloud1 {
    0% { left: -200px; opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { left: 100%; opacity: 0; }
}

@keyframes moveCloud2 {
    0% { left: -150px; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { left: 100%; opacity: 0; }
}

@keyframes moveCloud3 {
    0% { left: -250px; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { left: 100%; opacity: 0; }
}

@keyframes moveCloud4 {
    0% { left: -180px; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { left: 100%; opacity: 0; }
}

@keyframes moveCloud5 {
    0% { left: -120px; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { left: 100%; opacity: 0; }
}

/* Mobile Responsive for Loading Screen */
@media (max-width: 768px) {
    .loading-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .airplane svg {
        width: 28px;
        height: 28px;
    }
    
    .cloud-1 {
        width: 60px;
        height: 25px;
    }
    
    .cloud-1:before {
        width: 30px;
        height: 30px;
        top: -15px;
    }
    
    .cloud-1:after {
        width: 35px;
        height: 25px;
        top: -10px;
    }
    
    .cloud-2 {
        width: 45px;
        height: 20px;
    }
    
    .cloud-2:before {
        width: 25px;
        height: 25px;
        top: -10px;
    }
    
    .cloud-2:after {
        width: 30px;
        height: 20px;
        top: -8px;
    }
}

@media (max-width: 480px) {
    .loading-text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .airplane svg {
        width: 24px;
        height: 24px;
    }
    
    .cloud-1 {
        width: 50px;
        height: 20px;
    }
    
    .cloud-1:before {
        width: 25px;
        height: 25px;
        top: -12px;
    }
    
    .cloud-1:after {
        width: 30px;
        height: 20px;
        top: -8px;
    }
    
    .cloud-2 {
        width: 35px;
        height: 15px;
    }
    
    .cloud-2:before {
        width: 20px;
        height: 20px;
        top: -8px;
    }
    
    .cloud-2:after {
        width: 25px;
        height: 15px;
        top: -6px;
    }
} 