/* Glass Umbrella Safety Page - Glass Morphism Styling */

/* Global Safety Page Styles */
.safety-page {
    color: #EBEBEB;
    line-height: 1.6;
    background: linear-gradient(135deg,
        rgba(20, 20, 30, 0.95) 0%,
        rgba(40, 35, 50, 0.95) 25%,
        rgba(30, 25, 40, 0.95) 50%,
        rgba(45, 40, 55, 0.95) 75%,
        rgba(25, 20, 35, 0.95) 100%
    );
    min-height: 100vh;
    padding: 2rem 0;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.safety-hero {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.25) 0%,
        rgba(30, 150, 252, 0.20) 50%,
        rgba(123, 68, 193, 0.25) 100%
    );
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.safety-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #EBEBEB;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.safety-hero p {
    font-size: 1.5rem;
    color: rgba(235, 235, 235, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Safety Sections */
.safety-section {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.safety-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.safety-section:nth-child(odd) {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.10) 0%,
        rgba(30, 150, 252, 0.15) 50%,
        rgba(123, 68, 193, 0.10) 100%
    );
    backdrop-filter: blur(15px);
}

/* Content Cards */
.safety-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.safety-card h2 {
    font-size: 2rem;
    color: #9AD5CA;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.safety-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-card li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.safety-card li:last-child {
    border-bottom: none;
}

.safety-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9AD5CA;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.safety-card p {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.8;
    margin-top: 1rem;
}

.safety-card strong {
    color: #EBEBEB;
    font-weight: 600;
}

/* Coming Soon Section */
.coming-soon {
    background: rgba(154, 213, 202, 0.15);
    border-left: 4px solid #9AD5CA;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.coming-soon h3 {
    color: #9AD5CA;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.coming-soon p {
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 1rem;
}

.coming-soon ul {
    list-style: none;
    padding: 0;
}

.coming-soon li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: rgba(235, 235, 235, 0.8);
}

.coming-soon li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #9AD5CA;
    font-weight: bold;
}

/* Contact Section */
.contact-card {
    background: rgba(154, 213, 202, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
}

.contact-card h2 {
    font-size: 2rem;
    color: #9AD5CA;
    margin-bottom: 1.5rem;
}

.contact-card p {
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #9AD5CA;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(154, 213, 202, 0.5);
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #9AD5CA;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: #9AD5CA;
}

/* Trust Bar */
.safety-trust-bar {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    margin: 3rem 0;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.safety-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.5rem;
}

.safety-trust-icon {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
    flex-shrink: 0;
}

.safety-trust-item span {
    color: #9AD5CA;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: 8rem;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .safety-hero h1 {
        font-size: 2.5rem;
    }
    
    .safety-hero p {
        font-size: 1.25rem;
    }
    
    .safety-card {
        padding: 2rem 1.5rem;
    }
    
    .safety-card h2 {
        font-size: 1.5rem;
    }
    
    .safety-trust-bar {
        gap: 2rem;
    }
    
    .safety-trust-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .section-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .safety-trust-bar {
        gap: 1.5rem;
    }
    
    .safety-trust-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .safety-trust-item span {
        font-size: 0.75rem;
        max-width: 6rem;
    }
}