/* ============================================
   99jobs - Luxury Mobile-First Website
   Colors: Navy Blue (#0A1628), White (#FFFFFF), Red (#E63946)
   ============================================ */

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

:root {
    --navy: #0A1628;
    --white: #FFFFFF;
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #38BDF8;
    --accent: #06B6D4;
    --light-navy: #1a2942;
    --shadow: rgba(14, 165, 233, 0.15);
    --shadow-heavy: rgba(14, 165, 233, 0.3);
    --gradient-1: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
    --gradient-2: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
    --gradient-3: linear-gradient(135deg, #0A1628 0%, #1e3a5f 100%);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--navy);
    background: linear-gradient(180deg, #f8fafc 0%, #e0f2fe 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Background removed - will be used as visible landscape section */

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(14, 165, 233, 0.2);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-number {
    color: var(--red);
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    animation: slideDown 0.3s ease;
}

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

.nav-link {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 70px;
    background: #0A1628;
    background: var(--gradient-3);
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    opacity: 0.15;
    border-radius: 50%;
    transform: translate(40%, -40%);
    animation: float 6s ease-in-out infinite;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-40%, 40%);
    animation: float 8s ease-in-out infinite reverse;
    filter: blur(50px);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-character {
    position: absolute;
    bottom: 0;
    right: 3%;
    width: 320px;
    max-width: 35vw;
    height: auto;
    max-height: 480px;
    z-index: 3;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    object-fit: contain;
    pointer-events: none;
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-highlight {
    color: var(--primary-light);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    animation: underlinePulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.6);
}

@keyframes underlinePulse {
    0%, 100% {
        transform: scaleX(1);
        opacity: 1;
    }
    50% {
        transform: scaleX(1.1);
        opacity: 0.8;
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    line-height: 1.7;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 2.5rem 1.5rem;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.3) 50%, transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.section-title {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title .text-red {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ========== CARD GRID ========== */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.25);
    border-color: var(--primary-light);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* ========== PRICING CARDS ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(14, 165, 233, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(14, 165, 233, 0.3);
    background: rgba(255, 255, 255, 1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
    border-color: var(--primary-light);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price {
    font-size: 2.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1;
}

.plan-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 28px;
    font-size: 0.9rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ========== SPLIT SECTION ========== */
.split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.split-left {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem;
}

.split-right {
    background: var(--white);
    padding: 4rem 2rem;
}

.split-red {
    background: var(--red);
    color: var(--white);
    padding: 4rem 2rem;
}

/* ========== FORM STYLES ========== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========== STATS SECTION ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--gradient-1);
    color: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(14, 165, 233, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.4);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1.3;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========== UTILITIES ========== */
.text-center {
    text-align: center;
}

.text-navy {
    color: var(--navy);
}

.text-red {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: var(--white);
}

.bg-navy {
    background: var(--navy);
}

.bg-primary {
    background: var(--gradient-1);
}

.bg-white {
    background: var(--white);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ========== TABLET RESPONSIVE ========== */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

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

    .hero-content {
        padding: 3rem 2.5rem;
    }

    .hero-character {
        width: 380px;
        max-width: 32vw;
        max-height: 520px;
        right: 4%;
    }

    .section {
        padding: 3rem 1.5rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        position: static;
        background: transparent;
        padding: 0;
    }

    .hamburger {
        display: none;
    }

    .nav-link {
        padding: 0.5rem 1.2rem;
    }

    .nav-link:hover {
        transform: translateY(-2px);
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .card h3 {
        font-size: 1.3rem;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .split-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

/* ========== DESKTOP RESPONSIVE ========== */
@media (min-width: 1024px) {
    .hero-content {
        padding: 3.5rem 3rem;
    }

    .hero-character {
        width: 440px;
        max-width: 28vw;
        max-height: 560px;
        right: 6%;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .card {
        padding: 2rem;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .card h3 {
        font-size: 1.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }

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

    .hero h1 {
        font-size: 4rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Icon hover animations */
.card-icon {
    animation: pulse 2s ease-in-out infinite;
}

.card:hover .card-icon {
    animation: bounce 0.5s ease;
}

/* ========== LOADING ANIMATION ========== */
.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}

.loading.active {
    display: block;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========== QUICK LINKS (Floating Action Buttons) ========== */
.quick-links {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 25px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}

.quick-link-btn:hover {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 8px 35px rgba(14, 165, 233, 0.6);
}

.quick-link-btn.whatsapp {
    background: #25D366;
}

.quick-link-btn.whatsapp:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.quick-link-btn.scroll-top {
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.quick-link-btn.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.quick-link-btn.scroll-top:hover {
    box-shadow: 0 6px 30px rgba(10, 22, 40, 0.6);
}

/* Tooltip for quick links */
.quick-link-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.quick-link-btn:hover::before {
    opacity: 1;
}

/* ========== PLAYFUL INTERACTIONS ========== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Wiggle animation on hover for pricing cards */
.pricing-card:hover {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: translateY(-10px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-2deg); }
    75% { transform: translateY(-10px) rotate(2deg); }
}

/* Emoji animations */
@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(10deg);
    }
}

.card-icon {
    animation: emojiFloat 3s ease-in-out infinite;
}

/* Stats counter animation */
.stat-number {
    display: inline-block;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Interactive cursor effect for buttons */
@media (hover: hover) {
    .btn, .whatsapp-btn {
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .btn:active, .whatsapp-btn:active {
        transform: scale(0.95);
    }
}

/* ========== NOTIFICATION POPUP SYSTEM ========== */
.notification-popup {
    position: fixed;
    bottom: 100px;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: var(--navy);
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(14, 165, 233, 0.25);
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 320px;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid var(--primary);
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.notification-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-popup.hide {
    transform: translateX(-400px);
    opacity: 0;
}

.notification-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: bellRing 1s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.notification-message {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.notification-location {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}

/* Mobile adjustments for notification */
@media (max-width: 768px) {
    .notification-popup {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* ========== LANDSCAPE SHOWCASE SECTION ========== */
.landscape-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
}

.landscape-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.landscape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landscape-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
}

.landscape-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.landscape-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

@media (min-width: 768px) {
    .landscape-section {
        height: 600px;
    }

    .landscape-content h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .landscape-section {
        height: 700px;
    }
}

/* ========== SOCIAL MEDIA ICONS ========== */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    animation: pulse 0.5s ease;
}

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

.social-icon.twitter:hover {
    background: #1DA1F2;
}

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

.social-icon.linkedin:hover {
    background: #0A66C2;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

/* Footer address section */
.footer-address {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: inline-block;
}

.footer-address h4 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-address p {
    opacity: 0.9;
    line-height: 1.8;
    margin: 0;
}

.footer-address-icon {
    display: inline-block;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
}
