/* Online Safety Page Styles */

/* Variables */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* Base Layout */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
section.safety-hero {
    background: #112152 !important;
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.safety-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.safety-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding-right: 20px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-title-gold {
    color: #ffc107;
    font-weight: 800;
}

.hero-title-white {
    color: #ffffff;
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Consultation Form */
.consultation-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.consultation-form h3 {
    color: #ffc107;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.2;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.4;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-row.single-column {
    flex-direction: column;
}

/* Field Labels */
.field-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-align: left;
    letter-spacing: 0.3px;
}

.phone-field-wrapper {
    width: 100%;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
    box-sizing: border-box;
    width: 100%;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    transform: translateY(-1px);
}

.phone-input-container {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: stretch;
    margin-top: 0;
}

.custom-select-wrapper {
    min-width: 90px;
    flex-shrink: 0;
}

.custom-select {
    position: relative;
    height: 100%;
}

.select-selected {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px 18px;
    color: white;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    height: auto;
    min-height: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
}

.select-selected::after {
    content: '▼';
    font-size: 10px;
    opacity: 0.7;
    pointer-events: none;
    margin-left: 8px;
    flex-shrink: 0;
}

.select-selected:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.select-selected:focus,
.select-selected.select-arrow-active {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    transform: translateY(-1px);
}

.select-items {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 33, 82, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.select-items div {
    padding: 14px 16px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.select-items div:hover {
    background: rgba(255, 255, 255, 0.15);
}

.select-items div:last-child {
    border-bottom: none;
}

.phone-input-container input {
    flex: 1;
    min-width: 0;
    height: auto;
    margin: 0;
}

.phone-input-container input[type="tel"] {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 16px 18px;
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.phone-input-container input[type="tel"]:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    transform: translateY(-1px);
}

.phone-input-container input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

.hero-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.hero-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 50px;
}

.cta-button {
    background: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    color: #000;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.45);
    background: linear-gradient(135deg, #ff8c00 0%, #ffc107 100%);
}

.cta-button:active {
    transform: translateY(0);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.security-badge i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Safety Tips Section */
.safety-tips {
    padding: 80px 0;
    background-color: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.tip-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tip-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.tip-checklist li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

/* Cyber Threats Section */
.cyber-threats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.threats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.threat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.threat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.threat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--danger-color), #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.3rem;
}

.threat-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.threat-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.warning-signs h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--danger-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.warning-signs h4::before {
    content: '⚠️';
    margin-right: 0.5rem;
}

.warning-signs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-signs li {
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.warning-signs li::before {
    content: '•';
    color: var(--danger-color);
    position: absolute;
    left: 0;
}

/* Safe Browsing Section */
.safe-browsing {
    padding: 80px 0;
    background: var(--white);
}

.browsing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.practice-list {
    margin-top: 2rem;
}

.practice-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.practice-item:hover {
    background: var(--gray-200);
    transform: translateX(5px);
}

.practice-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.practice-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.practice-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Data Protection Section */
.data-protection {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.protection-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.protection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.protection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--info-color), #138496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.3rem;
}

.protection-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.protection-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.protection-tips h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--info-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.protection-tips h4::before {
    content: '💡';
    margin-right: 0.5rem;
}

.protection-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.protection-tips li {
    padding: 0.4rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.protection-tips li::before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Emergency Response Section */
.emergency-response {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: var(--white);
    position: relative;
}

.emergency-response::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.emergency-response .container {
    position: relative;
    z-index: 2;
}

.emergency-header .section-title,
.emergency-header .section-subtitle {
    color: var(--white);
}

.response-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    color: var(--gray-900);
    position: relative;
    border-left: 5px solid;
    transition: all 0.3s ease;
}

.step-card.urgent {
    border-left-color: var(--danger-color);
}

.step-card.important {
    border-left-color: var(--warning-color);
}

.step-card.action {
    border-left-color: var(--success-color);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
    margin-top: 0.5rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-700);
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.emergency-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-900);
}

.emergency-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--danger-color);
}

.emergency-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--success-color);
    border-color: var(--success-color);
}

.btn-outline:hover {
    background: var(--success-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--gray-300);
}

.contact-info i {
    color: var(--primary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer-text {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.footer-bottom .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Additional Responsive Improvements */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .consultation-form {
        padding: 25px 20px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .consultation-form h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row.single-column {
        flex-direction: column;
    }
    
    .phone-input-container {
        flex-direction: row;
        gap: 8px;
    }
    
    .custom-select-wrapper {
        min-width: 85px;
    }
    
    .hero-form input,
    .hero-form select,
    .hero-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .response-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .emergency-cta {
        padding: 2rem 1.5rem;
    }
    
    .emergency-cta h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Checklist Styles */
.security-checklist {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item.completed {
    opacity: 0.7;
}

.checklist-item.completed i {
    color: var(--success-color);
}

.checklist-item:not(.completed) i {
    color: var(--gray-400);
}

.checklist-item:hover {
    background: var(--gray-50);
    padding-left: 1rem;
    border-radius: 8px;
}

.checklist-item span {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.checklist-item.completed span {
    text-decoration: line-through;
}/* Navigation Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 800px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown > .dropdown-item {
    font-weight: 600;
    color: var(--gray-900);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.sub-dropdown:hover > .dropdown-item {
    background: var(--gray-100);
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.sub-dropdown-menu {
    margin-top: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.25rem;
}

.sub-dropdown.active .sub-dropdown-menu,
.sub-dropdown:hover .sub-dropdown-menu {
    display: flex;
}

.sub-dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.sub-dropdown-menu .dropdown-item:hover {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.25rem;
}

/* Navigation Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 123, 255, 0.1);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary,
.btn-primary {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tips-grid,
    .threats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .browsing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        min-width: auto;
        width: 100%;
        margin: 0;
        padding: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-100);
        display: none;
        grid-template-columns: 1fr;
    }
    
    .dropdown.active .dropdown-menu {
        display: grid;
    }
    
    .sub-dropdown-menu {
        display: flex !important;
        margin-top: 0.5rem;
        background: var(--white);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .nav-actions {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 1001;
        background: var(--white);
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .safety-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tip-card,
    .threat-card {
        padding: 1.5rem;
    }
    
    .practice-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-actions {
        display: none;
    }
    
    .safety-hero {
        background: none !important;
        color: var(--gray-900) !important;
        padding: 2rem 0;
    }
    
    .tip-card,
    .threat-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--gray-400);
    }
}

/* Enhanced Consultation Form Styles */
.consultation-form .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.consultation-form .floating-elements::before,
.consultation-form .floating-elements::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.consultation-form .floating-elements::before {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.consultation-form .floating-elements::after {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

.consultation-form .form-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.consultation-form .form-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffc107, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.consultation-form .form-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.consultation-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.consultation-form label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    outline: none;
    color: white;
    box-sizing: border-box;
}

.consultation-form input[type="text"]::placeholder,
.consultation-form input[type="email"]::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.consultation-form input[type="text"]:focus,
.consultation-form input[type="email"]:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    transform: translateY(-2px);
}

.consultation-form input[type="text"]:hover,
.consultation-form input[type="email"]:hover,
.consultation-form select:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.consultation-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffc107' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
    color: white;
}

.consultation-form select option {
    background: #112152;
    color: white;
    padding: 10px;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

.consultation-form .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
    color: #112152;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.consultation-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.consultation-form .submit-btn:hover::before {
    left: 100%;
}

.consultation-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

.consultation-form .submit-btn:active {
    transform: translateY(-1px);
}

.consultation-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Mobile responsiveness for enhanced form */
@media (max-width: 768px) {
    .consultation-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .consultation-form .form-title {
        font-size: 1.8rem;
    }
    
    .consultation-form .floating-elements::before,
    .consultation-form .floating-elements::after {
        width: 30px;
        height: 30px;
    }
}
