/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Color Variables */
:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin: 10px;
}

.btn-small {
    padding: 15px 30px;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 120px;
    margin: 10px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.donate-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    background: var(--background-white);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.image-placeholder p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Services Section */
.services {
    background: var(--background-white);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Donation Section */
.donation {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    z-index: 2;
}

.donation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.donation h2,
.donation-content h2 {
    color: white;
    margin-bottom: 20px;
}

.donation-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.amount-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: inherit;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.amount-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.donation-buttons {
    margin-bottom: 30px;
}

.donation-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Contact Section */
.contact {
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    space-y: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 250px;
        margin: 10px 0;
    }

    /* Grids */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Donation */
    .donation-amounts {
        grid-template-columns: 1fr 1fr;
    }

    .donation-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 250px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .donation-amounts {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.amount-card,
.stat {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations would be handled by JavaScript */ 

/* Job Pages Styles */
.job-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

.job-breadcrumb {
    margin-bottom: 20px;
}

.job-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.job-breadcrumb a:hover {
    color: white;
}

.job-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.job-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.job-highlight i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.job-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.job-main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.job-section {
    margin-bottom: 40px;
}

.job-section h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.job-section h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.job-responsibilities {
    list-style: none;
    padding: 0;
}

.job-responsibilities li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.job-responsibilities li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 20px;
}

.requirement-category li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    top: 8px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.skill-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.job-card h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.job-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.job-info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.job-info-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.job-info-item p {
    color: var(--text-secondary);
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--success-color);
    font-size: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

.job-card {
    position: relative;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.job-details {
    margin: 20px 0;
}

.job-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.job-info i {
    color: var(--primary-color);
}

.job-salary {
    margin-bottom: 20px;
}

.job-salary strong {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Donation Page Styles */
.donation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-secondary);
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.login-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.login-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.login-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.login-option:nth-child(1) .login-icon {
    background: #4285f4;
    color: white;
}

.login-option:nth-child(3) .login-icon {
    background: #00a1f1;
    color: white;
}

.login-content h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.login-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.login-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.login-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    background: white;
    padding: 0 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 5px 0;
}

.login-footer i {
    color: var(--success-color);
    margin-right: 8px;
}

/* Compact Login Styles */
.login-options-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
    align-items: center;
}

.login-btn-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 280px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.login-btn-compact:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.login-btn-compact i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.google-btn {
    background: #ea4335;
    color: white;
}

.google-btn:hover {
    background: #d33426;
}

.microsoft-btn {
    background: #0078d4;
    color: white;
}

.microsoft-btn:hover {
    background: #106ebe;
}

.login-divider-compact {
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.login-divider-compact::before {
    content: none;
}

.login-divider-compact span {
    background: white;
    padding: 0 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.user-details h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.user-details p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.custom-amount {
    margin: 30px 0;
}

.custom-amount label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.amount-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
}

.currency {
    background: var(--background-light);
    padding: 15px 20px;
    color: var(--text-primary);
    font-weight: 600;
    border-right: 1px solid var(--border-color);
}

.amount-input input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    outline: none;
}

.amount-input input:focus {
    background: var(--background-light);
}

.donation-frequency {
    margin: 30px 0;
}

.donation-frequency h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.frequency-options {
    display: flex;
    gap: 20px;
}

.frequency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.frequency-option:hover {
    border-color: var(--primary-color);
}

.frequency-option input[type="radio"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.frequency-option input[type="radio"]:checked + .checkmark {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.frequency-option input[type="radio"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.donation-summary {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.donation-summary h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid var(--primary-color);
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
}

.apply-cta {
    text-align: center;
    margin: 30px 0;
}

.apply-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.contact-details .contact-item i {
    color: var(--primary-color);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .job-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .job-main-content {
        padding: 30px 20px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .job-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .login-card {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .login-option {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .login-btn-compact {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .frequency-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .job-card {
        padding: 20px 15px;
    }
    
    .login-card {
        padding: 20px 15px;
    }
    
    .amount-input {
        max-width: 100%;
    }
} 

.vessel-image {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
    object-fit: cover;
} 