/* CSS Reset & Variables */
:root {
    --primary-color: #ff007f; /* Vibrant pink like Kasidie */
    --primary-dark: #c50060;
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --bg-card: #1e1e1e;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #333;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
    animation: pulse 2s infinite;
}

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

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

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

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Common Section Styles */
.section {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-icon {
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #fff;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Users Grid */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.user-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.user-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.user-content {
    padding: 25px;
}

.user-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.user-content p {
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 4px solid var(--primary-color);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-muted);
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-content: flex-start;
}

.profile-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: #555;
}

.profile-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

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

.profile-age {
    font-weight: bold;
    color: #fff;
}

.profile-badge {
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.profile-badge.pink {
    background-color: var(--primary-color);
}

.profile-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-goal {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.city-card {
    height: 300px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: var(--transition);
}

.city-card:hover {
    transform: scale(1.02);
}

.city-content {
    position: relative;
    z-index: 2;
}

.city-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.city-content p {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.city-link {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Safety Section */
.safety-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.safety-content {
    flex: 1;
    min-width: 300px;
}

.safety-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.safety-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.safety-list strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.safety-list p {
    color: var(--text-muted);
}

.safety-image {
    flex: 1;
    min-width: 300px;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.rounded {
    border-radius: 10px;
    border: 2px solid var(--primary-dark);
}

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

.testimonial-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
}

.author {
    color: var(--primary-color);
    font-weight: bold;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    color: var(--primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: #fff;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.read-more {
    font-weight: bold;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    user-select: none;
}

.faq-question::after {
    content: '+';
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0,0,0,0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.cta-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-text {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background-color: #222;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ccc;
    border: 1px solid #444;
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    .nav-actions {
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .safety-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn-large {
        width: 100%;
    }
}

/* Safety Page Styles */
.page-header {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    color: var(--text-main);
    margin-top: 70px;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.safety-content {
    background-color: var(--bg-dark);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.article-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.article-content a:hover {
    text-decoration: underline;
}

.image-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

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

.image-grid.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.content-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.safety-tips-box {
    background-color: rgba(255, 0, 127, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.safety-tips-box h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.safety-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.safety-table th, .safety-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.safety-table th {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}

.safety-table td {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    .page-subtitle {
        font-size: 1.2rem;
    }
    .content-wrapper {
        padding: 20px;
    }
    .image-grid.two-cols, .image-grid.three-cols {
        grid-template-columns: 1fr;
    }
    .content-image {
        height: auto;
        aspect-ratio: 16/9;
    }
    .safety-table th, .safety-table td {
        padding: 10px;
        font-size: 0.95rem;
    }
}