/* Genesis Transport UK - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --primary: #0a2540;
    --primary-light: #1a3a5c;
    --secondary: #0066cc;
    --secondary-light: #3388dd;
    --accent: #00a86b;
    --accent-light: #00c77b;
    --text-dark: #1a1a2e;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7f9fc;
    --bg-gray: #edf2f7;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-light);
    color: white;
}


/* ===== Header & Navigation ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo:hover { color: var(--primary); }

.logo-icon { font-size: 2rem; }

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 10px 18px;
    color: var(--text-medium);
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.nav-links a:hover {
    color: var(--secondary);
    background: var(--bg-light);
}

.nav-highlight {
    background: var(--secondary) !important;
    color: white !important;
}

.nav-highlight:hover {
    background: var(--secondary-light) !important;
    color: white !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 200px;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: white;
    font-size: 3.25rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .btn-secondary {
    border-color: white;
    color: white;
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ===== Stats Section ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-medium);
    font-size: 1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 1.125rem;
}


/* ===== COS Verification ===== */
.verify-section {
    padding: 140px 0 100px;
    background: var(--bg-light);
    min-height: 100vh;
}

.verify-container {
    max-width: 600px;
    margin: 0 auto;
}

.verify-header {
    text-align: center;
    margin-bottom: 40px;
}

.verify-header .badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.verify-form-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-hint {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 6px;
}

.verify-form-card .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

/* ===== Verification Result ===== */
.result-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 32px;
}

.result-header {
    padding: 32px;
    text-align: center;
}

.result-header.valid {
    background: linear-gradient(135deg, #00a86b 0%, #00c77b 100%);
    color: white;
}

.result-header.invalid {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: white;
}

.result-header.expired {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.result-header h3 {
    color: white;
    margin-bottom: 4px;
}

.result-status {
    font-size: 0.875rem;
    opacity: 0.9;
}

.result-body {
    padding: 32px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.result-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-expired {
    background: #fff3cd;
    color: #856404;
}

.status-withdrawn {
    background: #f8d7da;
    color: #721c24;
}

/* ===== Contact Form ===== */
.contact-section {
    padding: 140px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-details .icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details strong {
    display: block;
    margin-bottom: 4px;
}

.contact-details span {
    color: var(--text-medium);
}

.contact-form-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
}

/* ===== About Page ===== */
.about-hero {
    padding: 160px 0 80px;
    background: var(--primary);
    color: white;
    text-align: center;
}

.about-hero h1 {
    color: white;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-medium);
}

.values-list {
    list-style: none;
    margin-top: 32px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.values-list .check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

/* ===== Services Page ===== */
.services-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.services-hero h1 {
    color: white;
}

.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}

.service-image {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.service-content h2 {
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}


/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

/* ===== Alerts ===== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* ===== Admin Styles ===== */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 24px;
}

.login-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
}

.login-card h1 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.login-card .subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.admin-header {
    background: var(--primary);
    padding: 20px 0;
    color: white;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    color: white;
    font-size: 1.5rem;
}

.admin-header a {
    color: rgba(255,255,255,0.8);
}

.admin-header a:hover {
    color: white;
}

.admin-content {
    padding: 40px 0;
    min-height: calc(100vh - 80px);
    background: var(--bg-light);
}

.admin-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.admin-card-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h2 {
    font-size: 1.25rem;
    margin: 0;
}

.admin-card-body {
    padding: 32px;
}

/* ===== Data Table ===== */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover {
    background: var(--bg-light);
}

.data-table .actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-edit {
    background: var(--secondary);
    color: white;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-edit:hover {
    background: var(--secondary-light);
    color: white;
}

.btn-delete:hover {
    background: #c82333;
    color: white;
}

/* ===== Search Box ===== */
.search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.search-box input:focus {
    outline: none;
    border-color: var(--secondary);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid,
    .about-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .verify-form-card {
        padding: 32px 24px;
    }
    
    .data-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .result-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .result-value {
        text-align: left;
    }
}


/* ===== Page Header ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Verify COS Page ===== */
.verify-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.verify-form-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
}

.info-box h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.info-box p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.info-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.verify-form {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.verify-form small {
    display: block;
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-top: 6px;
}

.btn-block {
    width: 100%;
}

.verify-result-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Alert with icon */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert strong {
    display: block;
    margin-bottom: 4px;
}

.alert p {
    margin: 0;
}

/* Result Card */
.result-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.result-header {
    padding: 24px;
    text-align: center;
    color: white;
}

.result-header.status-active {
    background: linear-gradient(135deg, #00a86b 0%, #00c77b 100%);
}

.result-header.status-expired {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.result-header.status-withdrawn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.result-header .status-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.result-header h3 {
    color: white;
    margin: 0;
}

.result-body {
    padding: 24px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.result-row:last-child {
    border-bottom: none;
}

.result-row .label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.result-row .value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

.result-footer {
    padding: 16px 24px;
    background: var(--bg-light);
    text-align: center;
}

.result-footer p {
    margin: 0;
    color: var(--text-light);
}

/* Placeholder Message */
.placeholder-message {
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px dashed var(--border);
}

.placeholder-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.placeholder-message h3 {
    margin-bottom: 8px;
}

.placeholder-message p {
    color: var(--text-medium);
    margin: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.info-card h4 {
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9375rem;
}

/* Responsive for Verify Page */
@media (max-width: 992px) {
    .verify-container {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    
    .verify-form {
        padding: 24px;
    }
}


/* ===== Additional Styles for New Layouts ===== */

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Hiring Banner */
.hiring-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #008855 100%);
    padding: 40px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.banner-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    color: white;
    margin-bottom: 8px;
}

.banner-text p {
    margin: 0;
    opacity: 0.95;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* About Preview Section */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-content h2 {
    margin-bottom: 24px;
}

.about-preview-content p {
    color: var(--text-medium);
}

.about-preview-image svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Services Preview */
.services-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-preview-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.service-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-preview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.service-preview-icon svg {
    width: 100%;
    height: 100%;
}

.service-preview-card h3 {
    margin-bottom: 12px;
}

.service-preview-card p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
}

.service-link:hover {
    color: var(--secondary-light);
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
}

.stats-section .stat-number {
    color: white;
}

.stats-section .stat-label {
    color: rgba(255,255,255,0.7);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--text-medium);
}

.about-intro-image svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9375rem;
}

/* Sponsor Info Section */
.sponsor-info {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.sponsor-info-image svg {
    width: 100%;
    height: auto;
}

.sponsor-info-content h2 {
    margin-bottom: 24px;
}

.sponsor-info-content p {
    color: var(--text-medium);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Careers Box */
.careers-box {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.careers-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.careers-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.careers-content h3 {
    margin-bottom: 16px;
    color: var(--accent);
}

.careers-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.careers-content ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-medium);
}

.careers-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Service Detail Row */
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-row.reverse {
    direction: rtl;
}

.service-detail-row.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content > p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-detail-image svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.service-features-list li:last-child {
    border-bottom: none;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: bold;
}

.service-features-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.service-features-list p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9375rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info-section h2 {
    margin-bottom: 16px;
}

.contact-info-section > p {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card-content h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-card-content p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.office-hours {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
}

.office-hours h4 {
    margin-bottom: 16px;
}

.office-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.office-hours li span {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form-section {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-message svg {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.success-message h3 {
    color: var(--accent);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .hero-grid,
    .about-preview,
    .about-intro,
    .sponsor-info,
    .service-detail-row,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-row.reverse {
        direction: ltr;
    }
    
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image svg {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-preview,
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .careers-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .careers-content ul {
        text-align: left;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ===== Footer Updates ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-logo .logo-text span {
    color: var(--secondary-light);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-badge {
    margin-top: 16px;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
}
