:root {
    --primary-color: #4ca334;
    --secondary-color: #1a365d;
    --accent-color: #4299e1;
    --success-color: #4ca334;
    --warning-color: #5fc244;
    --light-bg: #f7fafc;
    --dark-text: #2d3748;
    --light-text: #718096;
}

*

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Fallback icons using Unicode symbols */
.icon-fallback-truck::before { content: "🚚"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-clock::before { content: "⏰"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-shield::before { content: "🛡️"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-phone::before { content: "📞"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-location::before { content: "📍"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-box::before { content: "📦"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-building::before { content: "🏢"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-food::before { content: "🍽️"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-home::before { content: "🏠"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-search::before { content: "🔍"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-headset::before { content: "🎧"; font-size: 1.2em; margin-right: 8px; }
.icon-fallback-check::before { content: "✅"; font-size: 1.2em; margin-right: 8px; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), #5fc244);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s ease-in-out ;
    box-shadow: 0 5px 15px rgb(80 169 55);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(93 190 66);
    background: linear-gradient(135deg, #5fc244, var(--primary-color));
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color), #2d3748);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    animation: slideInUp 1s ease 0.2s both;
}

.hero-features {
    margin: 2rem 0;
    animation: slideInUp 1s ease 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item .fas,
.feature-item .icon-fallback {
    color: #4CAF50;
    margin-right: 15px;
    font-size: 1.3rem;
    width: 20px;
    display: inline-block;
}

.hero-buttons {
    margin-top: 3rem;
    animation: slideInUp 1s ease 0.6s both;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 10px 15px 10px 0;
    transition: all 0.3s ease;
}

.btn-hero.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    border: 2px solid transparent;
}

.btn-hero.btn-light:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-hero.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Visual with CSS Icons */
.hero-visual {
    position: relative;
    animation: slideInRight 1s ease;
}


@keyframes driveIn {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(50px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #5cbe41);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgb(91 188 64);
    position: relative;
}


.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    margin-bottom: 2rem;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.step-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--light-text);
    line-height: 1.6;
}



/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--secondary-color), #2d3748);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    border-radius: 15px !important;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    border-radius: 15px !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 2rem;
    background: white;
    color: var(--light-text);
}

/* CTA Section */


.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}
.social-links {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
}

/* Style icon buttons */
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover effect */
.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Icon inside */
.social-links a i {
    font-size: 1.1rem;
    line-height: 1;
}


.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #4aa135;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #146c43;
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #146c43;
    --bs-btn-active-border-color: #13653f;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #198754;
    --bs-btn-disabled-border-color: #198754;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgb(75 162 53) !important;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional emoji fallbacks for better display */
.emoji-icon {
    display: inline-block;
    font-style: normal;
    font-size: 1.2em;
    margin-right: 8px;
    width: 42px;
}

/* Contact info icons */
.contact-info p::before {
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease;
}

.delivery-animation {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-truck, .delivery-package, .delivery-location {
    position: absolute;
    font-size: 4rem;
    animation-iteration-count: infinite;
}

.delivery-truck {
    bottom: 100px;
    left: -50px;
    color: #ff6b35;
    animation: driveIn 3s ease-in-out infinite;
}


.delivery-package {
    top: 20%;
    right: 15%;
    color: #4CAF50;
    animation: bounce 3s ease-in-out infinite;
    font-size: 3.5rem;
}
.delivery-package::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background-image: url('https://deliverers.ge/logo/Logo3.svg');
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 5px 15px rgba(76,175,80,0.4));
}

.delivery-animation {
    width: 100%;
    max-width: 570px;
    height: 450px;
    position: relative;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.delivery-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.delivery-animation::after {
    content: '';
    background-image: url(https://mediator.com.ge/storage/gallery_images/eQmvBOoOql3loigeVGeEWB9VBHc1CDK7kzMAOUyT.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;    content: '';
    background-image: url(https://mediator.com.ge/storage/gallery_images/eQmvBOoOql3loigeVGeEWB9VBHc1CDK7kzMAOUyT.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    width: 100%;
    height: 100%;
}

.delivery-truck, .delivery-package, .delivery-location, .delivery-clock, .delivery-shield, .delivery-phone {
    position: absolute;
    animation-iteration-count: infinite;
    z-index: 2;
}

.delivery-truck {
    bottom: 80px;
    left: 20px;
    color: #ff6b35;
    animation: driveIn 4s ease-in-out infinite;
    font-size: 4rem;
}

.delivery-truck::before {
    content: "📦";
    background-repeat: no-repeat;
    background-position: 100% 100%;
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 5px 15px rgba(255,107,53,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}


.delivery-location {
    bottom: 40px;
    right: 30px;
    color: #2196F3;
    animation: pulse 2.5s ease-in-out infinite;
    font-size: 3rem;
}

.delivery-location::before {
    content: "📍";
    filter: drop-shadow(0 5px 15px rgba(33,150,243,0.4));
}

.delivery-clock {
    top: 15%;
    left: 15%;
    color: #FF9800;
    animation: tick 2s ease-in-out infinite;
    font-size: 2.5rem;
}

.delivery-clock::before {
    content: "⏰";
    filter: drop-shadow(0 5px 15px rgba(255,152,0,0.4));
}

.delivery-shield {
    top: 60%;
    left: 10%;
    color: #9C27B0;
    animation: shield 3.5s ease-in-out infinite;
    font-size: 2.8rem;
}

.delivery-shield::before {
    content: "🛡️";
    filter: drop-shadow(0 5px 15px rgba(156,39,176,0.4));
}

.delivery-phone {
    top: 45%;
    right: 5%;
    color: #E91E63;
    animation: ring 2.8s ease-in-out infinite;
    font-size: 2.5rem;
}

.delivery-phone::before {
    content: "📞";
    filter: drop-shadow(0 5px 15px rgba(233,30,99,0.4));
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.floating-dot:nth-child(2) { top: 80%; left: 80%; animation-delay: 2s; }
.floating-dot:nth-child(3) { top: 30%; left: 70%; animation-delay: 4s; }
.floating-dot:nth-child(4) { top: 70%; left: 10%; animation-delay: 1s; }
.floating-dot:nth-child(5) { top: 50%; left: 90%; animation-delay: 3s; }

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes driveIn {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(30px) rotate(-2deg); }
    50% { transform: translateX(60px) rotate(0deg); }
    75% { transform: translateX(30px) rotate(2deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-5deg); }
    50% { transform: translateY(-30px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes tick {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1.2); }
    75% { transform: rotate(10deg) scale(1.1); }
}

@keyframes shield {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(5deg) scale(1.1); }
    66% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg) scale(1.1); }
    20%, 40%, 60%, 80% { transform: rotate(10deg) scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) opacity(0.7); }
    50% { transform: translateY(-20px) opacity(1); }
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #2d3748);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}
.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
/* Services Grid */
.services-detail {
    padding: 100px 0;
    background: white;
}
.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #5fc244);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #5cbe41);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(91, 188, 64, 0.3);
}
.service-detail-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.service-detail-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #3ca342;
}
.feature-list li:last-child {
    border-bottom: none;
}
/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--light-bg);
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.section-title p {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}
.pricing-card.popular::before {
    content: 'ყველაზე პოპულარული';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.pricing-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.pricing-period {
    color: var(--light-text);
    margin-bottom: 2rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.pricing-features li {
    padding: 10px 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li span i {
    color: #3ca342;
}
/* CTA Section */
.cta {
    background: linear-gradient(135deg, #3ca342 0%, #0d5f2c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.btn-cta {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 10px 15px 10px 0;
    transition: all 0.3s ease;
}
.btn-cta.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    border: 2px solid transparent;
}
.btn-cta.btn-light:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}
/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}
.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 6rem;
    }

    .services .container .col-lg-4 {
        margin-bottom: 2rem;
    }

    .hero {
        padding-bottom: 2rem;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
    .service-detail-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    .pricing-card.popular {
        transform: none;
        margin-top: 2rem;
    }
    .btn-cta {
        display: block;
        margin: 10px 0;
    }
}
/* Contact info icons */
.contact-info p::before {
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-hero {
        display: block;
        margin: 10px 0;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .delivery-animation {
        height: 250px;
    }

    .delivery-truck::before,
    .delivery-package::before,
    .delivery-location::before {
        font-size: 2.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}


        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--secondary-color), #2d3748);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .page-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        /* About Content */
        .about-intro {
            padding: 100px 0;
            background: white;
        }
        .about-intro-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .about-intro h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }
        .about-intro p {
            font-size: 1.2rem;
            color: var(--light-text);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        /* Our Story */
        .our-story {
            padding: 100px 0;
            background: var(--light-bg);
        }
        .story-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), #5fc244);
        }
        .story-year {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .story-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .story-description {
            color: var(--light-text);
            line-height: 1.8;
        }
        /* Values Section */
        .values {
            padding: 100px 0;
            background: white;
        }
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .section-title p {
            font-size: 1.2rem;
            color: var(--light-text);
            max-width: 600px;
            margin: 0 auto;
        }
        .value-card {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
        }
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #5cbe41);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(91, 188, 64, 0.3);
        }
        .value-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .value-card p {
            color: var(--light-text);
            line-height: 1.7;
        }
        /* Team Section */
        .team {
            padding: 100px 0;
            background: var(--light-bg);
        }
        .team-member {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        .team-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), #5fc244);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 3rem;
            color: white;
            box-shadow: 0 10px 30px rgba(91, 188, 64, 0.3);
        }
        .team-member h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        .team-role {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 1rem;
        }
        .team-member p {
            color: var(--light-text);
            line-height: 1.6;
        }
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--secondary-color), #2d3748);
            color: white;
            padding: 80px 0;
        }
        .stat-item {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        /* CTA Section */
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .cta-content {
            position: relative;
            z-index: 2;
        }
        .cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-cta {
            padding: 15px 35px;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            margin: 10px 15px 10px 0;
            transition: all 0.3s ease;
        }
        .btn-cta.btn-light {
            background: rgba(255, 255, 255, 0.9);
            color: var(--secondary-color);
            border: 2px solid transparent;
        }
        .btn-cta.btn-light:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }
        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--primary-color);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animations */
        .fade-in {
            opacity: 1 !important;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .service-card:hover {
                transform: translateY(0px) !important;
            }

            .services {
                padding-bottom: 2rem;
            }

            .how-it-works {
                padding-bottom: 2rem;
            }

            .services-detailed .col-md-4 {
                margin-bottom: 2rem;
            }

            .how-it-works .col-lg-3 {
                margin-bottom: 2rem;
            }
            .about-intro h2 {
                font-size: 2rem;
            }
            .story-card {
                padding: 2rem;
            }
            .story-year {
                font-size: 2.5rem;
            }
            .team-member {
                margin-bottom: 2rem;
            }
            .btn-cta {
                display: block;
                margin: 10px 0;
            }
        }
        /* Contact info icons */
        .contact-info p::before {
            margin-right: 10px;
            width: 20px;
            display: inline-block;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--secondary-color), #2d3748);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .page-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #5cbe41);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2rem;
            box-shadow: 0 10px 30px rgba(91, 188, 64, 0.3);
        }
        .contact-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .contact-card p {
            color: var(--light-text);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        .contact-card .contact-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .contact-card .contact-link:hover {
            color: var(--secondary-color);
        }
        /* Contact Form */
        .contact-form-section {
            padding: 100px 0;
            background: var(--light-bg);
        }
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .section-title p {
            font-size: 1.2rem;
            color: var(--light-text);
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 2rem;
        }
        .form-group label {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            display: block;
        }
        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8fafc;
        }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(76, 163, 52, 0.1);
            background: white;
        }
        .form-control::placeholder {
            color: #a0aec0;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-color), #5fc244);
            border: none;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(80, 169, 55, 0.3);
        }
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(93, 190, 66, 0.4);
            background: linear-gradient(135deg, #5fc244, var(--primary-color));
        }
        /* Map Section */
        .map-section {
            padding: 100px 0;
            background: white;
        }
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: 400px;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .map-placeholder {
            text-align: center;
            color: var(--light-text);
        }
        .map-placeholder .map-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        /* Working Hours */
        .working-hours {
            padding: 100px 0;
            background: var(--light-bg);
        }
        .hours-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            text-align: center;
        }
        .hours-card .icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }
        .hours-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }
        .hours-list {
            list-style: none;
            padding: 0;
        }
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e2e8f0;
            font-weight: 500;
        }
        .hours-list li:last-child {
            border-bottom: none;
        }
        .hours-list .day {
            color: var(--secondary-color);
        }
        .hours-list .time {
            color: var(--primary-color);
            font-weight: 600;
        }
        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }
        .footer h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--primary-color);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            .contact-form {
                padding: 2rem;
                margin: 0 1rem;
            }
            .contact-card {
                margin-bottom: 2rem;
            }
            .hours-card {
                padding: 2rem;
            }
            .map-container {
                height: 300px;
            }
        }


        .btn-gradient {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
            color: white;
        }

        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #2f3445 0%, #1a1f2e 100%);
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::after  {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            opacity: 0.1;
            top: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            color: white;
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
        }

        .feature-cards-row {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .mini-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
            flex: 1;
            min-width: 200px;
        }

        .mini-card:hover {
            transform: translateY(-10px);
        }

        .hero-image {
            position: relative;
            z-index: 2;
        }

        .dashboard-preview {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
            transform: rotateY(-15deg) rotateX(10deg);
            transition: transform 0.3s;
        }

        .dashboard-preview:hover {
            transform: rotateY(-10deg) rotateX(5deg);
        }

        .preview-header {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .task-columns {
            display: flex;
            gap: 1rem;
        }

        .task-column {
            flex: 1;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1rem;
        }

        .task-card {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 0.5rem;
            border-left: 4px solid #4ecdc4;
            font-size: 0.9rem;
            transition: transform 0.2s;
        }

        .task-card:hover {
            transform: scale(1.02);
        }

        .task-card:nth-child(2) {
            border-left-color: #ff6b6b;
        }

        .task-card:nth-child(3) {
            border-left-color: #667eea;
        }

        .features-grid {
            padding: 120px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #2f3445;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.3rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
        }

        .feature-card:hover {
            border-color: #4ecdc4;
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
        }

        .feature-icon-circle {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #2f3445, #3d4a5e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 20px 40px rgba(47, 52, 69, 0.3);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            color: #2f3445;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .workflow-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .step-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s;
            height: 100%;
        }

        .step-card:hover {
            transform: scale(1.05);
        }

        .step-number {
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #5fc244);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 2rem;
        }

        .testimonials-section {
            padding: 120px 0;
            background: #2f3445;
            color: white;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.3rem;
        }

        .pricing-section {
            padding: 120px 0;
            background: white;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .pricing-card.featured {
            border-color: #4ecdc4;
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(78, 205, 196, 0.2);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: #2f3445;
            margin: 1rem 0;
        }

        .price-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .price-features li {
            padding: 0.5rem 0;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .price-features li::before {
            content: '✓';
            color: #4ecdc4;
            font-weight: bold;
        }

        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 0;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-light-custom {
            background: white;
            color: #2f3445;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .btn-outline-custom {
            background: transparent;
            color: white;
            padding: 1.2rem 3rem;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-light-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
            color: #2f3445;
        }

        .btn-outline-custom:hover {
            background: white;
            color: #2f3445;
        }

        .footer {
            background: #2f3445;
            color: white;
            padding: 80px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h5 {
            color: #4ecdc4;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #4ecdc4;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .btn-hero.btn-light {
                width: 100%;
            }
            .btn-hero.btn-outline-light {
                width: 100%;
            }

            .feature-cards-row {
                flex-direction: column;
            }

            .dashboard-preview {
                transform: none;
                margin-top: 3rem;
            }

            .task-columns {
                flex-direction: column;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .btn-booking {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 25px;
            border-radius: 5px;
            font-weight: 600;
        }

        .user-info {
            color: #666;
            font-size: 14px;
            margin-left: 20px;
        }

        .hero-section-new {
            background: linear-gradient(135deg, var(--primary-color), #5fc244);
            padding: 120px 0 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section-new::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url('https://mediator.com.ge/storage/gallery_images/eQmvBOoOql3loigeVGeEWB9VBHc1CDK7kzMAOUyT.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            top: 0;
            left: 0;
        }

        .hero-section-new h1 {
            font-size: 4rem;
            font-weight: 800;
            position: relative;
            z-index: 2;
            letter-spacing: 2px;
        }

        .payment-container {
            max-width: 600px;
            margin: -50px auto 80px;
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }

        .payment-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #333;
        }

        .payment-options {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .payment-option {
            display: flex;
            align-items: center;
            padding: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .payment-option:hover {
            border-color: var(--primary-color);
            background: #f8fff5;
        }

        .payment-option input[type="radio"] {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            accent-color: var(--primary-color);
            cursor: pointer;
        }

        .payment-option label {
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            margin: 0;
            color: #333;
        }

        .btn-submit {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: 600;
            width: 100%;
            margin-top: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: #3d8a28;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 163, 52, 0.3);
        }

        @media (max-width: 768px) {
            .hero-section-new h1 {
                font-size: 2.5rem;
            }

            .payment-container {
                margin: -30px 20px 50px;
                padding: 30px 20px;
            }

            .user-info {
                margin-left: 0;
                margin-top: 10px;
            }
        }


.btn-booking {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 25px;
            border-radius: 5px;
            font-weight: 600;
        }

        .main-content {
            padding: 100px 0 50px;
        }

        .booking-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            color: #333;
        }

        .booking-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .form-section-new {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .form-group-new {
            margin-bottom: 20px;
        }

        .form-group-new label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .required {
            color: red;
        }

        .form-control-new {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }

        textarea.form-control-new {
            min-height: 80px;
            resize: vertical;
        }

        .button-row-new {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .btn-excel {
            background: #dc3545;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-bulk {
            background: #17a2b8;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-submit-new {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-weight: 600;
            width: 100%;
            margin-top: 20px;
            cursor: pointer;
            font-size: 16px;
        }

        .map-section {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .map-controls {
            background: #f8f9fa;
            padding: 15px;
            display: flex;
            gap: 10px;
        }

        .map-btn {
            padding: 8px 15px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }



        .map-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .info-box {
            text-align: center;
        }

        .info-label {
            font-size: 14px;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .info-value {
            font-size: 28px;
            font-weight: 700;
        }

        @media (max-width: 992px) {
            .booking-row {
                grid-template-columns: 1fr;
            }

            .button-row-new {
                flex-direction: column;
            }

            .map-container {
                height: 350px;
            }
        }

        .payment-container {
		max-width: 650px;
		background: #fff;
		margin: 120px auto 60px;
		padding: 35px;
		border-radius: 15px;
		box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.08);
		text-align: center;
	}

	.payment-title {
		font-size: 26px;
		font-weight: 700;
		margin-bottom: 25px;
	}

	.payment-options-modern {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		justify-content: center;
	}

	.payment-box {
		border: 2px solid #e5e5e5;
		background: #fff;
		width: 220px;
		padding: 18px;
		border-radius: 12px;
		cursor: pointer;
		transition: 0.3s;
		text-align: center;
		position: relative;
	}

	.payment-box input {
		display: none;
	}

	.payment-box .icon {
		font-size: 32px;
		display: block;
		margin-bottom: 8px;
		color: #4ba235;
	}

	.payment-box span {
		display: block;
		font-weight: 600;
		color: #333;
	}

	.payment-box.selected {
		border-color: #4ba235;
		box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
	}

	.cash-info-box {
		display: none;
		margin-top: 10px;
		padding: 12px;
		background: #fff6f1;
		border: 1px solid #4ba235;
		border-radius: 8px;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}

	.btn-submit {
		margin-top: 25px;
		background: #4ba235;
		color: white;
		border: none;
		padding: 12px 30px;
		border-radius: 8px;
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		transition: 0.3s;
	}

	.btn-submit:hover {
		background: #4ba235;
	}


.track-list {
    list-style:none;
    padding:0;
    display:flex;
    justify-content:space-between;
}

.track-list li {
    flex:1;
    text-align:center;
    font-size:14px;
    color:#888;
    position:relative;
}

.track-list li::before {
    content:"";
    width:25px;
    height:25px;
    border:3px solid #d1d1d1;
    border-radius:50%;
    display:block;
    margin:0 auto 8px;
    background:#f2f2f2;
}

.track-list li.active {
    color:#2e7d32;
    font-weight:bold;
}

.track-list li.active::before {
    border-color:#2e7d32;
    background:#2e7d32;
}

.track-list li:after {
    content:"";
    height:3px;
    background:#d1d1d1;
    position:absolute;
    top:12px;
    left:50%;
    width:100%;
    z-index:-1;
}

.track-list li:last-child:after {
    display:none;
}

.login-modal .nav-tabs .nav-link {
	background: #f1f1f1;
	color: #555;
	border: none;
	font-weight: 600;
	padding: 10px 25px;
}

.login-modal .nav-tabs .nav-link.active {
	background: #4ca334;
	color: #fff;
}

.login-modal .form-control-lg {
	border-radius: 10px;
	height: 48px;
	font-size: 17px;
}

.login-modal .modal-content {
	padding-bottom: 20px;
}


.dataTables_wrapper .dataTables_paginate .page-item.active .page-link {
    background-color: #198754 !important;   /* green */
    border-color: #198754 !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .page-item:not(.active) .page-link:hover {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: #fff !important;
}


table.dataTable tbody tr:hover {
    background-color: #f8f9fa !important;
}

table.dataTable thead th {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}


#dtBasicExample thead th {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Reduce excessive row height */
#dtBasicExample tbody td {
    vertical-align: middle;
    padding: 8px;
}

/* Hover effect for row */
#dtBasicExample tbody tr:hover {
    background-color: #f8f9fa !important;
}

/* Make barcode image smaller so row height stays normal */
.barcode {
    max-height: 60px;
}

 .page-header-custom {
        background: #eef3ee;
        padding: 60px 0 30px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .page-header-custom h2 {
        color: #1e4d2b;
        font-weight: 800;
        margin-bottom: 0;
    }

    .info-card {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
        margin-bottom: 25px;
    }

    .info-card h5 {
        font-weight: 700;
        color: #1e4d2b;
    }

    .table thead th {
        background: #1e4d2b;
        color: #fff;
        text-align: center;
    }

    td {
        text-align: center;
    }

    .badge-status {
        padding: 6px 12px;
        border-radius: 8px;
        font-weight: 600;
    }

    .barcode-img {
        border: 1px solid #ddd;
        background: #fff;
        padding: 4px;
        border-radius: 5px;
    }
   