* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at 10% 20%, #0a0f1e 0%, #030613 100%);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 10px;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(125deg, #0f172a 0%, #020617 40%, #000000 100%);
    background-size: 200% 200%;
    animation: bgWave 12s ease infinite;
}
@keyframes bgWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(249,115,22,0.15), rgba(250,204,21,0.05));
    backdrop-filter: blur(8px);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
    pointer-events: none;
}
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.3; }
    50% { transform: translate(40px, -40px) rotate(10deg) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-20px, 20px) rotate(-5deg) scale(0.9); opacity: 0.3; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.navbar {
    backdrop-filter: blur(20px);
    background: rgba(15, 23, 42, 0.65);
    border-radius: 80px;
    margin: 25px auto 35px;
    padding: 12px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}
.navbar:hover {
    border-color: rgba(249,115,22,0.5);
    box-shadow: 0 12px 40px rgba(249,115,22,0.2);
}
.logo h1 {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.logo p {
    font-size: 0.7rem;
    color: #cbd5e6;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #facc15);
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover {
    color: #f97316;
}

.btn-3d {
    background: linear-gradient(95deg, #f97316, #ea580c);
    border: none;
    padding: 10px 32px;
    border-radius: 60px;
    font-weight: 600;
    color: white;
    box-shadow: 0 5px 15px rgba(249,115,22,0.4);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn-3d:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(249,115,22,0.6);
    background: linear-gradient(95deg, #ff841f, #f96510);
}
.btn-3d:active {
    transform: translateY(2px);
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 80px;
    gap: 2rem;
}
.hero-content {
    flex: 1;
}
.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}
.gradient-text {
    background: linear-gradient(90deg, #f97316, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-content p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}
.hero-3d-card {
    flex: 1;
    perspective: 800px;
}
.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.2s;
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.5);
}
.floating-card i {
    font-size: 6rem;
    color: #f97316;
    text-shadow: 0 0 20px rgba(249,115,22,0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 4rem 0 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.tilt-card {
    background: rgba(20, 30, 55, 0.55);
    backdrop-filter: blur(18px);
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.tilt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.1), transparent);
    transition: left 0.6s;
}
.tilt-card:hover::before {
    left: 100%;
}
.tilt-card:hover {
    transform: translateY(-8px);
    border-color: #f97316;
    box-shadow: 0 28px 40px -12px rgba(249,115,22,0.3);
}
.tilt-card i {
    font-size: 2.8rem;
    color: #facc15;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}
.tilt-card:hover i {
    transform: scale(1.1);
}
.tilt-card h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}
.tilt-card p {
    color: #cbd5e6;
}

.about {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    border-radius: 56px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}
.about:hover {
    border-color: rgba(249,115,22,0.4);
}
.about-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-list {
    list-style: none;
    margin-top: 1rem;
}
.about-list li {
    margin: 0.8rem 0;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.contact-premium {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(20px);
    border-radius: 56px;
    padding: 3rem;
    margin: 4rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}
.contact-premium:hover {
    border-color: rgba(249,115,22,0.5);
    box-shadow: 0 10px 30px rgba(249,115,22,0.1);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-card:hover {
    transform: translateX(8px);
    background: rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.4);
}
.contact-card i {
    font-size: 2rem;
    color: #f97316;
    width: 50px;
    text-align: center;
}
.contact-card div {
    flex: 1;
}
.contact-card strong {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 5px;
}
.contact-card span, .contact-card a {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.contact-card a:hover {
    color: #f97316;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.2);
}
.form-group textarea {
    border-radius: 32px;
    min-height: 100px;
    resize: vertical;
}
select option {
    background: #1e293b;
    color: white;
}

.alert {
    padding: 14px 20px;
    border-radius: 60px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.5s ease;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.alert-success {
    background: linear-gradient(95deg, #15803d, #166534);
    border-left: 4px solid #4ade80;
}
.alert-error {
    background: linear-gradient(95deg, #b91c1c, #991b1b);
    border-left: 4px solid #f87171;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    color: #94a3b8;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content h2 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        border-radius: 40px;
        padding: 16px;
    }
    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding: 30px 0 50px;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-premium {
        padding: 1.8rem;
    }
    .tilt-card {
        padding: 1.5rem;
    }
    .about {
        padding: 1.8rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .btn-3d {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
/* ========== PREMIUM FOOTER ========== */
.premium-footer {
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 48px 48px 0 0;
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(249,115,22,0.3);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #facc15;
    position: relative;
    display: inline-block;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #facc15);
    border-radius: 2px;
}

.footer-column p {
    color: #cbd5e6;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249,115,22,0.4);
}

.footer-links, .footer-contact, .footer-hours {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #cbd5e6;
    text-decoration: none;
    transition: 0.2s;
    position: relative;
    padding-left: 0;
}
.footer-links a:hover {
    color: #f97316;
    padding-left: 5px;
}
.footer-contact li, .footer-hours li {
    color: #cbd5e6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}
.footer-contact i, .footer-hours i {
    color: #f97316;
    width: 20px;
    font-size: 1rem;
}
.footer-contact a {
    color: #cbd5e6;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 2rem 1rem 1rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact li, .footer-hours li {
        justify-content: center;
    }
}
/* ========== PREMIUM FOOTER STYLES ========== */
.premium-footer {
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 48px 48px 0 0;
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(249,115,22,0.3);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #facc15;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #facc15);
    border-radius: 2px;
}

.footer-column p {
    color: #cbd5e6;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: #f97316;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249,115,22,0.4);
}

.footer-links, .footer-contact, .footer-hours {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e6;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #f97316;
    padding-left: 5px;
}

.footer-contact li, .footer-hours li {
    color: #cbd5e6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact i, .footer-hours i {
    color: #f97316;
    width: 20px;
    font-size: 1rem;
}

.footer-contact a {
    color: #cbd5e6;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 2rem 1rem 1rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact li, .footer-hours li {
        justify-content: center;
    }
}
/* Premium Footer Styles */
.premium-footer {
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 48px 48px 0 0;
    margin-top: 60px;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(249,115,22,0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand h3 span {
    color: #f97316;
    background: none;
    -webkit-background-clip: unset;
}

.footer-brand p {
    color: #cbd5e6;
    line-height: 1.5;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background: #f97316;
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-hours h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #facc15;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after, .footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #facc15);
}

.footer-links ul, .footer-contact ul, .footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e6;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #f97316;
    padding-left: 5px;
}

.footer-contact li, .footer-hours li {
    color: #cbd5e6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact i, .footer-hours i {
    color: #f97316;
    width: 20px;
}

.footer-contact a {
    color: #cbd5e6;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links h4::after, .footer-contact h4::after, .footer-hours h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .footer-contact li, .footer-hours li {
        justify-content: center;
    }
}
/* Premium Footer */
.premium-footer {
    background: rgba(5, 10, 25, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 48px 48px 0 0;
    margin-top: 60px;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(249,115,22,0.4);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-column h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #facc15;
    position: relative;
    display: inline-block;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #facc15);
}
.footer-column p {
    color: #cbd5e6;
    line-height: 1.5;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: #f97316;
    transform: translateY(-3px);
}
.footer-links, .footer-contact, .footer-hours {
    list-style: none;
    padding: 0;
}
.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #cbd5e6;
    text-decoration: none;
    transition: 0.2s;
}
.footer-links a:hover {
    color: #f97316;
    padding-left: 5px;
}
.footer-contact li, .footer-hours li {
    color: #cbd5e6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.footer-contact i, .footer-hours i {
    color: #f97316;
    width: 20px;
}
.footer-contact a {
    color: #cbd5e6;
    text-decoration: none;
}
.footer-contact a:hover {
    color: #f97316;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact li, .footer-hours li {
        justify-content: center;
    }
}
/* ---- Latest Jobs Section ---- */
.jobs-section {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.job-card {
    background: rgba(15, 21, 53, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s ease;
}
.job-card:hover {
    transform: translateY(-6px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.job-icon { font-size: 32px; }
.job-title { font-size: 20px; font-weight: 700; color: #00d4ff; }
.job-org { font-size: 14px; color: #94a3b8; }

.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.status-open {
    background: rgba(0, 208, 132, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00d084;
}
.status-closing {
    background: rgba(255, 165, 2, 0.15);
    border: 1px solid rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #e0e7ff;
    margin-bottom: 16px;
}
.job-meta strong { color: #00d4ff; }
.deadline {
    background: rgba(255, 165, 2, 0.08);
    border: 1px solid rgba(255, 165, 2, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    color: #ffa502;
    font-weight: 600;
}

.job-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-apply-small {
    background: linear-gradient(135deg, #00d084, #00b366);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}
.btn-apply-small:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.3);
}
.btn-details-small {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.btn-details-small:hover {
    background: rgba(0, 212, 255, 0.2);
}

.btn-view-all {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #00d4ff;
    border-radius: 50px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-view-all:hover {
    background: #00d4ff;
    color: #0a0e27;
}