/* ================================
   ALMOUED TRAVEL - FEME INSPIRED STYLES
   ================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #fea300;
    --blue: #009af0;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f8f9fd;
    --purple: #6B46C1;
    --pink: #EC4899;
    --logo-orange: #ff8c00;
    --logo-blue: #1e90ff;
    --logo-gradient: linear-gradient(135deg, #ff8c00 0%, #1e90ff 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    font-weight: 400;
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
}

/* Utility Classes */
.highlight {
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.container {
    max-width: 1080px; /* Changed from 1020px to 1080px (90%) */
    margin: 0 auto;
    padding: 0 18px; /* Changed from 17px to 18px (90%) */
}

.section {
    padding: 72px 0; /* Changed from 68px to 72px (90%) */
}

/* Loading Screen */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    position: relative;
    text-align: center;
}

.loader-logo-image {
    width: 172px; /* Changed from 68px to 72px (90%) */
    height: 90px; /* Changed from 68px to 72px (90%) */
    margin-bottom: 18px; /* Changed from 17px to 18px (90%) */
    
    box-shadow: 0 9px 27px rgba(255, 255, 255, 0.3); /* Changed from 8.5px 25.5px */
}

.loader-particles {
    display: flex;
    justify-content: center;
    gap: 4.5px; /* Changed from 4.25px to 4.5px (90%) */
}

.particle {
    width: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    height: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    background: white;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.particle:nth-child(1) { animation-delay: -0.32s; }
.particle:nth-child(2) { animation-delay: -0.16s; }
.particle:nth-child(3) { animation-delay: 0s; }
.particle:nth-child(4) { animation-delay: 0.16s; }
.particle:nth-child(5) { animation-delay: 0.32s; }

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
    } 
    40% { 
        transform: scale(1);
    }
}

/* Navigation - UNCHANGED */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-link:hover,
.nav-link.active {
    color: var(--logo-orange);
    background: rgba(255, 140, 0, 0.1);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--logo-orange);
    background: rgba(255, 140, 0, 0.1);
}

.cta-btn {
    background: var(--logo-gradient);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .hamburger {
    background: var(--dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video,
.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1080px; /* Changed from 1020px to 1080px (90%) */
    margin: 0 auto;
    padding: 0 18px; /* Changed from 17px to 18px (90%) */
    text-align: center;
}

.hero-content {
    max-width: 720px; /* Changed from 680px to 720px (90%) */
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(9px); /* Changed from 8.5px to 9px (90%) */
    padding: 7.2px 18px; /* Changed from 6.8px 17px to 7.2px 18px (90%) */
    border-radius: 45px; /* Changed from 42.5px to 45px (90%) */
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    font-weight: 500;
    margin-bottom: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.6rem); /* Changed from 2.125rem, 5vw, 3.4rem */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    text-shadow: 0 3.6px 18px rgba(0, 0, 0, 0.3); /* Changed from 3.4px 17px */
}

.hero p {
    font-size: 0.99rem; /* Changed from 0.935rem to 0.99rem (90%) */
    line-height: 1.7;
    margin-bottom: 2.25rem; /* Changed from 2.125rem to 2.25rem (90%) */
    opacity: 0.9;
    max-width: 540px; /* Changed from 510px to 540px (90%) */
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
}

.btn-primary {
    position: relative;
    background: var(--logo-gradient);
    color: white;
    text-decoration: none;
    padding: 14.4px 28.8px; /* Changed from 13.6px 27.2px to 14.4px 28.8px (90%) */
    border-radius: 45px; /* Changed from 42.5px to 45px (90%) */
    font-weight: 600;
    font-size: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    display: inline-flex;
    align-items: center;
    gap: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2.7px); /* Changed from -2.55px to -2.7px (90%) */
    box-shadow: 0 9px 27px rgba(255, 140, 0, 0.4); /* Changed from 8.5px 25.5px */
}

.btn-shine {
    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;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(9px); /* Changed from 8.5px to 9px (90%) */
    color: white;
    text-decoration: none;
    padding: 14.4px 28.8px; /* Changed from 13.6px 27.2px to 14.4px 28.8px (90%) */
    border-radius: 45px; /* Changed from 42.5px to 45px (90%) */
    font-weight: 600;
    font-size: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    display: inline-flex;
    align-items: center;
    gap: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1.8px); /* Changed from -1.7px to -1.8px (90%) */
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); } /* Changed from -17px to -18px (90%) */
}

.scroll-indicator {
    position: absolute;
    bottom: 27px; /* Changed from 25.5px to 27px (90%) */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
}

.scroll-mouse {
    width: 21.6px; /* Changed from 20.4px to 21.6px (90%) */
    height: 36px; /* Changed from 34px to 36px (90%) */
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
    position: relative;
    margin: 0 auto 7.2px; /* Changed from 6.8px to 7.2px (90%) */
}

.scroll-wheel {
    width: 3.6px; /* Changed from 3.4px to 3.6px (90%) */
    height: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1.8px; /* Changed from 1.7px to 1.8px (90%) */
    position: absolute;
    top: 7.2px; /* Changed from 6.8px to 7.2px (90%) */
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14.4px); } /* Changed from 13.6px to 14.4px (90%) */
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.6rem; /* Changed from 3.4rem to 3.6rem (90%) */
}

.section-label {
    display: inline-block;
    background: rgba(107, 70, 193, 0.1);
    color: var(--logo-orange);
    padding: 7.2px 18px; /* Changed from 6.8px 17px to 7.2px 18px (90%) */
    border-radius: 18px; /* Changed from 17px to 18px (90%) */
    font-size: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.25rem); /* Changed from 1.7rem, 4vw, 2.125rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    color: var(--dark);
}

.section-subtitle {
    font-size: 0.99rem; /* Changed from 0.935rem to 0.99rem (90%) */
    color: var(--gray);
    line-height: 1.6;
    max-width: 540px; /* Changed from 510px to 540px (90%) */
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.6rem; /* Changed from 3.4rem to 3.6rem (90%) */
    align-items: start;
}

.about-left {
    position: relative;
}

.reviews-section {
    background: white;
    padding: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    border-radius: 18px; /* Changed from 17px to 18px (90%) */
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1); /* Changed from 8.5px 25.5px */
    margin-bottom: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 3.6px; /* Changed from 3.4px to 3.6px (90%) */
    margin-bottom: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.stars i {
    color: #FFD700;
    font-size: 1.08rem; /* Changed from 1.02rem to 1.08rem (90%) */
}

.review-text {
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    color: var(--gray);
    margin-bottom: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.counter {
    color: var(--logo-orange);
    font-weight: 700;
}

.avatars {
    display: flex;
    justify-content: center;
    gap: -7.2px; /* Changed from -6.8px to -7.2px (90%) */
}

.avatar {
    width: 36px; /* Changed from 34px to 36px (90%) */
    height: 36px; /* Changed from 34px to 36px (90%) */
    border-radius: 50%;
    background: var(--logo-gradient);
    border: 2.7px solid white; /* Changed from 2.55px to 2.7px (90%) */
    margin-left: -7.2px; /* Changed from -6.8px to -7.2px (90%) */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
    font-weight: 600;
    color: white;
}

.avatar.plus {
    background: var(--logo-gradient);
}

.therapy-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.therapy-image-1,
.therapy-image-2 {
    position: relative;
    border-radius: 18px; /* Changed from 17px to 18px (90%) */
    overflow: hidden;
    height: 180px; /* Changed from 170px to 180px (90%) */
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1); /* Changed from 8.5px 25.5px */
}

.therapy-image-1 img,
.therapy-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.342);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.therapy-image-1:hover .image-overlay,
.therapy-image-2:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    margin-bottom: 0.45rem; /* Changed from 0.425rem to 0.45rem (90%) */
}

.about-right {
    padding-left: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
}

.about-description {
    font-size: 13.5px; /* Changed from 12.75px to 13.5px (90%) */
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
}

.mission-section h3 {
    font-size: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.mission-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    padding: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    background: white;
    border-radius: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    box-shadow: 0 3.6px 18px rgba(0, 0, 0, 0.06); /* Changed from 3.4px 17px */
    transition: all 0.3s ease;
    overflow: hidden;
}

.mission-item:hover {
    transform: translateY(-4.5px); /* Changed from -4.25px to -4.5px (90%) */
    box-shadow: 0 7.2px 27px rgba(255, 140, 0, 0.15); /* Changed from 6.8px 25.5px */
}

.mission-icon {
    width: 45px; /* Changed from 42.5px to 45px (90%) */
    height: 45px; /* Changed from 42.5px to 45px (90%) */
    background: var(--logo-gradient);
    border-radius: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.08rem; /* Changed from 1.02rem to 1.08rem (90%) */
    flex-shrink: 0;
}

.mission-item span {
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    line-height: 1.6;
    color: var(--gray);
}

.mission-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-item:hover .mission-hover-effect {
    left: 100%;
}

/* Services Section - Stat Cards Style */
.services {
    background: white;
    padding: 72px 0; /* Changed from 68px to 72px (90%) */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); /* Changed from 238px to 252px (90%) */
    gap: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
}

.service-stat-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.125rem; /* Changed from 1.0625rem to 1.125rem (90%) */
    padding: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    background: white;
    box-shadow: 0 7.2px 22.5px rgba(0, 0, 0, 0.08); /* Changed from 6.8px 21.25px */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.service-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.6px; /* Changed from 3.4px to 3.6px (90%) */
    background: var(--logo-gradient);
    border-radius: 27.9px 5.4px 0 0; /* Changed from 26.35px 5.1px 0 0 */
}

.service-stat-card:hover {
    transform: translateY(-7.2px) scale(1.02) rotate(1deg); /* Changed from -6.8px */
    box-shadow: 0 18px 36px rgba(255, 140, 0, 0.15); /* Changed from 17px 34px */
    border-color: rgba(255, 140, 0, 0.2);
    border-radius: 36px 7.2px 36px 7.2px; /* Changed from 34px 6.8px 34px 6.8px */
}

.service-icon {
    width: 54px; /* Changed from 51px to 54px (90%) */
    height: 54px; /* Changed from 51px to 54px (90%) */
    background: var(--logo-gradient);
    border-radius: 18px 4.5px 18px 4.5px; /* Changed from 17px 4.25px 17px 4.25px */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 7.2px 18px rgba(255, 140, 0, 0.3); /* Changed from 6.8px 17px */
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 18px 4.5px 18px 4.5px; /* Changed from 17px 4.25px 17px 4.25px */
}

.service-stat-card:hover .service-icon::before {
    transform: scale(1);
}

.service-stat-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    border-radius: 22.5px 2.7px 22.5px 2.7px; /* Changed from 21.25px 2.55px 21.25px 2.55px */
    box-shadow: 0 10.8px 22.5px rgba(255, 140, 0, 0.4); /* Changed from 10.2px 21.25px */
}

.service-stat-card span {
    font-size: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    line-height: 1.6;
    color: var(--dark);
    font-weight: 600;
    margin-top: 0.45rem; /* Changed from 0.425rem to 0.45rem (90%) */
    transition: all 0.3s ease;
}

.service-stat-card:hover span {
    color: var(--logo-orange);
    transform: translateX(4.5px); /* Changed from 4.25px to 4.5px (90%) */
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.08), transparent);
    transition: left 0.6s ease;
}

.service-stat-card:hover .service-hover-effect {
    left: 100%;
}

/* Service Image Styling for All Sections */
.service-image {
    position: relative;
    height: 216px; /* Changed from 204px to 216px (90%) */
    overflow: hidden;
}

.packages .service-image {
    border-radius: 50px 50px 0 0; /* Changed from 39.1px 13.6px 0 0 */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    color: white;
    font-size: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
}

.service-content {
    padding: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    position: relative;
}

.service-content h3 {
    font-size: 1.17rem; /* Changed from 1.105rem to 1.17rem (90%) */
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.service-content p {
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
}

.service-arrow {
    position: absolute;
    bottom: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    right: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    width: 36px; /* Changed from 34px to 36px (90%) */
    height: 36px; /* Changed from 34px to 36px (90%) */
    background: var(--logo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.packages .service-arrow {
    border-radius: 18px 4.5px 18px 4.5px; /* Changed from 17px 4.25px 17px 4.25px */
}

.destinations .service-arrow {
    border-radius: 13.5px 0 13.5px 0; /* Changed from 12.75px 0 12.75px 0 */
}

.service-card:hover .service-arrow {
    transform: translateX(0);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(30, 144, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .service-glow {
    opacity: 1;
}

/* Destinations Section */
.destinations {
    background: var(--light-gray);
}

/* Packages Section */
.packages {
    background: white;
}

/* Team Section (Feme How It Works Style) */
.team {
    background: white;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fd 0%, #ffffff 50%, #f8f9fd 100%);
    z-index: -1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 990px; /* Changed from 935px to 990px (90%) */
    margin: 0 auto;
    padding-top: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
}

.process-path {
    position: absolute;
    top: 72px; /* Changed from 68px to 72px (90%) */
    left: 0;
    width: 100%;
    height: 180px; /* Changed from 170px to 180px (90%) */
    z-index: 1;
}

.path-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawPath 3s ease-in-out 1s forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 216px; /* Changed from 204px to 216px (90%) */
    position: relative;
    z-index: 3;
}

.step-number {
    width: 90px; /* Changed from 85px to 90px (90%) */
    height: 90px; /* Changed from 85px to 90px (90%) */
    background: var(--logo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.62rem; /* Changed from 1.53rem to 1.62rem (90%) */
    font-weight: 900;
    color: white;
    margin-bottom: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1); /* Changed from 8.5px 25.5px */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.step-item:hover .step-number::before {
    transform: scale(1);
}

.step-item:hover .step-number {
    transform: scale(1.15) rotateY(15deg);
    box-shadow: 0 18px 36px rgba(255, 140, 0, 0.3); /* Changed from 17px 34px */
}

.step-content h3 {
    font-size: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.45rem; /* Changed from 0.425rem to 0.45rem (90%) */
    transition: color 0.3s ease;
}

.team-role {
    color: var(--logo-orange);
    font-weight: 600;
    font-size: 0.81rem; /* Changed from 0.765rem to 0.81rem (90%) */
    text-transform: uppercase;
    letter-spacing: 0.45px; /* Changed from 0.425px to 0.45px (90%) */
    margin-bottom: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.step-item:hover .step-content h3 {
    color: var(--logo-orange);
}

.step-content p {
    font-size: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    color: var(--gray);
    line-height: 1.6;
    font-weight: 400;
}

.step-decoration {
    position: absolute;
    top: -18px; /* Changed from -17px to -18px (90%) */
    right: -18px; /* Changed from -17px to -18px (90%) */
    width: 36px; /* Changed from 34px to 36px (90%) */
    height: 36px; /* Changed from 34px to 36px (90%) */
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-orange);
    font-size: 1.08rem; /* Changed from 1.02rem to 1.08rem (90%) */
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.step-item:hover .step-decoration {
    opacity: 1;
    transform: scale(1);
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.6rem; /* Changed from 3.4rem to 3.6rem (90%) */
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
    border-radius: 18px; /* Changed from 17px to 18px (90%) */
    box-shadow: 0 9px 27px rgba(0, 0, 0, 0.1); /* Changed from 8.5px 25.5px */
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    border: 2px solid transparent;
    border-radius: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    background: var(--light-gray);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-orange);
    box-shadow: 0 0 0 3.6px rgba(255, 140, 0, 0.1); /* Changed from 3.4px */
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.8px; /* Changed from 1.7px to 1.8px (90%) */
    background: var(--logo-gradient);
    transition: width 0.3s ease;
}

.form-group input:focus + .input-highlight,
.form-group textarea:focus + .input-highlight {
    width: 100%;
}

.submit-btn {
    background: var(--logo-gradient);
    color: white;
    border: none;
    padding: 0.9rem 1.8rem; /* Changed from 0.85rem 1.7rem to 0.9rem 1.8rem (90%) */
    border-radius: 45px; /* Changed from 42.5px to 45px (90%) */
    font-size: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-1.8px); /* Changed from -1.7px to -1.8px (90%) */
    box-shadow: 0 7.2px 22.5px rgba(255, 140, 0, 0.4); /* Changed from 6.8px 21.25px */
}

.submit-ripple {
    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;
}

.submit-btn:hover .submit-ripple {
    left: 100%;
}

.contact-right {
    padding-left: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
}

.contact-description {
    font-size: 13.5px; /* Changed from 12.75px to 13.5px (90%) */
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
}

.contact-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    padding: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    background: white;
    border-radius: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    box-shadow: 0 3.6px 18px rgba(0, 0, 0, 0.06); /* Changed from 3.4px 17px */
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-4.5px); /* Changed from -4.25px to -4.5px (90%) */
    box-shadow: 0 7.2px 27px rgba(255, 140, 0, 0.15); /* Changed from 6.8px 25.5px */
}

.contact-icon {
    width: 45px; /* Changed from 42.5px to 45px (90%) */
    height: 45px; /* Changed from 42.5px to 45px (90%) */
    background: var(--logo-gradient);
    border-radius: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.08rem; /* Changed from 1.02rem to 1.08rem (90%) */
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 14.4px; /* Changed from 13.6px to 14.4px (90%) */
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.45rem; /* Changed from 0.425rem to 0.45rem (90%) */
}

.contact-details p {
    font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    color: var(--gray);
    line-height: 1.6;
}

.contact-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover .contact-ripple {
    left: 100%;
}

/* Footer */
/* ================================
   ALMOUED TRAVEL - CLEAN WHITE FOOTER
   ================================ */

/* Footer Variables */
:root {
    --orange: #fea300;
    --blue: #009af0;
    --white: #ffffff;
    --dark: #1a1a1ade;
    --gray: #666;
    --light-gray: #f8f9fd;
    --logo-orange: #ff8c00;
    --logo-blue: #1e90ff;
    --logo-gradient: linear-gradient(135deg, #ff8c00 0%, #1e90ff 100%);
}

/* Clean White Footer */
.footer {
    background: var(--dark);
    border-top: 3px solid;
    border-image: var(--logo-gradient) 1;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Logo Section */
.footer-logo-section {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    width: 200px;
    height: 90px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.1);
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--logo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.social-links a:hover {
    background: var(--logo-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Footer Sections */
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--logo-gradient);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-section ul li a:hover {
    color: var(--logo-orange);
    transform: translateX(3px);
}

/* Contact Info */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--logo-orange);
    font-size: 1rem;
    margin-top: 0.1rem;
    width: 16px;
    flex-shrink: 0;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--logo-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Smooth Animations */
.footer-section {
    transition: transform 0.3s ease;
}

.footer-section:hover {
    transform: translateY(-2px);
}

/* Focus States for Accessibility */
.social-links a:focus,
.footer-section ul li a:focus,
.back-to-top:focus {
    outline: 2px solid var(--logo-orange);
    outline-offset: 2px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 13.5px; /* Changed from 12.75px to 13.5px (90%) */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
    }
    
    .about-right {
        padding-left: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
    }
    
    .contact-right {
        padding-left: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); /* Changed from 255px to 270px (90%) */
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
        align-items: center;
    }
    
    .process-path {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cta-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.25rem; /* Changed from 2.125rem to 2.25rem (90%) */
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 54px 0; /* Changed from 51px to 54px (90%) */
    }
    
    .section-title {
        font-size: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    }
    
    .therapy-images {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 9px; /* Changed from 8.5px to 9px (90%) */
    }
    
    .hero-badge {
        font-size: 10.8px; /* Changed from 10.2px to 10.8px (90%) */
        padding: 5.4px 14.4px; /* Changed from 5.1px 13.6px to 5.4px 14.4px (90%) */
    }
    
    .hero h1 {
        font-size: 1.8rem; /* Changed from 1.7rem to 1.8rem (90%) */
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10.8px 21.6px; /* Changed from 10.2px 20.4px to 10.8px 21.6px (90%) */
        font-size: 12.6px; /* Changed from 11.9px to 12.6px (90%) */
    }
    
    .section-header {
        margin-bottom: 2.7rem; /* Changed from 2.55rem to 2.7rem (90%) */
    }
    
    .reviews-section {
        padding: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    }
    
    .mission-item {
        padding: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    }
    
    .service-content {
        padding: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    }
    
    .step-number {
        width: 72px; /* Changed from 68px to 72px (90%) */
        height: 72px; /* Changed from 68px to 72px (90%) */
        font-size: 1.35rem; /* Changed from 1.275rem to 1.35rem (90%) */
    }
    
    .contact-item {
        padding: 0.9rem; /* Changed from 0.85rem to 0.9rem (90%) */
    }
    
    .floating-elements {
        display: none;
    }
}



/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25.5px); /* Reduced from 30px to 25.5px (85%) */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25.5px); /* Reduced from -30px to -25.5px (85%) */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-25.5px); /* Reduced from -30px to -25.5px (85%) */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(25.5px); /* Reduced from 30px to 25.5px (85%) */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-85px); /* Reduced from -100px to -85px (85%) */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(85px); /* Reduced from 100px to 85px (85%) */
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(340px) rotateX(90deg); /* Reduced from 400px to 340px (85%) */
    }
    to {
        opacity: 1;
        transform: perspective(340px) rotateX(0deg); /* Reduced from 400px to 340px (85%) */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6.8px; /* Reduced from 8px to 6.8px (85%) */
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--logo-gradient); /* Using logo gradient */
    border-radius: 3.4px; /* Reduced from 4px to 3.4px (85%) */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--logo-blue), var(--logo-orange)); /* Using logo colors reversed */
}

/* Selection */
::selection {
    background: rgba(255, 140, 0, 0.3); /* Using logo orange */
    color: var(--dark);
}

::-moz-selection {
    background: rgba(255, 140, 0, 0.3); /* Using logo orange */
    color: var(--dark);
}