/* ============================================
   XOMINI LANDING PAGE - COMPREHENSIVE STYLES
   ============================================ */

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

:root {
    /* Colors */
    --primary: #FF6B6B;
    --primary-light: #FF8C8C;
    --secondary: #4ECDC4;
    --accent: #45B7D1;
    --dark: #1a1a2e;
    --darker: #0f0f1e;
    --light: #f8f9fa;
    --text: #2c2c2c;
    --text-light: #666;
    --border: #e0e0e0;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    --gradient-secondary: linear-gradient(135deg, #45B7D1 0%, #FF6B6B 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TYPOGRAPHY & GLOBAL
   ============================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

/* ============================================
   BACKGROUND & TEXTURES
   ============================================ */

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Frost overlay effect */
.frost-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Noise texture */
.noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' seed='2' /%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Animated shapes */
.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: var(--primary);
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: var(--secondary);
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    background: var(--accent);
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(30px) rotate(10deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease;
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION - Slider with search + cards overlaid
   ============================================ */

.hero {
    padding-top: 80px;
    position: relative;
}

.hero-slider-section {
    overflow: hidden;
}

/* Banner wrap: slider + overlay content */
.hero-banner-wrap {
    width: 100%;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay-flow .hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay-flow .hero-swiper,
.hero-overlay-flow .hero-static-bg {
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.hero-overlay-flow .hero-slide {
    position: relative;
    min-height: 85vh;
    height: 85vh;
}

.hero-overlay-flow .hero-static-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 85vh;
}

/* Title, subtitle, CTA - compact, top-left */
.hero-overlay-flow .hero-slide-text {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 20px 0;
    min-height: auto;
}

.hero-text-compact .hero-title {
    font-size: 32px;
    max-width: 420px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text-compact .hero-subtitle {
    font-size: 14px;
    max-width: 380px;
    margin-bottom: 14px;
    opacity: 0.95;
}

.hero-text-compact .hero-cta-btn {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 10px;
}

/* Search + Info cards overlaid on slider (after CTA area) */
.hero-search-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 24px 0 30px;
    pointer-events: none;
}

.hero-search-overlay .container {
    pointer-events: auto;
}

.hero-search-overlay .search-section {
    margin-bottom: 20px;
}

.hero-search-overlay .info-cards-grid {
    margin-top: 20px;
}

.hero-search-overlay .search-wrapper {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Legacy: non-overlay hero */
.hero:not(.hero-overlay-flow) .hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero:not(.hero-overlay-flow) .hero-slide {
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-banner-wrap { min-height: 95vh; }
    .hero-overlay-flow .hero-slide { min-height: 95vh; height: 95vh; }
    .hero-overlay-flow .hero-static-bg { min-height: 95vh; }
    .hero-text-compact .hero-title { font-size: 24px; max-width: 100%; }
    .hero-text-compact .hero-subtitle { font-size: 13px; max-width: 100%; }
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(15, 15, 30, 0.5) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-overlay-flow .hero-slide-content {
    min-height: auto;
}

.hero-slide-content .hero-title {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-slide-content .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.banner-title-stagger { animation: bannerTextIn 0.6s ease 0.2s both; }
.banner-subtitle-stagger { animation: bannerTextIn 0.6s ease 0.4s both; }
.banner-cta-stagger { animation: bannerTextIn 0.6s ease 0.6s both; }

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

.hero-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-main);
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: var(--transition);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Floating images on banner */
.banner-float-img {
    position: absolute;
    z-index: 1;
    border-radius: 12px;
    object-fit: cover;
    opacity: 0.85;
    pointer-events: none;
}

.float-pos-tl { top: 15%; left: 8%; width: 160px; height: 160px; }
.float-pos-tr { top: 12%; right: 10%; width: 140px; height: 140px; }
.float-pos-bl { bottom: 20%; left: 5%; width: 130px; height: 130px; }
.float-pos-br { bottom: 18%; right: 8%; width: 150px; height: 150px; }

@media (max-width: 768px) {
    .banner-float-img { width: 80px !important; height: 80px !important; }
    .float-pos-tl, .float-pos-tr, .float-pos-bl, .float-pos-br {
        width: 80px !important; height: 80px !important;
    }
}

.float-anim-1 { animation: floatDrift 6s ease-in-out infinite; }
.float-anim-2 { animation: floatDrift 8s ease-in-out infinite 1s; }
.float-anim-3 { animation: floatDrift 7s ease-in-out infinite 2s; }

@keyframes floatDrift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -8px); }
}

.hero-pagination { bottom: 30px !important; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.hero-pagination .swiper-pagination-bullet-active { background: #fff; }

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

.hero-static-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .container {
    width: 100%;
}

.hero-content {
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-text {
    margin-bottom: 50px;
}

.hero-title {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.1;
    overflow: hidden;
}

.word-slide {
    display: inline-block;
    animation: slideUp 0.6s ease backwards;
    color: orange;
}

.word-slide:nth-child(1) { animation-delay: 0.1s; }
.word-slide:nth-child(2) { animation-delay: 0.2s; }
.word-slide:nth-child(3) { animation-delay: 0.3s; }

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

.hero-title {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

/* Search Section */
.search-section {
    margin-bottom: 50px;
}

.search-container {
    animation: slideUp 0.8s ease 0.4s both;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.search-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--text-light);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 12px;
    margin-right: 2px;
}

.search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
}

.search-input::placeholder {
    color: #bbb;
}

.search-btn {
    background: var(--gradient-main);
    color: white;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 2px;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    animation: slideUp 0.8s ease 0.5s both;
}

.suggestion-tag {
    background: white;
    border: 2px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.suggestion-tag:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Info Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.info-card {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.8s ease backwards;
    border: solid 3px cadetblue;
}

.info-card:nth-child(1) { animation-delay: 0.5s; }
.info-card:nth-child(2) { animation-delay: 0.6s; }
.info-card:nth-child(3) { animation-delay: 0.7s; }

.card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.card-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.card-text p {
    font-size: 13px;
    color: var(--text-light);
}

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

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: scaleIn 0.6s ease backwards;
    animation-delay: var(--delay);
    border: solid 3px cadetblue;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 12px;
    animation: bounce 0.6s ease infinite;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-btn {
    width: 100%;
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.arrow {
    display: inline-block;
    transition: var(--transition);
}

.service-btn:hover .arrow {
    transform: translateX(3px);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: var(--delay);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: -1;
    transition: left 0.3s ease;
}

.category-card:hover::before {
    left: 0;
}

.category-card:hover {
    color: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    animation: rotate 0.6s ease infinite;
}

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

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

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

.category-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.category-count {
    font-size: 12px;
    opacity: 0.7;
}

.hover-arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(-50%) translateX(10px);
}

.category-card:hover .hover-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ============================================
   PROMO SECTION
   ============================================ */

.promo-section {
    padding: 60px 0;
    background: white;
}

.promo-banner {
    background: var(--gradient-main);
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

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

.promo-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.promo-btn {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-visual {
    position: relative;
    z-index: 2;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-shape {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: floatAnimation 4s ease-in-out infinite;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    animation: fadeInUp 0.6s ease backwards;
    animation-delay: var(--delay);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-secondary);
    color: white;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s ease infinite;
}

.feature-card:hover .feature-icon {
    animation: pulse 0.6s ease;
}

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

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 80px 0;
    background: var(--darker);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    animation: fadeInUp 0.6s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgb(106 137 12 / 80%);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--darker);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

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

.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: slideUp 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .search-wrapper {
        padding: 10px 16px;
        gap: 8px;
    }

    .search-input {
        font-size: 15px;
    }

    .search-btn {
        padding: 9px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .search-wrapper {
        padding: 8px 12px;
        gap: 6px;
    }

    .search-icon {
        padding-right: 8px;
    }

    .search-input {
        font-size: 14px;
        min-width: 0;
    }

    .search-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .services-grid,
    .categories-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .navbar .container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 18px;
    }
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

.service-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--gradient-secondary);
    color: white;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: var(--transition);
    margin-top: 25px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-header {
    margin-bottom: 40px;
}

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.service-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.service-search input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.service-listings {
    padding: 80px 0;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.business-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.business-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.business-card:hover .business-image img {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.business-info {
    padding: 20px;
}

.business-info h3 {
    margin-bottom: 8px;
}

.category {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.business-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.delivery-time,
.price-range {
    font-size: 13px;
    font-weight: 600;
}

.business-btn {
    width: 100%;
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.business-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */

.search-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 40px;
}

.search-title h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.result-count {
    font-size: 18px;
    opacity: 0.95;
}

.search-refine {
    margin-top: 30px;
}

.search-refine input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.chip.active {
    background: white;
    color: var(--primary);
}

.search-results {
    padding: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.back-home-btn {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
}

.back-home-btn:hover {
    transform: translateY(-3px);
}

/* ============================================
   LOGO IMAGE & NAV ACTIONS
   ============================================ */

.logo-img {
    display: block;
    height: 28px !important;
    max-height: 28px !important;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login-btn {
    padding: 8px 20px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-user-greeting {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.nav-settings-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-settings-btn:hover {
    background: rgba(0,0,0,0.05);
    color: var(--primary);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-user-dropdown:hover .nav-dropdown,
.nav-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.nav-dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

/* ============================================
   LOGIN MODAL - PROFESSIONAL STYLE
   ============================================ */

/* Flash toast for error/success messages */
.flash-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 12px 44px 12px 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: flashSlideIn 0.3s ease;
}
.flash-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}
.flash-toast .flash-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.8;
    padding: 4px;
    line-height: 1;
}
.flash-toast .flash-close:hover {
    opacity: 1;
}
@keyframes flashSlideIn {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.login-modal {
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 40px 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.login-modal-overlay.show .login-modal {
    transform: translateY(0) scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: background 0.2s, color 0.2s;
}

.login-modal-close:hover {
    background: #eee;
    color: #333;
}

.login-modal-header {
    margin-bottom: 28px;
}

.login-title,
.login-step h2 {
    margin: 0 0 6px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.login-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.login-form {
    display: block;
}

.login-field {
    margin-bottom: 20px;
}

.login-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
    color: #334155;
}

.login-field input,
.login-field select {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #1e293b;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-field input:hover,
.login-field select:hover {
    border-color: #cbd5e1;
}

.login-field input::placeholder {
    color: #94a3b8;
}

.login-field input:focus,
.login-field select:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.login-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.login-error {
    display: block;
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.login-submit-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin-top: 24px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.35);
}

.login-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-back-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 14px;
    background: transparent;
    color: #64748b;
    border: none;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s;
}

.login-back-btn:hover {
    color: #FF6B6B;
}

/* Social login buttons */
.social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.google-btn { color: #1f2937; }
.instagram-btn {
    color: #fff;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}
.instagram-btn:hover { opacity: 0.9; }

.login-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.login-divider span {
    background: #fff;
    padding: 0 12px;
    color: #94a3b8;
    font-size: 13px;
}

.login-switch-text {
    margin: 20px 0 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.login-switch-text a {
    color: #FF6B6B;
    font-weight: 600;
    text-decoration: none;
}

.login-switch-text a:hover {
    text-decoration: underline;
}

.login-step-hidden {
    display: none !important;
}

.login-step-hidden.show {
    display: block !important;
}

/* ============================================
   PROFILE PAGE
   ============================================ */

.profile-section {
    padding: 80px 0 60px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.profile-card h1 {
    margin-bottom: 30px;
    font-size: 28px;
}

.profile-card .form-group {
    margin-bottom: 20px;
}

.profile-card .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.profile-card .form-group input,
.profile-card .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
}

.profile-card .form-group input[readonly] {
    background: var(--light);
}

.profile-save-btn {
    padding: 14px 40px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.profile-save-btn:hover {
    transform: translateY(-2px);
}
