/* ============================================
   SKINVEST - Modern UI Design
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --color-primary: #248BA3;
    --color-primary-dark: #1a6e82;
    --color-primary-light: #3aa8bd;
    
    /* Neutral Colors */
    --color-gray: #989898;
    --color-medium-gray: #C1BBB2;
    --color-light-gray: #E9E5DF;
    --color-cream: #F6F1E7;
    --color-tan: #eadfd0;
    --color-brown: #7B5A3C;
    --color-dark: #1A2A32;
    
    /* Text Colors */
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #F6F1E7;
    --bg-dark: #1A2A32;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    --gradient-hero: linear-gradient(135deg, rgba(51, 51, 51, 0.9), rgba(26, 26, 46, 0.85));
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    
    /* Containers */
    --container-max: 1400px;
    --container-padding: 5%;
    
    /* Typography */
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-md: 18px;
    --font-size-lg: 24px;
    --font-size-xl: 32px;
    --font-size-2xl: 42px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.mt-sm{
    margin-top: var(--space-sm);
}
.mt-md{
    margin-top: var(--space-md);
}
.mt-lg{
    margin-top: var(--space-lg);
}
.mt-xl{
    margin-top: var(--space-xl);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* Section Spacing */
.section {
    padding: var(--space-3xl) var(--container-padding);
    overflow: hidden;
}

.section-sm {
    padding: var(--space-2xl) var(--container-padding);
}

.section-lg {
    padding: var(--space-3xl) var(--container-padding);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-subtitle {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: clamp(var(--font-size-xl), 4vw, var(--font-size-2xl));
    font-weight: 700;
    color: var(--color-brown);
    margin-bottom: var(--space-sm);
}

.section-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.padding-bottom-sm{
    padding: var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Video & Image Backgrounds */
.bg-video,
.header-about img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: zoom 20s ease-in-out infinite alternate;
}

.header-about {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.27);
    z-index: -1;
}

/* Social Icons */
.social_logo {
    position: absolute;
    top: 20px;
    right: 5%;
    display: flex;
    gap: 20px;
    z-index: 100;
    animation: fadeInRight 1s ease forwards;
}

.social_logo a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: var(--font-size-md);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social_logo a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.social-separator {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 3;
}

/* Logo */
.logo {
    position: absolute;
    top: 90px;
    left: 5%;
    z-index: 100;
    animation: fadeInLeft 1s ease forwards;
}

.logo img {
    max-width: 250px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Hero Info */
.hero-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-content: center;
    padding: var(--space-2xl);
}
.header-about .hero-info{
    padding: var(--space-3xl);
}
.hero-info.align-end{
    align-content: end;
}
.hero-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    max-width: 550px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    margin-bottom: var(--space-md);
}

.hero-info p {
    color: #fff;
    font-size: clamp(16px, 3vw, 20px);
    max-width: 550px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 90px;
    right: 5%;
    z-index: 50;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu > li > a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--color-primary);
}

/* Dropdown */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

.navbar .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    padding: 10px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    margin-top: 12px;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 24px;
    transition: background var(--transition-fast);
}

.dropdown-menu li a {
    color: var(--color-text-dark);
    font-size: var(--font-size-xs);
    display: block;
}

.dropdown-menu li:hover {
    background: var(--bg-light);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

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

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

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

/* Wave */
.wave-big {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    animation: waveMove 8s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background: var(--color-text-dark);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.slide.active img {
    transform: scale(1.15);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    color: #fff;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide.active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.slider-btn {
    display: inline-block;
    padding: 16px 42px;
    background: var(--color-primary);
    color: var(--bg-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(36, 139, 163, 0.4);
}

.slide.active .slider-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.slider-btn:hover {
    transform: translateY(-3px);
    background: var(--color-primary-dark);
    box-shadow: 0 8px 30px rgba(36, 139, 163, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 20;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.hero-slider:hover .slider-nav {
    opacity: 1;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-dark);
    font-size: var(--font-size-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.slider-nav button:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.dots-container {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--color-primary);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    background: var(--bg-cream);
    color: var(--color-text-dark);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 25;
    opacity: 0;
    transition: all var(--transition-normal);
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow.prev-btn { left: 30px; }
.slider-arrow.next-btn { right: 30px; }

.slider-arrow:hover {
    background: var(--color-primary);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Slider Hover Card */
.slider-hover-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 400px;
    max-width: 80%;
    background: var(--bg-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 25px 40px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 30;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.hero-slider:hover .slider-hover-card {
    transform: translateX(-50%) translateY(0);
}

.slider-hover-card .hover-card-link {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-brown);
}

.slider-hover-card .hover-card-link:hover {
    color: var(--color-primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-white);
    padding: var(--space-3xl) var(--container-padding);
}

.about-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-container.row{
    grid-template-columns: 1fr;
}
.about-content {
    text-align: center;
}

.about-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-brown);
    font-weight: 700;
    margin-top: var(--space-sm);
}

.about-text {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: var(--space-md);
}

.about-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--bg-light);
    padding: var(--space-3xl) var(--container-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.service-item {
    position: relative;
    height: 350px;
    border-radius: var(--radius-md);
    background-color: var(--color-tan);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.service-item:hover .service-overlay{
    height: 100%;
}

.service-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.service-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transform: translateY(100%);
    visibility: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-description {
    transform: translateY(0);
    visibility: visible;
}

.service-description h3 {
    color: var(--color-text-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.service-description p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    max-width: 260px;
}

.service-item:hover .service-description h3,.service-item:hover .service-description p  {
    color: #fff;
}
/* ============================================
   SUPPLIERS SECTION
   ============================================ */
.suppliers {
    background: var(--bg-white);
    padding: var(--space-2xl) var(--container-padding);
    overflow: hidden;
    position: relative;
}

.suppliers-slider {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
}

.suppliers-track {
    display: flex;
    gap: 40px;
    animation: scroll 35s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 4 - 160px)); }
}

.supplier-item {
    flex-shrink: 0;
    width: 220px;
    height: 110px;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
}

.supplier-item:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(36, 139, 163, 0.3);
}

.supplier-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.supplier-tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    white-space: nowrap;
    z-index: 10;
}

.supplier-item:hover .supplier-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

.suppliers-track:hover {
    animation-play-state: paused;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: var(--bg-light);
    padding: var(--space-3xl) var(--container-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    /* box-shadow: var(--shadow-sm); */
    transition: all var(--transition-normal);
}

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

.team-image {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: 0 5px 20px rgba(36, 139, 163, 0.3);
}

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

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 20px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background: var(--color-dark);
    color: white;
    padding: var(--space-3xl) var(--container-padding) var(--space-xl);
    padding-bottom: var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    margin-bottom: var(--space-xl);
}

.footer-info h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.contact-details {
    list-style: none;
    margin-top: var(--space-lg);
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
}

.contact-details i {
    width: 32px;
    color: var(--color-primary);
}

.footer-form h4 {
    font-size: 20px;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.btn-submit {
    background: var(--color-primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xs);
}

.form-message.success {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
    border: 1px solid #48bb78;
}

.form-message.error {
    background: rgba(245, 101, 101, 0.2);
    color: #f56565;
    border: 1px solid #f56565;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-xs);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 30px;
    color: #fff;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0 !important;
    transform: translateY(50px) !important;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
}

.fade-in.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   WHO WE ARE PAGE STYLES
   ============================================ */
.story-section {
    padding: var(--space-3xl) var(--container-padding);
   
}

.story-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-size: var(--font-size-xl);
    color: var(--color-brown);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: 15px;
}

.story-content p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.story-image {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Mission & Vision Section */
.mission-vision {
    background: var(--bg-light);
    padding: var(--space-3xl) var(--container-padding);
}

.mv-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.mv-card i {
    font-size: 250px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    position: absolute;
    /* width: 100%; */
    /* height: 100%; */
    opacity: .05;
    bottom: -60px;
    right: 0;
    z-index: -1;
}

.mv-card h3 {
    font-size: 28px;
    color: var(--color-brown);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.mv-card p {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Founder Section */
.founder-section {
    padding: var(--space-3xl) var(--container-padding);
    background: var(--bg-white);
}

.founder-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.founder-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: all 0.3s ease;
}

.founder-image:hover::before {
    top: 10px;
    left: 10px;
}

.founder-info h2 {
    font-size: var(--font-size-xl);
    color: var(--color-brown);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.founder-info h3 {
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.founder-info .title {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.founder-info p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.quote {
    font-style: italic;
    font-size: var(--font-size-md);
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-md);
    margin-top: var(--space-xl);
    background: rgba(36, 139, 163, 0.05);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.quote i {
    margin-right: 10px;
    font-size: var(--font-size-lg);
}

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

/* Tablet (max-width: 1200px) */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    /* Menu Toggle */
    .menu-toggle {
        display: flex;
        position: relative;
        top: auto;
        right: auto;
    }
    
    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding-top: 70px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        z-index: 99;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .nav-menu > li > a {
        color: var(--color-text-dark) !important;
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f5f5f5;
        margin-top: 0;
    }
    
    .navbar .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 12px 35px;
        color: #555 !important;
    }
    
    /* Mobile Social Icons */
    .mobile-social {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        padding: 25px 20px;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }
    
    .mobile-social a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #fff !important;
        font-size: 20px;
        transition: all 0.3s ease;
    }
    
    .mobile-social a:hover {
        background: #fff;
        color: var(--color-primary) !important;
        transform: translateY(-3px);
    }
    
    .navbar {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 100;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
    }
    
    /* Section Layouts */
    .about-container,
    .story-container,
    .mv-container,
    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content h2::after,
    .founder-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .story-content,
    .founder-info {
        text-align: center;
    }
    
    .quote {
        text-align: left;
    }
    
    .mv-card {
        padding: 30px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .logo {
        top: 75px;
    }
    
    .logo img {
        max-width: 180px;
        max-height: 80px;
    }
    
    .social_logo {
        top: 15px;
    }
    
    .social-separator {
        top: 60px;
    }
    
    .wave-big {
        height: 100px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-item {
        height: 320px;
    }
    
    .suppliers-track {
        gap: 25px;
    }
    
    .supplier-item {
        width: 180px;
        height: 90px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-member {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .hero-slider {
        height: 60vh;
    }
    
    .hero-title {
        font-size: var(--font-size-lg);
        max-width: 300px;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        height: 300px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .supplier-item {
        width: 150px;
        height: 80px;
    }
    
    .slider-hover-card {
        width: 90%;
        padding: var(--space-md);
    }
    
    .slider-hover-card .hover-card-link {
        font-size: 20px;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .section {
        padding: var(--space-2xl) var(--container-padding);
    }
}

/* Service Details Page Styles */
.service-info h3,
.service-benefits h3 {
    font-size: var(--font-size-lg);
    color: var(--color-brown);
    margin-bottom: var(--space-md);
}

.service-info ul {
    list-style: none;
}

.service-info li {
    margin-bottom: var(--space-sm);
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-benefits li i {
    color: var(--color-primary);
    font-size: 18px;
}

/* Book Now Button */
.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-sm);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustments for service details */
@media (max-width: 992px) {
    .service-info,
    .service-benefits {
        text-align: left;
    }
    
    .service-benefits li {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .service-benefits li {
        font-size: var(--font-size-sm);
    }
}

/* Services Page Additional Styles */
.service-item {
    cursor: pointer;
    position: relative;
    height: 350px;
    background-color: var(--color-tan);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: opacity var(--transition-normal);
}

.service-overlay h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.service-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.service-item:hover .service-description {
    transform: translateY(0);
}
.service-item:hover .service-overlay h3{
    display: none;
}
.service-description h3 {
    color: var(--color-text-dark);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 15px;
}

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

.service-description .btn-primary {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    transition: all var(--transition-normal);
    margin-top: 10px;
}

.service-description .btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Category section alternating backgrounds */
.story-section {
    background: var(--bg-white);
}

.mission-vision {
    background: var(--bg-light);
}

/* Icon styling for section subtitles */
.section-subtitle i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-description .btn-primary {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .service-description p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .service-description h3 {
        font-size: 18px;
    }
    
    .service-description p {
        font-size: 12px;
    }
}

 /* Tab Styles */
.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
}

.tab-btn:hover {
    color: #248BA3;
}

.tab-btn.active {
    color: #248BA3;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 3px;
    background: #248BA3;
    border-radius: 2px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    padding-bottom:  var(--container-padding);
    
}

.tab-content.active {
    display: block;
}

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

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header i {
    font-size: 48px;
    color: #248BA3;
    margin-bottom: 15px;
}

.category-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.category-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-item {
    cursor: pointer;
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .tab-btn.active::after {
        bottom: -12px;
    }
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.service-info ul li:last-child {
    border-bottom: none;
}

.service-info ul li i {
    width: 24px;
    color: #248BA3;
    font-size: 18px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits ul li {
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-benefits ul li i {
    color: #248BA3;
    font-size: 16px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #248BA3;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}



.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #248BA3;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

   /* Tab Styles */
.services-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
}

.tab-btn:hover {
    color: #248BA3;
}

.tab-btn.active {
    color: #248BA3;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 3px;
    background: #248BA3;
    border-radius: 2px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header i {
    font-size: 48px;
    color: #248BA3;
    margin-bottom: 15px;
}

.category-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.category-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.service-item {
    cursor: pointer;
}

.padding-bottom-sm {
    padding-bottom: 20px;
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .tab-btn.active::after {
        bottom: -12px;
    }
}

/* ============================================
   EMPTY STATES & NO RESULTS STYLES
   ============================================ */

/* Empty State Container */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-inline {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-white);
    border-radius: var(--radius-md);    margin: var(--space-lg) 0;
}

/* Empty State Icon */
.empty-state-icon {
    font-size: 80px;
    color: var(--color-light-gray);
    margin-bottom: var(--space-lg);
    opacity: 0.7;
}

.empty-state-icon i {
    font-size: 80px;
}

.empty-state-icon svg {
    width: 80px;
    height: 80px;
    fill: var(--color-light-gray);
}

/* Empty State Image */
.empty-state-image {
    max-width: 300px;
    margin: 0 auto var(--space-lg);
}

.empty-state-image img {
    width: 100%;
    height: auto;
    opacity: 0.6;
}

/* Empty State Title */
.empty-state-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.empty-state-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

/* Empty State Description */
.empty-state-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Empty State Actions */
.empty-state-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.empty-state-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.empty-state-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.empty-state-btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.empty-state-btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Empty State Variants */
.empty-state-sm {
    padding: var(--space-xl) var(--space-lg);
}

.empty-state-sm .empty-state-icon i {
    font-size: 48px;
}

.empty-state-sm .empty-state-title {
    font-size: var(--font-size-lg);
}

.empty-state-sm .empty-state-description {
    font-size: var(--font-size-xs);
}

.empty-state-lg {
    padding: var(--space-3xl) var(--space-2xl);
}

.empty-state-lg .empty-state-icon i {
    font-size: 100px;
}

.empty-state-lg .empty-state-title {
    font-size: var(--font-size-2xl);
}

/* No Results - Search */
.no-results {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.no-results-icon {
    font-size: 64px;
    color: var(--color-light-gray);
    margin-bottom: var(--space-md);
}

.no-results h3 {
    font-size: var(--font-size-lg);
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

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


/* Base Outline Button */
.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--color-primary, #248BA3);
    color: var(--color-primary, #248BA3);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--font-size-sm, 16px);
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal, 0.3s ease);
    line-height: 1.5;
}

.btn-outline:hover {
    background: var(--color-primary, #248BA3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md, 0 4px 20px rgba(0, 0, 0, 0.12));
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-outline:disabled,
.btn-outline.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.pb-0{
    padding-bottom: 0 !important;
}
.pt-0{
    padding-top: 0 !important;
}