/* ... (Keep variables from previous step) ... */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');

:root {
    /* Primary Brand Colors */
    --primary: #F8FAFC;
    /* Slate 50 - Very Light Blue/Grey equivalent to White */
    --primary-light: #FFFFFF;
    /* Pure White */
    --accent: #F43F5E;
    /* Warm Rose/Pink */
    --accent-hover: #E11D48;

    /* Secondary/Neutral Colors */
    --text-main: #0F172A;
    /* Deep Navy for text (high contrast) */
    --text-muted: #475569;
    /* Slate 600 */
    --surface: rgba(255, 255, 255, 0.8);
    /* Glassmorphism base light */
    --surface-solid: #FFFFFF;
    --border: #CBD5E1;
    /* Slate 300 */

    /* Functional Colors */
    --success: #10B981;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-accent {
    color: var(--accent);
}

.section-padding {
    padding: 6rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: var(--text-main);
}




/* Header */
.header {
    height: var(--header-height);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

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

.logo-img {
    height: 32px;
    /* Reduced from 40px */
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu {
    display: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.btn {
    color: white;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-close {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* padding-top: var(--header-height); */
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, #FFFFFF 0%, #F1F5F9 70%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    max-width: 280px;
    /* Further reduced */
    height: auto;
    border-radius: var(--radius-lg);
    mix-blend-mode: multiply;
    /* Hides white background */
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

/* Features */
.features {
    background: var(--primary-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(244, 63, 94, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Safety Section */
.safety-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 2.5rem;
}

.safety-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.safety-list i {
    font-size: 1.5rem;
    color: var(--success);
    margin-top: 0.25rem;
}

.safety-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

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

.safety-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
    /* border: 1px solid var(--border); */
}

/* CTA Section */
.cta {
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-top: 1px solid var(--border);
}


.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content {
    text-align: left;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}
.cta-buttons .btn{flex: 1;    max-width: 200px;}
.cta-image {
    display: flex;
    justify-content: center;
}

.cta-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
    /* Slightly stronger shadow */
}

/* Mobile responsive for CTA */
@media (max-width: 968px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .cta-content {
        text-align: center;
        order: 1;
        /* content first */
    }

    .cta-image {
        order: 2;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta h2 {
        font-size: 2.5rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-light);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-muted);
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col .address {
    margin-top: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.social-links a:hover {
    color: var(--accent);
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .safety-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        display: flex !important;
        /* Override the default display: none from base styles if we set it there */
    }

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

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: transparent;
        border: none;
        color: var(--text-main);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: var(--transition);
    }

    .mobile-menu-close:hover {
        color: var(--accent);
        transform: rotate(90deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
        order: 1;
        /* Ensure text comes first on mobile or change to 2 if image first */
    }

    .hero-image-wrapper {
        order: 2;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta,
    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: row;
        /* Keep stats side by side on mobile usually better if space fits */
        gap: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cta-buttons,
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
    .mobile-menu-logo {
        position: absolute;
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-menu-logo img {
        height: 32px;
        width: auto;
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#backToTop.show-scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.5);
}

@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


/* Support Page Specifics */
.page-hero {
    padding: 180px 0 80px;
    /* More top padding for fixed header */
    background: radial-gradient(circle at center, #F1F5F9 0%, #E2E8F0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    color: var(--accent);
}

.card-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
    background: #FFFFFF;
}

.w-100 {
    width: 100%;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .form-container {
        padding: 2rem;
    }

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

.required {
    color: var(--accent);
    margin-left: 2px;
}

.file-input {
    background: #FFFFFF;
    padding: 0.5rem;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-box {
    background: #e2e8f0;
    padding: 0.7rem 1.5rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 5px;
    font-size: 1.2rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    user-select: none;
}

.captcha-input {
    flex: 1;
}
.error {
    font-size: 13px;
    color: #ff0000;
    display: block;
}
.captcha_image {
    position: absolute;
    left: 10px;
    top: 14px;
}.m-0{margin: 0;}.logo:focus-visible{border: none;outline: none;}
/* ... (Existing styles) ... */

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 450px;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Modal Icon Animation */
.modal-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem auto;
}

.circle-check {
    width: 80px;
    height: 80px;
    border: 3px solid #1E293B;
    /* Dark color for circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1E293B;
    /* Dark checkmark */
    margin: 0 auto;
}

.heart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.5rem;
    color: #ef4444;
    /* Red heart */
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Modal Typography */
.modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.modal-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-modal-action {
    background-color: #1a1a40;
    /* Deep blue/purple from design */
    background: #1a1a40;
    /* Override gradient for this specific look if needed, or stick to btn-primary */
    min-width: 120px;
    /* Optional: if you want to exactly match the deep blue button in screenshot instead of pink gradient: */
    background: #2e1065;
    /* Dark violet approximation based on screenshot */
    color: #fff;
}

.btn-modal-action:hover {
    background: #1e0b4b;
    transform: translateY(-2px);
}
/* Safety Tips Page Styles */
.safety-section {
    background: var(--primary);
}

.safety-section .section-header {
    margin-bottom: 3rem;
}

.safety-section .section-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-category {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.safety-category:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.safety-category h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.safety-category h2 i {
    color: var(--accent);
    font-size: 1.5rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    line-height: 1.6;
}

.check-list li>div {
    flex: 1;
}

.check-list svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    color: var(--success);
    margin-top: 0.2rem;
}

.check-list strong {
    color: var(--text-main);
    font-weight: 600;
}

.check-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .safety-section .section-header h1 {
        font-size: 2rem;
    }

    .safety-category {
        padding: 2rem 1.5rem;
    }

    .safety-category h2 {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .check-list li {
        gap: 0.75rem;
        font-size: 0.95rem;
    }

    .check-list svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}
.safety-section .svg-inline--fa path{fill:#f43f5e}