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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0A1F44;
    color: #ffffff;
    overflow-x: hidden;
    background-image: url('https://i.hizliresim.com/krlg68r.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.85);
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A1F44;
}

::-webkit-scrollbar-thumb {
    background: #2C5282;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a365d;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 82, 130, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 31, 68, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.navbar-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #cbd5e0;
    letter-spacing: 1px;
    margin-top: -5px;
}

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

.navbar-menu li a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.navbar-menu li a:hover {
    color: #ffffff;
    border-bottom-color: #2C5282;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.lang-switcher {
    background: rgba(44, 82, 130, 0.5);
    border: 1px solid rgba(44, 82, 130, 0.7);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.lang-switcher:hover {
    background: rgba(44, 82, 130, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(44, 82, 130, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(44, 82, 130, 0.3);
    border: 1px solid #2C5282;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #cbd5e0;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C5282;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.hero-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    right: -5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2C5282 0%, #1a365d 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.6);
    background: linear-gradient(135deg, #1a365d 0%, #2C5282 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid #2C5282;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2C5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cbd5e0;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: rgba(26, 54, 93, 0.3);
    backdrop-filter: blur(10px);
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 20px;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 30px;
    text-align: center;
}

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

.feature-card {
    background: rgba(44, 82, 130, 0.2);
    border: 1px solid rgba(44, 82, 130, 0.4);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(44, 82, 130, 0.3);
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.mission-box {
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.4) 0%, rgba(26, 54, 93, 0.4) 100%);
    border: 2px solid #2C5282;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.mission-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-box p {
    font-size: 1.15rem;
    color: #e2e8f0;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Report Form */
.report-form {
    background: rgba(10, 31, 68, 0.6);
    backdrop-filter: blur(10px);
}

.form {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(44, 82, 130, 0.5);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 1rem;
    border: 1px solid rgba(44, 82, 130, 0.5);
    border-radius: 8px;
    background: rgba(10, 31, 68, 0.6);
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C5282;
    background: rgba(10, 31, 68, 0.8);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.2);
}

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

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

.form-group select option {
    background: #0A1F44;
    color: #ffffff;
}

.status-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 500;
}

.status-message.success {
    background: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
    color: #9ae6b4;
}

.status-message.error {
    background: rgba(245, 101, 101, 0.2);
    border: 1px solid #f56565;
    color: #fc8181;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: #cbd5e0;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Safety Resources */
.safety-resources {
    background: rgba(26, 54, 93, 0.3);
    backdrop-filter: blur(10px);
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-item {
    background: rgba(44, 82, 130, 0.2);
    border: 1px solid rgba(44, 82, 130, 0.4);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resource-item:hover {
    border-color: rgba(44, 82, 130, 0.6);
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.2);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.resource-header:hover {
    background: rgba(44, 82, 130, 0.15);
}

.resource-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.resource-icon {
    font-size: 2rem;
}

.resource-title h3 {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
}

.expand-icon {
    font-size: 2rem;
    color: #2C5282;
    font-weight: 300;
}

.resource-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.resource-item.expanded .resource-content {
    max-height: 3000px;
    padding: 0 30px 30px 30px;
}

.resource-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 20px 0 10px 0;
}

.resource-content p {
    font-size: 1rem;
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.resource-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.resource-content ul li {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.8;
    padding: 10px 0 10px 30px;
    position: relative;
}

.resource-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2C5282;
    font-weight: bold;
    font-size: 1.2rem;
}

.resource-content ul li strong {
    color: #ffffff;
}

.urgent-notice {
    background: rgba(245, 101, 101, 0.2);
    border: 2px solid #f56565;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.urgent-notice strong {
    color: #fc8181;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    background: rgba(10, 31, 68, 0.6);
    backdrop-filter: blur(10px);
}

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

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

.info-card {
    background: rgba(44, 82, 130, 0.2);
    border: 1px solid rgba(44, 82, 130, 0.4);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    background: rgba(44, 82, 130, 0.3);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
    color: #cbd5e0;
}

.info-note {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 8px;
}

.reassurance-box {
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.3) 0%, rgba(26, 54, 93, 0.3) 100%);
    border: 2px solid #2C5282;
    border-radius: 12px;
    padding: 25px;
}

.reassurance-box h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.reassurance-box p {
    font-size: 1rem;
    color: #cbd5e0;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: rgba(26, 54, 93, 0.4);
    border: 1px solid rgba(44, 82, 130, 0.5);
    border-radius: 16px;
    padding: 35px;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10, 31, 68, 0.8) 0%, rgba(10, 31, 68, 0.95) 100%);
    border-top: 1px solid rgba(44, 82, 130, 0.5);
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #cbd5e0;
    margin: 10px 0 15px;
}

.footer-description {
    font-size: 0.95rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-contact p {
    color: #cbd5e0;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(44, 82, 130, 0.3);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 40px auto 0;
}

.footer-legal p {
    color: #718096;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #718096;
    font-size: 0.85rem;
}

.footer-badge {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(44, 82, 130, 0.2);
    border: 1px solid rgba(44, 82, 130, 0.4);
    border-radius: 50px;
    padding: 15px 30px;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text strong {
    display: block;
    font-size: 1rem;
}

.badge-text span {
    color: #cbd5e0;
    font-size: 0.85rem;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-container {
        padding: 15px 20px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(10, 31, 68, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(44, 82, 130, 0.3);
    }

    .navbar-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-buttons a {
        width: 80%;
        text-align: center;
    }

    .decoration-circle {
        display: none;
    }

    section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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