/* Modern Boxed Design - Inspired by Min-Y-Don Holiday Home Park */
:root {
    --primary-blue: #1a3d7c;
    --secondary-blue: #2c5aa0;
    --light-blue: #e8f2ff;
    --accent-blue: #4a90e2;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e1e5e9;
    --dark-gray: #6c757d;
    --text-dark: #2c3e50;
    --success-green: #28a745;
    --warning-orange: #ffc107;
    --error-red: #dc3545;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Scroll offset for anchor links to account for fixed header */
#verification {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--light-blue);
    box-shadow: 0 2px 10px rgba(26, 61, 124, 0.05);
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title h1 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.site-title p {
    color: var(--secondary-blue);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--secondary-blue);
    background: var(--light-blue);
    border-color: var(--accent-blue);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.mobile-menu-active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.mobile-menu-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.mobile-menu-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Warning Banner */
.warning-banner-global {
    background: var(--warning-orange);
    color: var(--text-dark);
    text-align: center;
    padding: 1rem 0;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.warning-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.warning-icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: var(--white);
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(26, 61, 124, 0.08);
    border: 1px solid var(--light-blue);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container .logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

/* Email logo styling */
.email-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
    margin: 10px 0;
}

/* Logo in forms and other areas */
.form-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.logo-container h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--secondary-blue);
    font-size: 1.2rem;
    font-weight: 500;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.intro-text p {
    margin-bottom: 1rem;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(26, 61, 124, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--medium-gray);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 61, 124, 0.15);
    border-color: var(--accent-blue);
    background: var(--light-blue);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-danger {
    background: var(--error-red);
    color: var(--white);
    border-color: var(--error-red);
}

.btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-text small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Quick Verification Section - Simplified */
.quick-verification-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(26, 61, 124, 0.1);
    text-align: center;
}

.quick-verification-section h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.quick-verification-section p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.quick-verify-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-control::placeholder {
    color: var(--dark-gray);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 61, 124, 0.2);
}

/* Verification Results */
.verification-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
}

.verification-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.verification-failed {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.verification-error {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.loading {
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
}

.owner-details {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.owner-details p {
    margin: 0.5rem 0;
    color: #155724;
}

.success-note {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    color: #155724;
    font-weight: 600;
}

.warning-note {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    color: #721c24;
    font-weight: 600;
}

.verification-result .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.verification-result .action-buttons .btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.verification-result .action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Location Permission Alert */
.location-permission {
    margin-bottom: 2rem;
}

.permission-alert {
    background: var(--warning-orange);
    border: 1px solid #e0a800;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    color: #856404;
}

.permission-alert p {
    margin: 0.5rem 0;
}

.permission-alert .btn {
    margin-top: 1rem;
}

/* Info Section */
.info-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(26, 61, 124, 0.1);
}

.info-section h3 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-blue);
    color: var(--light-blue);
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(26, 61, 124, 0.1);
}

.form-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Report Info */
.report-info {
    margin-bottom: 2rem;
}

.report-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--light-blue);
    box-shadow: 0 3px 15px rgba(26, 61, 124, 0.05);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Scam Report Form */
.scam-report-form {
    margin-top: 2rem;
}

/* Owner Registration Form */
.owner-form {
    margin-top: 2rem;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--light-blue);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(26, 61, 124, 0.05);
}

.form-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.form-info {
    background: var(--light-blue);
    border: 1px solid var(--medium-gray);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.form-info h4 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-info .info-item {
    text-align: center;
    color: var(--primary-blue);
}

.form-info .info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-info .info-item h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-info .info-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.manager-entry {
    background: var(--white);
    border: 1px solid var(--light-blue);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(26, 61, 124, 0.05);
}

.manager-entry .form-row {
    margin-bottom: 0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-blue);
}

.form-footer p {
    margin-bottom: 0.5rem;
}

.form-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Owner Form Specific Styles */
.owner-form .form-section:last-of-type {
    margin-bottom: 0;
}

.owner-form .btn-submit {
    margin-top: 2rem;
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owner-form .btn-submit:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 61, 124, 0.2);
}

/* Responsive adjustments for owner form */
@media (max-width: 768px) {
    .form-info .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .manager-entry {
        padding: 1rem;
    }
    
    /* Header responsive */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .site-title h1 {
        font-size: 1.5rem;
    }
    
    .site-title p {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .warning-banner-global {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .quick-verify-form-container {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .quick-verify-form {
        max-width: 100%;
        gap: 1rem;
    }
    
    .quick-verify-form .modern-select,
    .quick-verify-form .modern-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .quick-verify-form .modern-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .quick-verify-form .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

/* Large Laptop/Desktop Screens */
@media (min-width: 1200px) {
    .hero-video-container {
        max-width: 350px;
        max-height: 220px;
    }
    
    .hero-video {
        max-height: 220px;
    }
    
    .feature-video {
        max-height: 180px;
    }
}

/* Medium Laptop Screens */
@media (max-width: 1199px) and (min-width: 1024px) {
    .hero-video-container {
        max-width: 380px;
        max-height: 240px;
    }
    
    .hero-video {
        max-height: 240px;
    }
    
    .feature-video {
        max-height: 200px;
    }
}

/* Medium Mobile Devices */
@media (max-width: 900px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-video-container {
        max-width: 80%;
        max-height: 280px;
    }
    
    .hero-video {
        max-height: 280px;
    }
    
    .feature-video {
        max-height: 220px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .logo-container h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-verification-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.mobile-menu-open {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        width: 100vw !important;
        background: var(--white) !important;
        border-bottom: 2px solid var(--light-blue) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 9999 !important;
        display: flex !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid var(--light-blue);
        background: var(--white);
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a:hover {
        background-color: var(--light-blue);
        color: var(--secondary-blue);
    }
    
    /* Additional mobile browser compatibility */
    @media (max-width: 768px) {
        .nav-links.mobile-menu-open {
            -webkit-overflow-scrolling: touch !important;
            overflow-scrolling: touch !important;
            -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
        }
        
        .nav-links a {
            -webkit-tap-highlight-color: transparent !important;
            tap-highlight-color: transparent !important;
            -webkit-touch-callout: none !important;
            touch-callout: none !important;
        }
    }
    
    
    .logo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 1.2rem;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    .btn-text strong {
        font-size: 1.1rem;
    }
    
    .btn-text small {
        font-size: 0.8rem;
    }
}

/* Verification Logs */
.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.log-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.status-badge.success {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.failed {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modern Form Container */
.form-container-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 2rem auto;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-blue);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Form Sections */
.form-section-modern {
    background: var(--light-gray);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.form-section-modern h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Modern Form Info */
.form-info-modern {
    background: var(--light-blue);
    border: 2px solid var(--accent-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.form-info-modern h4 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.form-info-modern .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.form-info-modern .info-item {
    text-align: center;
    color: var(--primary-blue);
}

.form-info-modern .info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-info-modern .info-item h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.form-info-modern .info-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Modern Manager Entry */
.manager-entry-modern {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
}

.manager-entry-modern .form-row {
    margin-bottom: 0;
}

/* Modern Form Footer */
.form-footer-modern {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-blue);
}

.form-footer-modern p {
    margin-bottom: 0.5rem;
}

.form-footer-modern a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-footer-modern a:hover {
    text-decoration: underline;
}

/* Modern Submit Button */
.modern-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modern-submit-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Modern Alerts */
.alert-modern {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--success-green);
    color: var(--success-green);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--error-red);
    color: var(--error-red);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--warning-orange);
    color: var(--warning-orange);
}

/* Responsive adjustments for modern forms */
@media (max-width: 768px) {
    .form-container-modern {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .form-header h1 {
        font-size: 2rem;
    }
    
    .form-section-modern {
        padding: 1.5rem;
    }
    
    .form-info-modern .info-grid {
        grid-template-columns: 1fr;
    }
    
    .manager-entry-modern {
        padding: 1rem;
    }
}

/* Hero Section - Modern Boxed Design */
.hero-section-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-blue);
    overflow: hidden;
    word-wrap: break-word;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h2 {
    color: var(--secondary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.hero-btn.primary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.hero-btn.secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.hero-btn.secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--white);
    border: 2px solid var(--accent-blue);
    position: relative;
}

.hero-video {
    width: 100%;
    height: auto;
    max-height: 250px;
    min-height: 200px;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
    background: var(--light-gray);
}

/* Feature Video Styles */
.feature-video-container {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--white);
    border: 2px solid var(--accent-blue);
    position: relative;
}

.feature-video {
    width: 100%;
    height: auto;
    max-height: 200px;
    min-height: 150px;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
    background: var(--light-gray);
    position: relative;
}

/* Video thumbnail overlay */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
    z-index: 2;
    cursor: pointer;
}

.video-thumbnail:hover {
    opacity: 0.9;
}

/* Ensure video thumbnails display properly */
.feature-video[poster] {
    background-color: var(--light-gray);
}

/* Secondary button styling for add profile link */
.modern-btn.secondary {
    background: var(--light-blue);
    color: var(--primary-blue);
    border: 2px solid var(--accent-blue);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
}

.modern-btn.secondary:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--white);
    padding: 4rem 0;
    margin: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.how-it-works-card {
    background: var(--light-gray);
    border: 2px solid var(--accent-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.how-it-works-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.how-it-works-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.how-it-works-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.how-it-works-video-container {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--white);
    border: 2px solid var(--accent-blue);
    position: relative;
}

.how-it-works-video {
    width: 100%;
    height: auto;
    max-height: 200px;
    min-height: 150px;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
    background: var(--light-gray);
    position: relative;
}

.hero-card {
    background: var(--light-blue);
    border: 2px solid var(--accent-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Features Grid - Modern Card Design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-blue);
}

/* Verification Section - Modern Boxed Design */
.verification-section-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 3rem 0;
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.verification-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.verification-form-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--medium-gray);
}

.verification-info-card {
    background: var(--light-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--accent-blue);
}

.verification-info-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* Modern Form Styles */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.modern-input,
.modern-select {
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.modern-input:focus,
.modern-select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.modern-input::placeholder {
    color: var(--dark-gray);
}

.modern-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.modern-btn.primary {
    background: var(--primary-blue);
    color: var(--white);
}

.modern-btn.primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.modern-btn.secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.modern-btn.secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.modern-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modern-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Location Permission - Modern */
.location-permission-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--warning-orange);
}

.permission-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.permission-icon {
    font-size: 3rem;
    color: var(--warning-orange);
}

.permission-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.permission-content p {
    color: var(--dark-gray);
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 3rem 0;
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid var(--medium-gray);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Verification Results - Modern */
.verification-result-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-blue);
}

.loading-modern {
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
}

.verification-success-modern {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid var(--success-green);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.verification-failed-modern {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid var(--error-red);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.verification-error-modern {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid var(--warning-orange);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.verification-unverified-modern {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.unverified-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.unverified-icon {
    font-size: 2rem;
}

.unverified-header h3 {
    color: #856404;
    margin: 0;
}

.unverified-message {
    background: white;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.unverified-message p {
    margin: 0.5rem 0;
    color: #856404;
}

.verification-link {
    background: #1a3d7c;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Quick Verification Form in Feature Card */
.verification-card {
    position: relative;
}

.quick-verify-form-container {
    margin-top: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 61, 124, 0.08) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(26, 61, 124, 0.15);
    box-shadow: 0 8px 32px rgba(26, 61, 124, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-verify-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a3d7c, #4a90e2, #1a3d7c);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.quick-verify-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.quick-verify-form .form-group {
    margin-bottom: 0;
    text-align: left;
}

.quick-verify-form .form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-verify-form .modern-select,
.quick-verify-form .modern-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(26, 61, 124, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 61, 124, 0.05);
}

.quick-verify-form .modern-select:focus,
.quick-verify-form .modern-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(26, 61, 124, 0.15), 0 4px 16px rgba(26, 61, 124, 0.1);
    transform: translateY(-1px);
}

.quick-verify-form .modern-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a3d7c 0%, #4a90e2 100%);
    border: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(26, 61, 124, 0.3);
}

.quick-verify-form .modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 61, 124, 0.4);
    background: linear-gradient(135deg, #2c5aa0 0%, #5ba0f2 100%);
}

.success-header,
.failed-header,
.error-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.success-icon,
.failed-icon,
.error-icon {
    font-size: 2rem;
}

.success-header {
    color: var(--success-green);
}

.failed-header {
    color: var(--error-red);
}

.error-header {
    color: var(--warning-orange);
}

.owner-details-modern {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--primary-blue);
}

.success-message {
    color: var(--success-green);
    font-weight: 600;
    margin: 1rem 0;
}

.failed-message {
    color: var(--error-red);
    font-weight: 600;
    margin: 1rem 0;
}

.warning-message {
    color: var(--warning-orange);
    font-weight: 600;
    margin: 1rem 0;
}

.action-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Form Container Modern */
.form-container-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-blue);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Section Modern */
.form-section-modern {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 1.5rem 0;
    border: 1px solid var(--medium-gray);
}

.form-section-modern h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Form Info Modern */
.form-info-modern {
    background: var(--light-blue);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--accent-blue);
}

.form-info-modern h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.form-info-modern .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-info-modern .info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-blue);
}

.form-info-modern .info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-info-modern .info-item h5 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-info-modern .info-item p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Manager Entry Modern */
.manager-entry-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid var(--medium-gray);
}

.manager-entry-modern .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

/* Form Footer Modern */
.form-footer-modern {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.form-footer-modern p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.form-footer-modern a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-footer-modern a:hover {
    color: var(--primary-blue);
}

/* Modern Submit Button */
.modern-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.modern-submit-btn:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

/* Modern Alerts */
.alert-modern {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--success-green);
    color: var(--success-green);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--error-red);
    color: var(--error-red);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--warning-orange);
    color: var(--warning-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-section-modern {
        padding: 1.5rem 1rem;
        margin: 0.5rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-video-container {
        margin: 1rem 0;
        border-radius: 8px;
        max-width: 90%;
        max-height: 250px;
    }
    
    .hero-video {
        border-radius: 8px;
        max-height: 250px;
    }
    
    .feature-video-container {
        margin: 0.5rem 0;
        border-radius: 8px;
        max-width: 100%;
    }
    
    .feature-video {
        border-radius: 8px;
        max-height: 180px;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-it-works-card {
        padding: 1.5rem;
    }
    
    .how-it-works-video {
        max-height: 180px;
    }
    
    .hero-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .hero-card h3 {
        font-size: 1.3rem;
    }
    
    .hero-card p {
        font-size: 1rem;
    }
    
    .verification-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .manager-entry-modern .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-header h1 {   
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .quick-verify-form-container {
        padding: 1rem;
    }
    
    .quick-verify-form .form-group {
        margin-bottom: 1rem;
    }
    
    .modern-input, .modern-select {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .modern-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* Additional mobile responsiveness for very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section-modern {
        padding: 1rem 0.5rem;
        margin: 0.25rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .site-title h1 {
        font-size: 1.5rem;
    }
    
    .site-title p {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .warning-banner-global {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-video-container {
        margin: 0.5rem 0;
        border-radius: 6px;
        max-width: 95%;
        max-height: 200px;
    }
    
    .hero-video {
        border-radius: 6px;
        max-height: 200px;
    }
    
    .feature-video-container {
        margin: 0.5rem 0;
        border-radius: 6px;
        max-width: 100%;
    }
    
    .feature-video {
        border-radius: 6px;
        max-height: 150px;
    }
    
    .how-it-works-section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .how-it-works-card {
        padding: 1rem;
    }
    
    .how-it-works-video {
        max-height: 150px;
    }
    
    .hero-card {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-card p {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Failed Verification Inline */
.verification-failed-inline {
    background: linear-gradient(135deg, #f8e8e8 0%, #fff0f0 100%);
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
    animation: slideInFromTop 0.3s ease-out;
}

.failed-header-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.failed-icon-inline {
    font-size: 24px;
    margin-right: 10px;
}

.failed-message-inline {
    color: #721c24;
    margin-bottom: 20px;
}

.failed-message-inline p {
    margin: 8px 0;
    line-height: 1.5;
}

.failed-actions-inline {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.failed-actions-inline .modern-btn {
    min-width: 120px;
}

/* Location Note */
.location-note {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f8ff 100%);
    border: 1px solid #1a3d7c;
    border-radius: 8px;
    text-align: center;
}

.location-note p {
    margin: 0;
    color: #1a3d7c;
    font-weight: 500;
}

.location-note small {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Inline Verification Results */
.verification-result-inline {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(26, 61, 124, 0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.loading-inline {
    text-align: center;
    color: #1a3d7c;
    font-weight: 600;
    font-size: 1.1rem;
}

.verification-success-inline {
    text-align: center;
}

.success-header-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.success-header-inline .success-icon {
    font-size: 1.5rem;
}

.success-header-inline h4 {
    color: #1a3d7c;
    margin: 0;
    font-size: 1.3rem;
}

.owner-details-inline {
    background: rgba(26, 61, 124, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: left;
}

.owner-details-inline p {
    margin: 0.5rem 0;
    color: #333;
}

.success-message-inline {
    color: #28a745;
    font-weight: 600;
    margin: 1rem 0;
    font-size: 1rem;
}

/* Owner Status Display */
.owner-status-approved {
    text-align: center;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.status-header .status-icon {
    font-size: 1.5rem;
}

.status-header h4 {
    color: #1a3d7c;
    margin: 0;
    font-size: 1.3rem;
}

.status-message {
    color: #1a3d7c;
    font-weight: 500;
    margin: 1rem 0;
    font-size: 1rem;
}

/* DO NOT RENT Warning Styles */
.do-not-rent-warning {
    background: #ffebee !important;
    border: 2px solid #f44336 !important;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

/* Admin Dashboard DO NOT RENT Styles */
.do-not-rent-badge {
    background: #f44336;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
}

.owner-status {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.owner-status.approved {
    color: #28a745;
    font-weight: 600;
}

.owner-status.pending {
    color: #ffc107;
    font-weight: 600;
}

.no-owner {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

/* Scammer Search Styles */
.scammer-search-card {
    border: 2px solid #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.scammer-search-card .feature-icon {
    color: #dc3545;
    font-size: 3.5rem;
}

.scammer-search-card h3 {
    color: #dc3545;
}

.scammer-search-form-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.scammer-search-form .form-group {
    margin-bottom: 1rem;
}

.scammer-search-form .modern-input,
.scammer-search-form .modern-select {
    border: 2px solid rgba(220, 53, 69, 0.3);
    background: white;
}

.scammer-search-form .modern-input:focus,
.scammer-search-form .modern-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.scammer-search-form .modern-btn.danger {
    background: #dc3545;
    border-color: #dc3545;
    width: 100%;
    font-weight: 600;
}

.scammer-search-form .modern-btn.danger:hover {
    background: #c82333;
    border-color: #bd2130;
    transform: translateY(-2px);
}

.search-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 6px;
    border-left: 4px solid #dc3545;
}

.search-note p {
    margin: 0;
    color: #721c24;
    font-size: 0.9rem;
}

.scammer-search-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #dc3545;
}

.scammer-search-loading {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    font-size: 2rem;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scammer-search-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-summary {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.search-summary h4 {
    color: #dc3545;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.search-summary p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.search-message {
    padding: 1rem;
}

.info-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 1rem;
}

.info-box p {
    margin: 0 0 0.5rem 0;
    color: #856404;
    font-size: 0.9rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.report-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
}

.report-link:hover {
    text-decoration: underline;
}

.search-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-actions .modern-btn {
    flex: 1;
    min-width: 150px;
}

/* Scammer Alert Popup Styles */
.scammer-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 53, 69, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    animation: alertFadeIn 0.3s ease;
}

@keyframes alertFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scammer-alert-popup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: alertSlideIn 0.3s ease;
}

@keyframes alertSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-popup-header {
    background: #dc3545;
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-popup-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.alert-popup-body {
    padding: 2rem;
}

.scammer-details {
    margin-bottom: 1.5rem;
}

.scammer-match {
    background: #fff5f5;
    border: 2px solid #f8d7da;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.scammer-match h4 {
    color: #dc3545;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.scammer-match p {
    margin: 0.25rem 0;
    color: #721c24;
    font-size: 0.9rem;
}

.alert-warning {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.alert-warning p {
    margin: 0;
    color: #856404;
    font-weight: 600;
    font-size: 1rem;
}

.alert-popup-footer {
    padding: 1.5rem;
    border-top: 2px solid #f8d7da;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Scammer Search Result Styles */
.scammer-alert-result {
    background: #fff5f5;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 1.5rem;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.alert-icon {
    font-size: 2rem;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alert-header h4 {
    color: #dc3545;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.alert-message {
    margin-bottom: 1.5rem;
}

.alert-message p {
    margin: 0.5rem 0;
    color: #721c24;
    font-weight: 600;
}

.alert-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scammer-no-match-result {
    background: #f0fff4;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 1.5rem;
}

.no-match-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.no-match-icon {
    font-size: 2rem;
}

.no-match-header h4 {
    color: #28a745;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.no-match-message {
    margin-bottom: 1.5rem;
}

.no-match-message p {
    margin: 0.5rem 0;
    color: #155724;
    font-weight: 600;
}

.no-match-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scammer-error-result {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
}

.error-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.error-icon {
    font-size: 2rem;
}

.error-header h4 {
    color: #856404;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.error-message {
    margin-bottom: 1.5rem;
}

.error-message p {
    margin: 0.5rem 0;
    color: #856404;
    font-weight: 600;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Profile Links Section Styles */
.profile-links-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.profile-links-section h4 {
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.section-description {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    font-style: italic;
}

/* Checkbox Styling for Admin Dashboard */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #dc3545;
    border-color: #dc3545;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.form-text {
    display: block;
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Scammer Details Modal Styles */
.scammer-details-modal .modal-body,
.pending-report-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.scammer-info,
.report-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.scammer-info h4,
.report-info h4 {
    color: #dc3545;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.scammer-info p,
.report-info p {
    margin: 0.75rem 0;
    color: #333;
    line-height: 1.5;
}

.scammer-info a,
.report-info a {
    color: #1a3d7c;
    text-decoration: none;
    word-break: break-all;
}

.scammer-info a:hover,
.report-info a:hover {
    text-decoration: underline;
}

.scammer-info strong,
.report-info strong {
    color: #495057;
    font-weight: 600;
}

.do-not-rent-warning p {
    color: #d32f2f !important;
    font-weight: 600;
    margin: 0.5rem 0;
}

.do-not-rent-warning p:first-child {
    font-size: 1.1rem;
    text-align: center;
    background: #f44336;
    color: white !important;
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Popup Modal Styles */
.verification-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.verification-popup-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

/* Owner Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 32px rgba(26, 61, 124, 0.3);
}

.welcome-section h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.welcome-text {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.dashboard-subtitle {
    margin: 0;
    font-size: 1rem;
    opacity: 0.8;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

.dashboard-actions .btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dashboard-actions .btn-info {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-actions .btn-danger {
    background: #dc3545;
    color: white;
}

.dashboard-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dashboard-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-content {
    display: grid;
    gap: 30px;
}

.dashboard-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.dashboard-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.section-title {
    margin: 0 0 20px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-subtitle {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 1rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.profile-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--medium-gray);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-blue);
}

.profile-icon {
    font-size: 2rem;
    background: var(--accent-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-blue);
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-verified {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-unverified {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.verification-code-section {
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid var(--accent-blue);
    text-align: center;
}

.code-display {
    margin-bottom: 20px;
}

.code-label {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.current-code {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 20px;
    border-radius: 12px;
    margin: 15px 0;
    letter-spacing: 3px;
    border: 3px solid;
}

.code-active {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.code-inactive {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

.code-info {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
}

.status-active {
    color: #28a745;
    font-weight: 600;
}

.status-inactive {
    color: #dc3545;
    font-weight: 600;
}

.code-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-content h4 {
    margin: 0 0 5px 0;
    color: #856404;
}

.warning-content p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-actions .btn {
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-actions .btn-primary {
    background: var(--primary-blue);
    color: white;
}

.quick-actions .btn-success {
    background: #28a745;
    color: white;
}

.quick-actions .btn-info {
    background: #17a2b8;
    color: white;
}

.quick-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .dashboard-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .current-code {
        font-size: 2rem;
        padding: 15px;
    }
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e1e5e9;
    position: relative;
}

.popup-icon {
    font-size: 2rem;
}

.popup-header h3 {
    color: #1a3d7c;
    margin: 0;
    flex: 1;
    font-size: 1.4rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: #f8f9fa;
    color: #333;
}

.popup-body {
    padding: 1.5rem;
}

.popup-owner-details {
    background: rgba(26, 61, 124, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.popup-owner-details p {
    margin: 0.5rem 0;
    color: #333;
}

.popup-message-content {
    margin: 1rem 0;
}

.popup-message-content p {
    margin: 1rem 0;
    line-height: 1.6;
}

.verification-link-popup {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.verification-link-popup strong {
    color: #856404;
    font-size: 1.1rem;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.popup-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e1e5e9;
    text-align: center;
}

.failed-message {
    color: #dc3545;
    font-weight: 600;
}

.warning-message {
    color: #856404;
    font-weight: 500;
}

.error-message {
    color: #dc3545;
    font-weight: 500;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--light-blue);
    background: var(--light-gray);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.4rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--error-red);
    color: var(--white);
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--light-blue);
    background: var(--light-gray);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Scam Report Modal Specific Styles */
.scam-report-modal {
    width: 100%;
    max-width: 800px;
}

.report-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-section {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--medium-gray);
}

.detail-section h4 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.detail-item span {
    color: var(--dark-gray);
    font-size: 1rem;
}

.platform-badge {
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.detail-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
}

.evidence-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.evidence-file {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.evidence-file:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.file-preview img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-preview img:hover {
    transform: scale(1.05);
}

.file-info {
    margin-top: 0.5rem;
}

.file-name {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
    word-break: break-word;
}

.file-size {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.8rem;
}

.link {
    color: var(--accent-blue);
    text-decoration: none;
    word-break: break-all;
}

.link:hover {
    text-decoration: underline;
}

/* Image Modal Styles */
.image-modal {
    width: 100%;
    max-width: 90vw;
    max-height: 90vh;
}

.image-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--light-blue);
    background: var(--light-gray);
}

.image-modal-body {
    padding: 1rem;
    text-align: center;
}

.full-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--light-blue);
    background: var(--light-gray);
    text-align: center;
}

/* Mobile responsiveness for popup */
@media (max-width: 768px) {
    .verification-popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 70vh;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .evidence-files {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    .popup-body {
        padding: 1rem;
    }
    
    .popup-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .popup-actions .modern-btn {
        width: 100%;
    }
    
    .scammer-search-form-container {
        padding: 0.75rem;
    }
    
    .scammer-search-result {
        margin-top: 1rem;
        padding: 0.75rem;
    }
    
    .search-actions {
        flex-direction: column;
    }
    
    .search-actions .modern-btn {
        width: 100%;
    }
}
