/* --- Custom Properties --- */
:root {
    /* Brand Colors: Plum & Gold for Dignity and Excellence */
    --primary: #4A154B; /* Deep Plum */
    --primary-light: #6A2B6B;
    --primary-dark: #2D0D2E;
    
    --accent: #D4AF37; /* Warm Gold */
    --accent-hover: #F1C40F;
    
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --bg-light: #F9F9FB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects (Soft UI) */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.text-white { color: var(--white); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.w-100 { width: 100%; }

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.brand-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.2;
    white-space: nowrap;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

/* Background Slider container */
.hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(74,21,75,0.85) 0%, rgba(74,21,75,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.tagline {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(74, 21, 75, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    outline: none;
}

.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

.slider-arrow i {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: var(--accent);
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--accent);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    .slider-arrow.prev {
        left: 1rem;
    }
    .slider-arrow.next {
        right: 1rem;
    }
}

/* --- Founder Section --- */
.founder-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.founder-img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.award-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-header h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- Founder Gallery & Pillars Styles --- */
.founder-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.gallery-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 21, 75, 0.15);
}

.founder-bio-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.founder-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.pillar-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
    border-top: 1px solid rgba(0,0,0,0.01);
    border-right: 1px solid rgba(0,0,0,0.01);
    border-bottom: 1px solid rgba(0,0,0,0.01);
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    color: var(--primary);
    background-color: rgba(74, 21, 75, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background-color: var(--primary);
    color: var(--white);
}

.pillar-icon i {
    width: 20px;
    height: 20px;
}

.pillar-info h4 {
    color: var(--primary-dark);
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.pillar-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* --- Dual Model Section --- */
.model-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.sub-heading {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.model-section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.model-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.model-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.model-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.model-card.highlight {
    background-color: var(--primary);
    color: var(--white);
}

.model-card.highlight p {
    color: rgba(255,255,255,0.8);
}

.model-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 21, 75, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.model-card.highlight .model-icon {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent);
}

.model-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--primary-light);
    color: white;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 1rem 0 1.5rem;
}

.model-badge.gold {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.model-connector {
    color: var(--accent);
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* --- Job Portal Section --- */
.jobs-section {
    padding: 6rem 0;
}

.jobs-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.job-location {
    background: rgba(74, 21, 75, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.job-location i { width: 12px; height: 12px; }

.job-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.job-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.apply-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.apply-btn:hover {
    background: var(--primary-light);
}

/* --- Partners Section --- */
.partners-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(45, 13, 46, 0.95), rgba(45, 13, 46, 0.95)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.partners-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.partners-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.indicator i {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.indicator span {
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Footer --- */
.footer {
    background-color: #1A081B;
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-about p {
    color: rgba(255,255,255,0.6);
    margin: 1.5rem 0;
    max-width: 400px;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

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

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 1rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.location-badge {
    display: inline-block;
    background: rgba(74, 21, 75, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.application-form h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 21, 75, 0.1);
}

/* --- Responsive --- */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.88rem;
    }
    .brand {
        gap: 0.75rem;
    }
    .brand-title {
        font-size: 1.15rem;
    }
    .brand-subtitle {
        font-size: 0.7rem;
    }
    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    
    .founder-grid, .model-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content-col { order: -1; }
    
    .d-none-mobile { display: none; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .mobile-toggle { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .trust-indicators { flex-direction: column; gap: 1.5rem; }
    .cta-buttons { flex-direction: column; }
}

/* --- Toast Notification --- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    pointer-events: none;
}

.toast-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--accent);
    max-width: 400px;
    pointer-events: auto;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-card.show {
    transform: translateX(0);
}

.toast-icon {
    color: #2e7d32; /* Premium Green */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.toast-icon i {
    width: 24px;
    height: 24px;
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.toast-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--primary);
}

/* --- Donation Presets --- */
.amount-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.preset-btn {
    padding: 0.75rem 0.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
}

.preset-btn:hover {
    border-color: var(--primary-light);
    background: rgba(74, 21, 75, 0.05);
}

.preset-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 480px) {
    .amount-presets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Staffing Profile Page Styles --- */
.section-padding {
    padding: 6rem 0;
}

.sub-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(74,21,75,0.92) 0%, rgba(74,21,75,0.75) 100%);
    z-index: 1;
}

.sub-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.sub-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sub-hero p {
    font-size: 1.35rem;
    color: var(--accent);
    font-weight: 500;
}

.staffing-grid-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-bio {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.highlight-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-weight: 600;
}

.m-v-block {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.02);
}

.m-v-block:last-child {
    margin-bottom: 0;
}

.m-v-icon {
    color: var(--accent);
    background: rgba(74, 21, 75, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-v-icon i {
    width: 24px;
    height: 24px;
}

.m-v-block h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.m-v-block p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Core Values styling */
.values-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.value-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    flex: 1 1 200px;
    max-width: 260px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.01);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 21, 75, 0.1);
}

.value-icon {
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.value-icon i {
    width: 32px;
    height: 32px;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Services section */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent);
}

.service-icon {
    color: var(--primary);
    background: rgba(74, 21, 75, 0.06);
    width: 55px;
    height: 55px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-icon i {
    width: 26px;
    height: 26px;
}

.service-card h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Industries Badge Cloud */
.industries-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ind-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ind-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.03);
}

.ind-badge i {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.why-list li i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* CEO Message Card */
.ceo-message-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 3.5rem;
    align-items: center;
    border-left: 6px solid var(--primary);
}

.ceo-img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.ceo-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.ceo-signature h4 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.ceo-signature span {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* B2B CTAs */
.partnerships-cta {
    position: relative;
    padding: 7rem 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.partnerships-cta h2 {
    font-size: 2.6rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.partnerships-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.bold-cta-text {
    font-size: 1.35rem !important;
    font-weight: 700;
    color: var(--accent) !important;
}

/* Responsive adjustments for staffing grid */
@media (max-width: 992px) {
    .sub-hero {
        height: auto;
        padding: 5rem 0;
    }
    .sub-hero h1 {
        font-size: 2.5rem;
    }
    .staffing-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ceo-message-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    .ceo-img-col {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* --- Bank Details Card --- */
.bank-details-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin: 1.5rem 0;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.bank-details-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bank-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.bank-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.bank-icon {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.7);
}

.bank-card-body {
    margin-bottom: 1.5rem;
}

.account-num-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.account-num-wrapper .label,
.bank-card-holder .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
}

.num-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-number {
    font-family: monospace;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.copy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-badge:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.copy-badge.copied {
    background: #2e7d32;
    color: var(--white);
    border-color: #2e7d32;
}

.bank-card-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.bank-card-holder {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bank-card-holder .value {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Transfer Notice --- */
.transfer-notice {
    display: flex;
    gap: 1rem;
    background: rgba(74, 21, 75, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    text-align: left;
}

.transfer-notice i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.transfer-notice p {
    margin: 0;
}

.transfer-notice a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.transfer-notice a:hover {
    color: var(--primary-light);
}


