/* ==========================================================================
   ESAT CAN TRAVEL - MAIN STYLESHEET
   ========================================================================== */

/* CSS Variables */
:root {
    --dark-primary: #0F1A1F;
    --dark-light: #F0F8FF;
    --blue-light: #B8D4E3;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --blue-medium: #4A90A4;
    --blue-dark: #2E5266;
}

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

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--blue-dark) 100%); 
    color: var(--dark-light); 
    overflow-x: hidden; 
}

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

/* Top Navigation Bar */
.top-navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background: rgba(15, 26, 31, 0.95); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid rgba(184, 212, 227, 0.2); 
    z-index: 1000; 
    padding: 0 40px; 
    height: 80px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    box-shadow: 0 5px 20px rgba(15, 26, 31, 0.3); 
}

.navbar-logo { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
}

.navbar-logo img { 
    height: 44px; 
    transition: all 0.3s ease; 
}

.navbar-logo:hover img { 
    transform: scale(1.05); 
    filter: none; 
}

.navbar-center { 
    display: flex; 
    list-style: none; 
    align-items: center; 
    gap: 0; 
}

.navbar-right { 
    display: flex; 
    align-items: center; 
    gap: 0; 
}

.navbar-item { 
    position: relative; 
}

.navbar-link { 
    display: block; 
    padding: 25px 20px; 
    color: #F0F8FF; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95rem; 
    transition: all 0.3s ease; 
    position: relative; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.navbar-link:hover { 
    color: var(--blue-light); 
    background: rgba(255,255,255,0.05); 
}

.navbar-link::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    width: 0; 
    height: 2px; 
    background: var(--blue-light); 
    transition: all 0.3s ease; 
    transform: translateX(-50%); 
}

.navbar-link:hover::after { 
    width: 80%; 
}

/* Dropdown Menus */
.dropdown { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: rgba(15, 26, 31, 0.98); 
    backdrop-filter: blur(25px); 
    border: 1px solid rgba(184, 212, 227, 0.2); 
    border-radius: 0 0 15px 15px; 
    min-width: 250px; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(-10px); 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 15px 35px rgba(15, 26, 31, 0.5); 
    z-index: 1001; 
    pointer-events: none; /* Prevent unwanted hover triggers */
}

/* Only show dropdown when hovering link OR dropdown itself */
.navbar-link:hover + .dropdown,
.dropdown:hover,
.navbar-link:hover + .mega-dropdown,
.mega-dropdown:hover,
.navbar-link:hover + .account-dropdown,
.account-dropdown:hover { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
}

.dropdown-item { 
    display: block; 
    padding: 15px 20px; 
    color: var(--blue-light); 
    text-decoration: none; 
    border-bottom: 1px solid rgba(184, 212, 227, 0.05); 
    transition: all 0.3s ease; 
    position: relative; 
}

.dropdown-item:hover { 
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.15) 0%, rgba(184, 212, 227, 0.05) 100%); 
    color: var(--blue-light); 
    padding-left: 30px; 
}

.dropdown-item::before { 
    content: '▶'; 
    position: absolute; 
    left: 15px; 
    opacity: 0; 
    transition: all 0.3s ease; 
    color: var(--blue-medium); 
}

.dropdown-item:hover::before { 
    opacity: 1; 
    left: 20px; 
}

/* Mega Dropdown for Services */
.mega-dropdown { 
    position: absolute; 
    top: 100%; 
    left: -200px; 
    width: 800px; 
    background: rgba(15, 26, 31, 0.98); 
    backdrop-filter: blur(25px); 
    border: 1px solid rgba(184, 212, 227, 0.2); 
    border-radius: 0 0 20px 20px; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(-10px); 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 20px 50px rgba(15, 26, 31, 0.6); 
    z-index: 1001; 
    padding: 30px; 
    pointer-events: none; /* Prevent unwanted hover triggers */
}

.mega-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
}

.mega-column { 
    padding: 0; 
}

.mega-title { 
    color: var(--blue-light); 
    font-size: 1.1rem; 
    font-weight: 600; 
    margin-bottom: 15px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid var(--blue-medium); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.mega-item { 
    display: block; 
    color: var(--blue-light); 
    text-decoration: none; 
    padding: 8px 0; 
    transition: all 0.3s ease; 
    position: relative; 
    padding-left: 15px; 
    white-space: nowrap; 
}

.mega-item:hover { 
    color: var(--blue-light); 
    padding-left: 25px; 
}

.mega-item::before { 
    content: '•'; 
    position: absolute; 
    left: 0; 
    color: var(--blue-medium); 
    transition: all 0.3s ease; 
}

.mega-item:hover::before { 
    color: var(--blue-light); 
    transform: scale(1.3); 
}

/* Account Dropdown */
.account-dropdown { 
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: rgba(15, 26, 31, 0.98); 
    backdrop-filter: blur(25px); 
    border: 1px solid rgba(184, 212, 227, 0.2); 
    border-radius: 0 0 15px 15px; 
    min-width: 220px; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateY(-10px); 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    box-shadow: 0 15px 35px rgba(15, 26, 31, 0.5); 
    z-index: 1001; 
    pointer-events: none; /* Prevent unwanted hover triggers */
}

.account-user-info { 
    padding: 20px; 
    border-bottom: 1px solid rgba(184, 212, 227, 0.1); 
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(184, 212, 227, 0.05) 100%); 
}

.account-user-name { 
    color: var(--blue-light); 
    font-weight: 600; 
    font-size: 1rem; 
    margin-bottom: 5px; 
}

.account-user-status { 
    color: var(--gray-light); 
    font-size: 0.85rem; 
    opacity: 0.8; 
}

.account-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    background: linear-gradient(135deg, #FFD700, #FFA500); 
    color: var(--dark-primary); 
    font-size: 0.75rem; 
    font-weight: 600; 
    padding: 3px 8px; 
    border-radius: 12px; 
    margin-top: 5px; 
}

/* Mobile Menu */
.mobile-menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--blue-light); 
    font-size: 1.5rem; 
    cursor: pointer; 
    padding: 10px; 
}

.mobile-menu { 
    position: fixed; 
    top: 80px; 
    left: -100%; 
    width: 100%; 
    height: calc(100vh - 80px); 
    background: rgba(15, 26, 31, 0.98); 
    backdrop-filter: blur(20px); 
    transition: left 0.4s ease; 
    overflow-y: auto; 
    z-index: 999; 
}

.mobile-menu.active { 
    left: 0; 
}

.mobile-section { 
    border-bottom: 1px solid rgba(184, 212, 227, 0.1); 
}

.mobile-section-title { 
    padding: 20px; 
    background: rgba(255,255,255,0.05); 
    color: var(--blue-light); 
    font-weight: 600; 
    text-transform: uppercase; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.mobile-section-items { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease; 
}

.mobile-section-items.active { 
    max-height: 2000px; 
}

.mobile-item { 
    display: block; 
    padding: 12px 30px; 
    color: var(--gray-light); 
    text-decoration: none; 
    border-bottom: 1px solid rgba(184, 212, 227, 0.05); 
    transition: all 0.3s ease; 
    position: relative; 
}

.mobile-item:hover { 
    background: rgba(255,255,255,0.05); 
    color: var(--blue-light); 
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */

/* Hero Tabs - Compact & Icon Design */
.hero-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    justify-content: center;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

.hero-tab {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    color: #E8F4F8;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid rgba(184, 212, 227, 0.3);
    border-radius: 20px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    min-width: 70px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 212, 227, 0.3), transparent);
    transition: left 0.7s ease;
}

.hero-tab:hover::before {
    left: 100%;
}

.hero-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(184, 212, 227, 0.5);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(74, 144, 164, 0.2);
}

.hero-tab.active {
    background: linear-gradient(135deg, #4A90A4 0%, #6BB6CC 100%);
    color: #FFFFFF;
    border-color: #6BB6CC;
    box-shadow: 0 3px 12px rgba(74, 144, 164, 0.4);
    transform: translateY(-1px);
}

.hero-tab.active:hover {
    background: linear-gradient(135deg, #5BA0B4 0%, #7CC6DC 100%);
    transform: translateY(-2px) scale(1.02);
}

.hero-tab .tab-icon {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile responsive for tabs */
@media (max-width: 768px) {
    .hero-tabs {
        gap: 4px;
        padding: 0 10px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .hero-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .hero-tab {
        font-size: 0.7rem;
        padding: 6px 10px;
        min-width: 60px;
        gap: 3px;
        flex-shrink: 0;
    }
    
    .hero-tab .tab-icon {
        font-size: 0.8rem;
    }
}

.hero-tab.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px 0;
    background: linear-gradient(135deg, #0F1A1F 0%, #2E5266 100%);
    min-height: 750px;
    height: 750px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}

.hero-section .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

/* Overlay kaldırıldı - harita daha net görünsün */

.hero-content {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: var(--blue-light);
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

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

.site-footer {
    background: linear-gradient(135deg, #0F1A1F 0%, #1e293b 100%);
    color: white;
    padding: 60px 0 20px 0;
    margin-top: 80px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo img {
    height: 44px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: white;
    background: var(--blue-medium);
    transform: translateY(-3px);
}

.footer-personal-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-square-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--blue-light);
    padding-left: 5px;
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-link:hover {
    color: white;
    border-color: var(--blue-medium);
    background: rgba(74, 144, 164, 0.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--blue-light);
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 0 15px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0;
        max-width: 100%;
    }
    
    .footer-col {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 15px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px 0;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-apps {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .app-link {
        width: 100%;
        max-width: 200px;
        padding: 12px 15px;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .app-link i {
        font-size: 20px !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 10px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
}

/* iPhone 11 ve daha küçük ekranlar için */
@media (max-width: 414px) {
    .site-footer {
        padding: 0 10px;
    }
    
    .footer-col {
        padding: 0 5px;
    }
    
    .footer-desc {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .app-link {
        max-width: 180px;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .app-link i {
        font-size: 18px !important;
    }
}

/* Section Backgrounds Mobile Fix */
@media (max-width: 768px) {
    .navigation-section {
        background-image: none !important;
        background: linear-gradient(135deg, #0F1A1F 0%, #2E5266 50%, #4A90A4 100%) !important;
        background-attachment: scroll !important;
    }
    
    /* Tüm arkaplan fotoğraflarını mobilde gradient yap */
    section[style*="background: url"],
    div[style*="background-image: url"] {
        background-image: none !important;
        background: linear-gradient(135deg, #0F1A1F 0%, #4A90A4 50%, #2E5266 100%) !important;
    }
}

/* ==========================================================================
   COOKIE CONSENT
   ========================================================================== */

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 26, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 212, 227, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text i {
    color: var(--blue-light);
    font-size: 1.2rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.primary {
    background: var(--blue-medium);
    color: white;
}

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

.cookie-btn.secondary {
    background: transparent;
    color: var(--blue-light);
    border: 1px solid var(--blue-light);
}

.cookie-btn.secondary:hover {
    background: var(--blue-light);
    color: var(--dark-primary);
}

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

@media (max-width: 1024px) {
    .mega-dropdown { 
        width: 600px; 
        left: -150px; 
    }
    
    .mega-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .hero-tabs {
        gap: 6px; 
        padding: 0 15px;
        justify-content: center;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .hero-tabs::-webkit-scrollbar { 
        display: none; 
    }
    
    .hero-tab {
        font-size: 0.85rem; 
        padding: 10px 16px; 
        min-width: 80px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .top-navbar { 
        padding: 0 20px; 
        display: grid; 
        grid-template-columns: 60px 1fr 60px; 
        align-items: center; 
    }
    
    .mobile-menu-toggle { 
        display: block; 
        grid-column: 1; 
        justify-self: start; 
        order: 1; 
    }
    
    .navbar-logo { 
        grid-column: 2; 
        justify-self: center; 
        order: 2; 
    }
    
    .navbar-logo img { 
        height: 36px; 
    }
    
    .navbar-center { 
        display: none; 
    }
    
    .navbar-right { 
        display: flex; 
        grid-column: 3; 
        justify-self: end; 
        order: 3; 
    }
    
    .navbar-right .account-dropdown { 
        right: 0; 
        left: auto; 
        min-width: 200px; 
    }
    
    .hero-content h1 { 
        font-size: 2.5rem; 
    }
    
    .hero-content p { 
        font-size: 1.1rem; 
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-tabs { 
        gap: 4px; 
        padding: 0 10px;
    }
    
    .hero-tab { 
        font-size: 0.8rem; 
        padding: 8px 12px; 
        min-width: 70px;
    }
    
    .hero-content h1 { 
        font-size: 2rem; 
    }
    
    .hero-content p { 
        font-size: 1rem; 
    }
    
    .hero-section { 
        padding: 100px 0 40px 0;
        min-height: 650px;
        height: 650px;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section { 
        padding: 80px 0 30px 0;
        min-height: 550px;
        height: 550px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ==========================================================================
   NOTIFICATION STYLES
   ========================================================================== */

/* Notification Badge */
.notification-badge {
    background: linear-gradient(135deg, #FF3B30, #FF6B47);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    animation: pulse 2s infinite;
    display: inline-block;
    min-width: 18px;
    text-align: center;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}
