/* ==================== */
/* SHARED STYLES        */
/* Cloud Bear Consulting */
/* ==================== */

:root {
    --primary: #FFCC2A;
    --primary-hover: #E6B800;
    --primary-glow: rgba(255, 204, 42, 0.3);
    --accent: #425B76;
    --accent-dark: #374A5E;
    --accent-light: #5A7A9A;
    --background: #FFFFFF;
    --background-alt: #F8F9FA;
    --text-primary: #1A1A1A;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(255, 204, 42, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(255, 204, 42, 0.2);
}

.btn-secondary {
    background: var(--accent);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* ==================== */
/* TOP BANNER           */
/* ==================== */
.top-banner {
    background: var(--primary);
    color: var(--text-primary);
    text-align: center;
    padding: 12px 24px;
    margin-top: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ==================== */
/* HEADER               */
/* ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.header .btn {
    padding: 12px 28px;
    font-size: 15px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--primary);
}

/* ==================== */
/* FOOTER               */
/* ==================== */
.footer {
    padding: 48px 0;
    background: #363435;
    color: var(--white);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-brand {
    margin-bottom: 4px;
}

.footer-logo img {
    height: 120px;
    width: auto;
    display: block;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer-email {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-email:hover {
    opacity: 1;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    font-size: 14px;
    opacity: 0.6;
}

/* ==================== */
/* ANIMATIONS           */
/* ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* SHARED RESPONSIVE    */
/* ==================== */
@media (max-width: 768px) {
    .header .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .logo img {
        height: 40px;
    }

    .footer-logo img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }

    .logo img {
        height: 34px;
    }

    .top-banner {
        display: none;
    }

    .header .btn {
        flex: 1 1 100%;
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        width: 100%;
        padding: 16px 32px;
    }

    .header-nav {
        flex: 1 1 100%;
        justify-content: center;
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }
}
