/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgba(241, 94, 35, 0.9);
    --primary-color-solid: rgb(241, 94, 35);
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --light-bg: #f9f9f9;
    --transition: all 0.3s ease;
}

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

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

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

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    gap: 10px;
}

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

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.btn-primary {
    background: linear-gradient(90deg, #F15E23 60%, #ff8f59 100%);
    color: #fff !important;
    border-radius: 12px;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(241,94,35,0.10);
    border: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-left: 18px;
    letter-spacing: 0.2px;
    display: inline-block;
}

.nav-links a.btn-primary:hover {
    background: linear-gradient(90deg, #d94e1a 60%, #ff8f59 100%);
    color: #fff !important;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px rgba(241,94,35,0.18);
    filter: brightness(1.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.05;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

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

.feature-card {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(241, 94, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Services Section */
.main-services {
    padding: 80px 0;
    background: #fff;
}

.main-services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.main-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex: 1;
}

.main-service-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(241, 94, 35, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    gap: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(241, 94, 35, 0.1), rgba(255, 143, 107, 0.1));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    opacity: 0;
    transform: skewX(-15deg);
}

.main-service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 94, 35, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.main-service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(241, 94, 35, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(145deg, #ffffff, #fff5f2);
}

.main-service-item:hover::before {
    left: 0;
    opacity: 1;
}

.main-service-item:hover::after {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
}

.main-service-item i {
    font-size: 24px;
    color: #F15E23;
    display: block;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-service-item:hover i {
    color: var(--primary-color);
    transform: scale(1.2) rotate(360deg);
    text-shadow: 0 0 15px rgba(241, 94, 35, 0.3);
}

.main-service-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: block;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-service-item:hover span {
    color: var(--primary-color);
    transform: scale(1.05);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.main-service-card {
    flex: 1;
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* AI Chat Container in Services */
.ai-chat-container {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 0 auto;
    max-width: 380px;
}

.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(241, 94, 35, 0.1);
}

.ai-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F15E23, #ff8f59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-avatar i {
    color: white;
    font-size: 20px;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* Mobile App Section */
.mobile-app {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8f6b 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pattern.png');
    opacity: 0.1;
    animation: moveBackground 20s linear infinite;
}

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

.app-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.app-text h2 {
    font-size: 3rem;
    color: var(--white);
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.2;
}

.app-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.app-features {
    list-style: none;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.app-features li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-features li i {
    font-size: 1.5rem;
    color: var(--white);
}

.app-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.app-store, .play-store {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.13);
    border: none;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    width: 100%;
    min-width: 0;
}

.app-store:hover, .play-store:hover {
    background: rgba(255,255,255,0.22);
    color: #F15E23;
    transform: translateY(-2px) scale(1.03);
}

.app-store i, .play-store i {
    font-size: 1.5rem;
}

@media (max-width: 700px) {
    .app-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .app-store, .play-store {
        font-size: 1rem;
        padding: 15px 0;
    }
}

.app-image {
    position: relative;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Remove phone frame styles */
.app-image::before,
.app-image::after {
    display: none;
}

@media (max-width: 992px) {
    .app-image {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .app-image {
        max-width: 220px;
    }
    
    .app-image img {
        border-radius: 12px;
    }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff8f6b 100%);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box:hover::before {
    height: 100%;
    opacity: 0.1;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}

.stat-box:hover i {
    transform: scale(1.1);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: var(--transition);
    position: relative;
}

.stat-box h3::after {
    content: '+';
    font-size: 2rem;
    position: relative;
    top: -10px;
    margin-left: 5px;
}

.stat-box p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pattern.png');
    opacity: 0.05;
    z-index: 1;
}

.partners h2 {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.partner-logo {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), #ff8f6b);
    transition: all 0.4s ease;
    opacity: 0;
}

.partner-logo:hover {
    transform: translateY(-10px);
    border-color: rgba(241, 94, 35, 0.1);
}

.partner-logo:hover::before {
    opacity: 1;
    width: 100%;
    background: linear-gradient(45deg, rgba(241, 94, 35, 0.05), rgba(255, 143, 107, 0.05));
}

.partner-logo img {
    width: auto;
    height: 70px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    filter: grayscale(100%) opacity(0.7);
    object-fit: contain;
}

/* Specific logo size adjustments */
.partner-logo:nth-child(2) img {  /* TP logo */
    height: 100px;
}

.partner-logo:nth-child(4) img {  /* Alpet logo */
    height: 100px;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-info {
    width: 100%;
}

.partner-info h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.partner-info p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.partner-info .highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background-color: var(--white);
}

.map-section .container {
    max-width: 1400px;
}

.map-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.map-section p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.map-filters {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-group h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group h3::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.filter-group:first-child h3::before {
    content: "\f3cd";
    color: #F15E23;
}

.filter-group:last-child h3::before {
    content: "\f52f";
    color: #F15E23;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid rgba(241, 94, 35, 0.1);
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-options label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(241, 94, 35, 0.1) 0%, rgba(241, 94, 35, 0.05) 100%);
    transition: all 0.3s ease;
}

.filter-options label:hover {
    transform: translateX(5px);
    border-color: rgba(241, 94, 35, 0.3);
}

.filter-options label:hover::before {
    left: 0;
}

.filter-options input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(241, 94, 35, 0.3);
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-options input[type="checkbox"]:checked {
    background: #F15E23;
    border-color: #F15E23;
}

.filter-options input[type="checkbox"]:checked::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-options label:has(input[type="checkbox"]:checked) {
    background: rgba(241, 94, 35, 0.05);
    border-color: #F15E23;
    transform: translateX(5px);
}

#map {
    height: 600px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.info-content h4 {
    font-size: 16px;
    color: #2d3436;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-content p {
    color: #636e72;
    font-size: 15px;
    margin: 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    color: #2d3436;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(241, 94, 35, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b2bec3;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 94, 35, 0.2);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .info-item {
        padding: 15px 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #F15E23 0%, #ff8f59 100%);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F15E23 0%, #ff8f59 100%);
    opacity: 0.9;
    z-index: 1;
}

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

.footer-info {
    max-width: 400px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F15E23;
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before,
.footer-services a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #F15E23;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.footer-links a:hover,
.footer-services a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact li i {
    color: #F15E23;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(241, 94, 35, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F15E23;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F15E23;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    color: #fff;
}

.footer-bottom {
    background: #F15E23;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #F15E23;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    filter: none;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-info .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before,
    .footer-services a::before {
        display: none;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .app-image {
        text-align: center;
    }

    .map-filters {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-options {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        padding: 120px 0 80px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-service-item {
        padding: 20px 10px;
        min-height: 100px;
    }

    .mobile-app {
        padding: 80px 0;
    }

    .app-text h2 {
        font-size: 2rem;
    }

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

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store, .play-store {
        width: 100%;
        justify-content: center;
    }

    .app-image img {
        max-width: 180px;
    }

    .partner-logo img {
        height: 50px;
    }
    
    .partner-logo:nth-child(2) img,
    .partner-logo:nth-child(4) img {
        height: 65px;
    }

    .contact-form {
        padding: 30px;
    }
    
    .info-item {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding-left: 32px;
    }
    
    .form-group i {
        left: 10px;
        font-size: 14px;
    }

    .map-section {
        padding: 60px 0;
    }
    
    .filter-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #map {
        height: 400px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

    .main-service-item {
        padding: 30px 20px;
    }

    .stat-box h3 {
        font-size: 2rem;
    }
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .main-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .app-text h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    .app-features {
        justify-content: center;
    }

    .app-buttons {
        justify-content: center;
    }
}

/* Responsive Design for Stats */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .stat-box h3 {
        font-size: 2.5rem;
    }

    .stat-box i {
        font-size: 2rem;
    }
}

/* Responsive Design for Partners */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .partner-logo {
        padding: 35px 25px;
    }

    .partner-logo img {
        height: 60px;
    }
    
    .partner-logo:nth-child(2) img,
    .partner-logo:nth-child(4) img {
        height: 85px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partner-logo {
        padding: 30px 20px;
    }

    .partner-logo img {
        height: 55px;
        margin-bottom: 25px;
    }
    
    .partner-logo:nth-child(2) img,
    .partner-logo:nth-child(4) img {
        height: 75px;
    }
    
    .partner-info h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .partner-info p {
        font-size: 1rem;
    }

    .partner-info .highlight {
        font-size: 1.1rem;
    }
} 



/* Modern Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.chat-icon {
    width: 54px;
    height: 54px;
    border-radius: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.ai-chat-icon {
    background: var(--primary-color);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.chat-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.notification-bubble {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notification-bubble.show {
    opacity: 1;
    transform: scale(1);
}

.chat-window {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 360px;
    height: 580px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.3, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-window.show {
    display: flex;
    animation: windowOpen 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-window.hide {
    animation: windowClose 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 15%, 
        rgba(255, 255, 255, 0.2) 85%, 
        transparent 100%);
}

.close-chat {
    cursor: pointer;
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-chat:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    height: calc(100% - 140px);
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    margin-bottom: 8px;
}

.message.bot {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(241, 94, 35, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: var(--text-color);
}

.message.user {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.chat-input-container {
    padding: 12px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.chat-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(241, 94, 35, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    line-height: 1.5;
    min-height: 24px;
    max-height: 72px;
    padding: 4px 0;
    resize: none;
    outline: none;
    font-family: inherit;
    color: var(--text-color);
}

.chat-input::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.chat-send-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    background: var(--primary-color-solid);
    transform: scale(1.05);
}

.chat-send-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transform: translateX(1px);
}

.typing-indicator {
    display: none;
    padding: 12px 16px;
    background: #fff;
    border-radius: 16px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.typing-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Welcome Message Styles */
.welcome-message {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    padding: 20px !important;
    max-width: 100% !important;
}

.ai-welcome-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 8px;
    background: rgba(241, 94, 35, 0.03);
    border-radius: 12px;
}

.ai-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ai-icon.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(241, 94, 35, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ai-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.ai-stats {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 32px;
}

.stats-bar {
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: statsMove 1.5s infinite;
}

.stats-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.stats-bar:nth-child(2) { height: 80%; animation-delay: 0.2s; }
.stats-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }

.ai-circles {
    display: flex;
    gap: 4px;
}

.ai-circles span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: fade 1s infinite;
}

.ai-circles span:nth-child(1) { animation-delay: 0s; }
.ai-circles span:nth-child(2) { animation-delay: 0.2s; }
.ai-circles span:nth-child(3) { animation-delay: 0.4s; }

.welcome-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

.ai-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.capability {
    background: rgba(241, 94, 35, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.capability i {
    color: var(--primary-color);
}

.help-text {
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@keyframes statsMove {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.6);
    }
}

@keyframes fade {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes windowOpen {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes windowClose {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
}

/* Scrollbar Styling */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cfd4da;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

/* UTTS Applications Section */
.utts-applications {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 30px;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.application-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(241, 94, 35, 0.1);
    display: flex;
    flex-direction: column;
    height: 380px;
}

.application-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.application-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.application-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0 0 10px 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.application-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.button-container {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
}

.application-card .btn-primary {
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 120px;
    max-width: 160px;
}

.application-card .btn-primary:hover {
    background-color: var(--primary-color-solid);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 94, 35, 0.2);
}

/* Responsive Design for UTTS Applications */
@media (max-width: 1400px) {
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
        padding: 0 20px;
    }
    
    .application-card {
        height: auto;
        min-height: 320px;
    }

    .application-card .card-image {
        height: 180px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-services-container {
        flex-direction: column;
    }

    .main-service-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-service-item {
        padding: 20px 10px;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .main-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .main-service-item {
        padding: 15px 8px;
        min-height: 90px;
    }
    
    .main-service-item i {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .main-service-item span {
        font-size: 12px;
    }
}

.filters-container {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.filter-section {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section h3 i {
    color: #F15E23;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
}

.filter-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-item i {
    font-size: 18px;
    color: #1a237e;
    transition: color 0.3s ease;
}

.filter-item span {
    font-size: 11px;
    color: #333;
    text-align: center;
}

.filter-item:hover {
    transform: translateX(5px);
    border-color: #F15E23;
    background: rgba(241, 94, 35, 0.05);
}

.filter-item:hover i {
    color: #F15E23;
}

@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
    }
    
    .filter-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .filter-item {
        padding: 10px;
    }
    
    .filter-item i {
        font-size: 16px;
    }
    
    .filter-item span {
        font-size: 10px;
    }
}

/* Application Form Popup Styles */
.application-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
}

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

.popup-header {
    padding: 20px;
    border-bottom: 1px solid rgba(241, 94, 35, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #F15E23, #ff8f59);
    color: white;
    border-radius: 20px 20px 0 0;
}

.popup-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-title h2 {
    margin: 0;
    font-size: 1.5rem;
}

.popup-title i {
    font-size: 1.8rem;
}

.close-popup {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.close-popup:hover {
    transform: scale(1.1);
}

.popup-body {
    padding: 20px;
}

.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(241, 94, 35, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 10px;
}

.step i {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.step span {
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s;
}

.step.active i {
    background: #F15E23;
    color: white;
}

.step.active span {
    color: #F15E23;
    font-weight: 600;
}

.step.completed i {
    background: #4CAF50;
    color: white;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group label i {
    color: #F15E23;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(241, 94, 35, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: #F15E23;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241, 94, 35, 0.1);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 10px;
}

.form-navigation button {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: #F15E23;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #d54e1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: none;
}

.btn-secondary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.vehicle-types {
    margin-top: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
}

.vehicle-types h4 {
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.vehicle-type {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vehicle-type i {
    font-size: 1.5rem;
    color: #F15E23;
    margin-bottom: 8px;
}

.vehicle-type span {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.vehicle-type input {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(241, 94, 35, 0.1);
    border-radius: 5px;
    text-align: center;
}

/* Success Popup */
.success-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.success-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    animation: popupSlideIn 0.3s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-content h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.success-content p {
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 20px;
    }

    .form-steps {
        flex-wrap: wrap;
        gap: 10px;
    }

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

/* Form Error Message Styles */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-group input.error {
    border-color: #ff4444;
    background-color: rgba(255, 68, 68, 0.05);
}

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

/* Confirmation Popup Styles */
.confirmation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.confirmation-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: popupSlideIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.confirmation-header {
    background: linear-gradient(135deg, #F15E23, #ff8f59);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.confirmation-header i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.confirmation-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.confirmation-body {
    padding: 20px;
}

.confirmation-body p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.confirmation-details {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
}

.confirmation-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.confirmation-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.confirmation-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.confirmation-section h4 i {
    color: #F15E23;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.detail-item span {
    color: #666;
}

.detail-item strong {
    color: #333;
}

.vehicle-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.vehicle-summary-item {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.vehicle-summary-item i {
    color: #F15E23;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.confirmation-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .confirmation-content {
        width: 95%;
        margin: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .vehicle-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}
