:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fdfdfd;
    --bg-tertiary: #f4f6f8;
    --text-primary: #111111;
    --text-secondary: #636b74;
    --accent-gold: #ffbe28;
    --accent-gold-hover: #e5aa24;
    --accent-blue: #c4d7e0;
    --bg-dark: #1a1a1a;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background-color: #ffffff;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    padding: 1rem 0;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gold);
    color: #000000;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 190, 40, 0.3);
}

.btn-primary-outline {
    border: 1px solid #eaeaea;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-primary-outline:hover {
    border-color: var(--text-primary);
}

/* HERO SECTION */
.hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    background-color: var(--bg-primary);
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Visual Right Side */
.hero-visual {
    position: relative;
    width: 100%;
    margin-left: auto;
    display: flex;
    justify-content: center;
}

.visual-backdrop {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 90%;
    height: 100%;
    background-color: var(--accent-blue);
    border-radius: 12px 12px 12px 100px;
    z-index: 0;
    transform: rotate(3deg);
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 12px 12px 12px 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ABOUT SECTION */
.about {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-quote {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.about-text-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FEATURE GRID (Bottom Border style like the image) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* TEAM SECTION */
.team {
    padding: 6rem 0;
    background-color: #fafafa;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: var(--transition);
    text-align: left;
}

.team-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card-icon {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.role {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CONTACT SECTION - DARK BLOCK */
.contact-cta {
    padding: 0 0 6rem 0;
    background-color: #fafafa;
}

.contact-box {
    background-color: var(--bg-dark);
    border-radius: 12px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    color: #ffffff;
}

.contact-cta-info h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta-info p {
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.info-line i {
    color: var(--accent-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid #10b981;
}

.hidden {
    display: none;
}

/* FOOTER */
footer {
    padding: 2rem 0;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {

    .hero-content,
    .about-flex,
    .feature-grid,
    .team-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .contact-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}