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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    height: 80px;
    padding: 5px 0;
}

.navbar {
    padding: 15px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
    height: 100%;
    width: 100%;
    max-width: 1200px;
}

.logo-item {
    display: flex;
    align-items: center;
    margin-right: 0;
    flex-shrink: 0;
    padding: 5px 0;
}

.nav-logo-img {
    height: 55px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.social-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 0;
    flex-shrink: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1px 2px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    position: relative;
    margin-right: 3px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 0%;
}

.nav-menu a.nav-btn {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9rem;
    position: relative;
    margin-right: 3px;
    box-shadow: 0 2px 8px rgba(255,68,68,0.3);
    border: 2px solid transparent;
}

.nav-menu a.nav-btn:hover {
    background: linear-gradient(45deg, #cc0000, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,68,68,0.4);
    border-color: rgba(255,255,255,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255,255,255,0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section - Slider Style Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.9) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 68, 68, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 68, 68, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 68, 68, 0.2) 0%, transparent 50%);
    z-index: 3;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    color: white;
    animation: slideInUp 1s ease-out;
    width: 100%;
    max-width: 800px;
}

.hero-right {
    animation: slideInUp 1s ease-out 0.3s both;
    margin-top: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: #ff4444;
    font-size: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-main {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 4.5rem;
}

.title-sub {
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
}

.title-location {
    display: block;
    color: #ffffff;
    font-size: 3rem;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle i {
    color: #ff4444;
    font-size: 1.3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.feature-item i {
    color: #ff4444;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.trust-item i {
    color: #ff4444;
    font-size: 1rem;
}

.trust-item span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 40px 25px 25px;
    text-align: center;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 50%, #ff4444 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255,68,68,0.4);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
    z-index: 10;
}

.package-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.package-badge:hover::before {
    left: 100%;
}

.package-badge:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,68,68,0.5);
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 50%, #cc0000 100%);
}

/* Özel paket rozetleri */
.package-badge[data-package="bronz"] {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 50%, #cd7f32 100%);
    box-shadow: 0 8px 25px rgba(205,127,50,0.4);
    min-width: 90px;
}

.package-badge[data-package="bronz"]:hover {
    box-shadow: 0 12px 35px rgba(205,127,50,0.5);
    background: linear-gradient(135deg, #b8860b 0%, #cd7f32 50%, #b8860b 100%);
}

.package-badge[data-package="gold"] {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ffd700 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    min-width: 80px;
}

.package-badge[data-package="gold"]:hover {
    box-shadow: 0 12px 35px rgba(255,215,0,0.5);
    background: linear-gradient(135deg, #ffb347 0%, #ffd700 50%, #ffb347 100%);
}

.package-badge[data-package="premium"] {
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 50%, #9370db 100%);
    box-shadow: 0 8px 25px rgba(147,112,219,0.4);
    min-width: 110px;
}

.package-badge[data-package="premium"]:hover {
    box-shadow: 0 12px 35px rgba(147,112,219,0.5);
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 50%, #8a2be2 100%);
}

.package-badge[data-package="platinum"] {
    background: linear-gradient(135deg, #e5e4e2 0%, #c0c0c0 50%, #e5e4e2 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(229,228,226,0.4);
    min-width: 120px;
}

.package-badge[data-package="platinum"]:hover {
    box-shadow: 0 12px 35px rgba(229,228,226,0.5);
    background: linear-gradient(135deg, #c0c0c0 0%, #e5e4e2 50%, #c0c0c0 100%);
}

.package-badge[data-package="full"] {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 25%, #ff4444 50%, #cc0000 75%, #ff4444 100%);
    animation: rainbow 3s linear infinite;
    box-shadow: 0 8px 25px rgba(255,68,68,0.4);
    min-width: 80px;
}

.package-badge[data-package="full"]:hover {
    box-shadow: 0 12px 35px rgba(255,68,68,0.5);
    animation: rainbow 1.5s linear infinite;
}

.package-badge[data-package="airbag"] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 50%, #ff6b6b 100%);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
    min-width: 100px;
}

.package-badge[data-package="airbag"]:hover {
    box-shadow: 0 12px 35px rgba(255,107,107,0.5);
    background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 50%, #ee5a52 100%);
}

.package-badge[data-package="motor"] {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 50%, #4ecdc4 100%);
    box-shadow: 0 8px 25px rgba(78,205,196,0.4);
    min-width: 90px;
}

.package-badge[data-package="motor"]:hover {
    box-shadow: 0 12px 35px rgba(78,205,196,0.5);
    background: linear-gradient(135deg, #44a08d 0%, #4ecdc4 50%, #44a08d 100%);
}

.package-badge[data-package="kaporta"] {
    background: linear-gradient(135deg, #a8e6cf 0%, #7fcdcd 50%, #a8e6cf 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(168,230,207,0.4);
    min-width: 110px;
}

.package-badge[data-package="kaporta"]:hover {
    box-shadow: 0 12px 35px rgba(168,230,207,0.5);
    background: linear-gradient(135deg, #7fcdcd 0%, #a8e6cf 50%, #7fcdcd 100%);
}

.package-badge[data-package="luks"] {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 25%, #ffd700 50%, #ffb347 75%, #ffd700 100%);
    color: #1a1a1a;
    animation: luxury 2s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    min-width: 80px;
}

.package-badge[data-package="luks"]:hover {
    box-shadow: 0 12px 35px rgba(255,215,0,0.5);
    animation: luxury 1s ease-in-out infinite;
}

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

.package-badge[data-package="km"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
    min-width: 70px;
}

.package-badge[data-package="km"]:hover {
    box-shadow: 0 12px 35px rgba(102,126,234,0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #764ba2 100%);
}

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

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    z-index: 20;
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0 15px;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

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

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.card-footer {
    text-align: center;
    margin-top: auto;
}

.card-footer .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,68,68,0.3);
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .card-header {
        padding: 25px 20px 20px;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
        margin: 15px 0 10px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .package-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .card-header {
        padding: 20px 15px 15px;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
        margin: 12px 0 8px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .package-features li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 20px;
    }
    
    .package-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* SSS Section */
.sss {
    padding: 80px 0;
    background: white;
}

.sss-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.sss-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sss-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.sss-item.active {
    border-color: #ff4444;
    box-shadow: 0 5px 20px rgba(255,68,68,0.2);
}

.sss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.sss-header:hover {
    background: #f0f0f0;
}

.sss-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.sss-header i {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    margin-left: 15px;
}

.sss-item.active .sss-header i {
    transform: rotate(180deg);
}

.sss-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.sss-item.active .sss-content {
    max-height: 800px;
}

.sss-content p {
    padding: 20px 30px 10px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.sss-content ul {
    padding: 20px 30px 10px;
    margin: 0;
    list-style: none;
}

.sss-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.sss-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 1.5rem;
}

.sss-content ul li:last-child {
    border-bottom: none;
}

.sss-content .btn {
    margin: 15px 30px 20px;
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
}

/* Desktop Grid Layout */
@media (min-width: 1024px) {
    .accordion {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
        max-width: none;
    }
    
    .accordion-item {
        margin-bottom: 0;
    }
    
    .accordion-content {
        max-height: none;
        overflow: visible;
    }
    
    .accordion-header {
        cursor: default;
    }
    
    .accordion-header:hover {
        background: #f8f8f8;
    }
    
    .accordion-header i {
        display: none;
    }
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-header h4 {
        font-size: 1.1rem;
    }
    
    .accordion-header .price {
        font-size: 1.5rem;
    }
    
    .package-features {
        padding: 15px 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .accordion-header {
        padding: 12px 15px;
    }
    
    .accordion-header h4 {
        font-size: 1rem;
    }
    
    .accordion-header .price {
        font-size: 1.3rem;
    }
    
    .package-features {
        padding: 12px 15px;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 80px;
        overflow: visible;
    }
    
    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        background: #1a1a1a !important;
        padding: 20px !important;
        gap: 15px !important;
        z-index: 9999 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-100%) !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
        list-style: none !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 15px 20px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    .nav-menu a:hover {
        background: rgba(255,68,68,0.15) !important;
        color: #ff4444 !important;
    }
    
    .logo-item {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        order: -1 !important;
    }
    
    .social-item {
        margin-left: 0 !important;
        margin-top: 10px !important;
        justify-content: center !important;
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        order: 999 !important;
    }
    
    .nav-logo-img {
        height: 35px !important;
    }
    
    .logo-item span {
        font-size: 1rem !important;
    }
    
    .hamburger {
        display: flex !important;
        position: relative !important;
        z-index: 10000 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 30px !important;
        height: 30px !important;
        cursor: pointer !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 5px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.5rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .title-sub {
        font-size: 2rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .title-location {
        font-size: 1.8rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-location {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 25px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .title-main {
        font-size: 2rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .title-sub {
        font-size: 1.6rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .title-location {
        font-size: 1.4rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .point-item {
        flex-direction: column;
        text-align: center;
    }
} 

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .contact-map {
        padding: 15px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .whatsapp-float,
    .phone-float {
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .phone-float {
        left: 20px;
    }
    
    .whatsapp-float a,
    .phone-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
} 

/* Responsive Design for SSS */
@media (max-width: 768px) {
    .sss-header {
        padding: 20px 25px;
    }
    
    .sss-header h3 {
        font-size: 1.1rem;
    }
    
    .sss-content p,
    .sss-content ul li {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .sss-content {
        padding: 15px 25px;
    }
    
    .sss-content .btn {
        margin: 15px 0 20px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sss {
        padding: 60px 0;
    }
    
    .sss-header {
        padding: 15px 20px;
    }
    
    .sss-header h3 {
        font-size: 1rem;
    }
    
    .sss-content p,
    .sss-content ul li {
        font-size: 0.95rem;
    }
} 

/* Animasyon keyframes */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

.hero-title:hover,
.hero-subtitle:hover {
    animation: pulse 0.6s ease-in-out;
} 

/* Mobile Pricing Accordion */
.pricing-accordion {
    display: none;
}

.pricing-accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #ff4444;
}

.pricing-accordion-item.featured {
    border-color: #ff4444;
    box-shadow: 0 8px 25px rgba(255,68,68,0.2);
}

.pricing-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-accordion-header:hover {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.package-info {
    flex: 1;
    position: relative;
}

.package-info .package-badge {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    padding: 4px 12px;
}

.package-info .popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.7rem;
    padding: 3px 8px;
}

.package-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 5px 0;
    color: white;
}

.package-info .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4444;
    margin: 0;
}

.pricing-accordion-header i {
    color: #ccc;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    margin-left: 15px;
}

.pricing-accordion-item.active .pricing-accordion-header i {
    transform: rotate(180deg);
}

.pricing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.pricing-accordion-item.active .pricing-accordion-content {
    max-height: 1000px;
}

.pricing-accordion-content .package-features {
    padding: 20px;
    margin: 0;
}

.pricing-accordion-content .package-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    padding-left: 20px;
}

.accordion-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.accordion-footer .btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.accordion-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,68,68,0.3);
}

/* Responsive Design for Mobile Accordion */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .pricing-accordion-header {
        padding: 15px;
    }
    
    .package-info h4 {
        font-size: 1rem;
    }
    
    .package-info .price {
        font-size: 1.6rem;
    }
    
    .pricing-accordion-content .package-features {
        padding: 15px;
    }
    
    .pricing-accordion-content .package-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .accordion-footer {
        padding: 0 15px 15px;
    }
    
    .accordion-footer .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-accordion-header {
        padding: 12px;
    }
    
    .package-info h4 {
        font-size: 0.9rem;
    }
    
    .package-info .price {
        font-size: 1.4rem;
    }
    
    .package-info .package-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .package-info .popular-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .pricing-accordion-content .package-features {
        padding: 12px;
    }
    
    .pricing-accordion-content .package-features li {
        font-size: 0.8rem;
        padding: 5px 0;
        padding-left: 15px;
    }
    
    .accordion-footer {
        padding: 0 12px 12px;
    }
    
    .accordion-footer .btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
} 

/* 505 Point System - Modern Design */
.point-system {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.point-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
}

.point-system-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.point-system-header .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.point-system-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.point-system-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-system-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.point-system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
}

.point-system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    border-color: #ff4444;
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.point-system-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.point-system-card p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.point-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.point-stats .stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 68, 68, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.point-stats .stat:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-3px);
}

.point-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 8px;
}

.point-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.point-system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.point-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.point-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
}

.point-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #ff4444;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.point-category:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff4444, #cc0000);
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.point-count {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255,68,68,0.3);
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.category-features .feature-item:last-child {
    border-bottom: none;
}

.category-features .feature-item:hover {
    transform: translateX(5px);
}

.category-features .feature-item i {
    color: #ff4444;
    font-size: 1rem;
    font-weight: bold;
    width: 20px;
    text-align: center;
}

.category-features .feature-item span {
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.point-system-footer {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.point-system-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 25px 25px 0 0;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 68, 68, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-stat:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-stat:hover .stat-icon {
    transform: scale(1.1);
}

.stat-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.stat-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-action {
    text-align: center;
}

.footer-action .btn {
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255,68,68,0.3);
}

.footer-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255,68,68,0.4);
}

/* Responsive Design for Point System */
@media (max-width: 1024px) {
    .point-system-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .point-system-visual {
        order: -1;
    }
    
    .point-system-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .point-system {
        padding: 60px 0;
    }
    
    .point-system-header .section-subtitle {
        font-size: 1rem;
    }
    
    .point-system-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .point-system-card h3 {
        font-size: 1.3rem;
    }
    
    .point-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .point-system-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .point-category {
        padding: 20px;
    }
    
    .category-header h3 {
        font-size: 1rem;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-stat {
        justify-content: center;
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-stat .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .footer-stat .stat-content {
        text-align: center;
    }
    
    .footer-stat .stat-content h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .footer-stat .stat-content p {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .point-system-footer {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .point-system-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .point-system-card h3 {
        font-size: 1.1rem;
    }
    
    .point-stats {
        gap: 15px;
    }
    
    .point-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .point-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .point-category {
        padding: 15px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .category-header h3 {
        font-size: 0.9rem;
    }
    
    .point-count {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .category-features .feature-item span {
        font-size: 0.8rem;
    }
    
    .footer-stat {
        padding: 12px;
        gap: 12px;
    }
    
    .footer-stat .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-stat .stat-content h4 {
        font-size: 1rem;
    }
    
    .footer-stat .stat-content p {
        font-size: 0.8rem;
    }
    
    .footer-action .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.point-system-header .section-title {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-item {
        justify-content: center;
        padding: 10px 20px;
    }
    
    .location-info {
        margin: 10px 0;
        padding: 8px;
    }
    
    .location-info span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-trust {
        gap: 8px;
    }
    
    .trust-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
    
    .location-info {
        padding: 6px;
    }
    
    .location-info span {
        font-size: 0.75rem;
    }
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Timeline Style Services */
.services-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.4);
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 0 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 500px;
}

.timeline-content:hover {
    border-color: #ff4444;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.timeline-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.timeline-number {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-features .feature-tag {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.timeline-features .feature-tag:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .services-timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 60px;
    }
    
    .timeline-item.reverse {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-icon {
        position: absolute;
        left: -60px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
        width: 100%;
    }
    
    .timeline-header h3 {
        font-size: 1.2rem;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-header h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .timeline-features .feature-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255,68,68,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,68,68,0.4);
    background: linear-gradient(45deg, #cc0000, #ff4444);
}

.btn-secondary {
    background: linear-gradient(45deg, #333333, #1a1a1a);
    color: white;
    box-shadow: 0 4px 15px rgba(51,51,51,0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51,51,51,0.4);
    background: linear-gradient(45deg, #1a1a1a, #333333);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* Desktop Grid View */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

/* Desktop Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #ff4444;
}

.service-card::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: translateY(-2px);
}

/* Mobile Accordion View */
.services-accordion {
    margin-top: 50px;
}

.service-accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-accordion-item.active {
    border-color: #ff4444;
    box-shadow: 0 5px 20px rgba(255,68,68,0.2);
}

.service-accordion-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.service-accordion-header:hover {
    background: #f0f0f0;
}

.service-accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.service-accordion-header i.fa-chevron-down {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 1rem;
    margin-left: 10px;
}

.service-accordion-item.active .service-accordion-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.service-accordion-item.active .service-accordion-content {
    max-height: 300px;
}

.service-accordion-content p {
    padding: 20px 25px 15px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.mobile-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 25px 20px;
}

.mobile-features .feature-tag {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f8f8;
}

.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #ff4444;
}

.pricing-card.featured {
    border-color: #ff4444;
    box-shadow: 0 15px 40px rgba(255,68,68,0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    z-index: 20;
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0 15px;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

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

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.card-footer {
    text-align: center;
    margin-top: auto;
}

.card-footer .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,68,68,0.3);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .service-accordion-header {
        padding: 15px 20px;
    }
    
    .service-accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    .service-accordion-header h3 {
        font-size: 1rem;
    }
    
    .service-accordion-content p {
        padding: 15px 20px 10px;
        font-size: 0.95rem;
    }
    
    .mobile-features {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .service-accordion-header {
        padding: 12px 15px;
    }
    
    .service-accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .service-accordion-header h3 {
        font-size: 0.95rem;
    }
    
    .service-accordion-content p {
        padding: 12px 15px 10px;
        font-size: 0.9rem;
    }
    
    .mobile-features {
        padding: 0 15px 12px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .card-header {
        padding: 25px 20px 20px;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
        margin: 15px 0 10px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .package-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .card-header {
        padding: 20px 15px 15px;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
        margin: 12px 0 8px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .package-features li {
        font-size: 0.85rem;
        padding: 8px 0;
        padding-left: 20px;
    }
    
    .package-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-width: 120px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 15px 15px 0 0;
}

.stat-item:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    border-color: #ff4444;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    color: #ff4444;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

.map-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.map-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

.contact-map {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-map:hover {
    border-color: #ff4444;
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* Float Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.phone-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.phone-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    transition: all 0.3s ease;
}

.phone-float a:hover {
    background: #cc0000;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

/* Popular Badge Fix for Gold Package */
.package-info .popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4444;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    z-index: 15;
}

/* Responsive Design for Hero Stats */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-scroll {
        bottom: 20px;
    }
    
    .scroll-indicator i {
        font-size: 1.2rem;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .contact-map {
        padding: 15px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .whatsapp-float,
    .phone-float {
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .phone-float {
        left: 20px;
    }
    
    .whatsapp-float a,
    .phone-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: white;
}

.preview-item i {
    color: #ff4444;
    font-size: 1rem;
    flex-shrink: 0;
}

.preview-item span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
}

.location-info i {
    color: #ff4444;
    font-size: 1rem;
    flex-shrink: 0;
}

.location-info span {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}