@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
    --primary-blue: #0b1c3c;
    --primary-blue-light: #16366b;
    --accent-red: #d31225;
    --accent-red-hover: #e81a2f;
    --bg-dark: #050a14;
    --bg-card: rgba(11, 28, 60, 0.7);
    --text-light: #f4f6f9;
    --text-muted: #b0bec5;
    --white: #ffffff;
    --gold: #d4af37;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--accent-red);
}

.text-center {
    text-align: center;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--accent-red);
    margin: 20px 0 30px 0;
    border-radius: 2px;
}

.divider.center {
    margin: 20px auto 30px auto;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #a00b1a);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 18, 37, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-red-hover), var(--accent-red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 18, 37, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text strong {
    color: var(--accent-red);
}

.nav-btn.desktop-cta {
    display: none !important;
}

.mobile-cta-only {
    display: block;
}

.nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #050a14;
    padding: 100px 40px;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block !important;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1000;
    position: relative;
    transition: 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--accent-red);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 50%, var(--primary-blue-light) 0%, var(--primary-blue) 40%, var(--bg-dark) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    color: var(--gold);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
    background: linear-gradient(135deg, var(--white), #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.candidate-img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(211, 18, 37, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    animation: floatImage 6s ease-in-out infinite;
    display: block;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.candidate-photo-placeholder {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-shadow {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-blue-light), 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.features-list {
    margin-top: 30px;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.features-list li i {
    color: var(--accent-red);
    font-size: 1.3rem;
}

.values {
    background-color: #03060c;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(211, 18, 37, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card .icon-box {
    width: 65px;
    height: 65px;
    background: rgba(211, 18, 37, 0.1);
    color: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.value-card:hover .icon-box {
    background: var(--accent-red);
    color: var(--white);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    color: var(--text-muted);
}

.cta {
    position: relative;
    background: url('https://images.unsplash.com/photo-1464695110811-dcf39ba0cb28?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    text-align: center;
    padding: 120px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 28, 60, 0.95), rgba(5, 10, 20, 0.98));
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.footer {
    background-color: #020408;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.footer h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-contact ul li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--accent-red);
    margin-top: 5px;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {

    .hero-content,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        order: -1;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .divider {
        margin: 20px auto 30px auto;
    }

    .features-list li {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 25px auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        width: 80%;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section {
        padding: 60px 0;
    }
}