/* 
* Trijet Coding Clone - Custom Styles
* Based on Bootstrap 5
*/

:root {
    /* Brand Colors */
    --color-primary: #FFD400; /* Yellow/Gold */
    --color-primary-hover: #e6bf00;
    --color-dark: #001D08;    /* Dark Green/Black */
    --color-dark-light: #003310;
    --color-text: #646464;    /* Body Grey */
    --color-light: #F8F9FA;
    --color-border: #EEEEEE;
    
    /* Typography */
    --font-heading: 'Ruluko', sans-serif;
    --font-body: 'Cabin', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
}

/* Global Reset & Typography */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 400; /* Ruluko looks best at regular weight */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Buttons */
.btn {
    border-radius: 6px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-brand {
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

.btn-brand:hover {
    background-color: var(--color-dark);
    color: var(--color-primary);
    border-color: var(--color-dark);
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-brand-outline:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.btn-light-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-light-outline:hover {
    background-color: #fff;
    color: var(--color-dark);
}

/* Section Utilities */
.section {
    padding: var(--section-padding);
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.bg-light-custom {
    background-color: #f9f9f9;
}

/* Header & Top Bar */
.top-bar {
    background-color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    font-family: var(--font-heading);
    color: var(--color-dark) !important;
    font-size: 1.1rem;
    margin: 0 10px;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #001D08 0%, #002e0d 100%);
    color: #fff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
    color: #ccc;
}

.hero-img-container {
    position: relative;
    z-index: 1;
}

.hero-img {
    border-radius: 50%;
    border: 10px solid rgba(255, 212, 0, 0.2);
    width: 450px;
    height: 450px;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Services / Features */
.card-service {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    text-align: center;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--color-primary);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 212, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-dark);
    font-size: 2rem;
}

/* Intro / About */
.intro-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.year-badge-container {
    position: relative;
    display: inline-block;
}

.year-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.year-badge span {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
}

/* Logos / Partners */
.logo-strip img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    margin: 0 20px;
}

.logo-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    margin: 15px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

/* Form Section (New High Conversion) */
.conversion-section {
    background-color: var(--color-light);
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 5px solid var(--color-primary);
}

.form-control-custom {
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.form-control-custom:focus {
    border-color: var(--color-primary);
    box-shadow: none;
    background-color: #fff;
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 80px 0 30px;
}

.footer h4 {
    color: var(--color-primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #ccc;
}

.footer a:hover {
    color: var(--color-primary);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #888;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Micro-CTA Strip */
.micro-cta {
    background-color: var(--color-primary);
    padding: 40px 0;
    text-align: center;
}

.micro-cta h3 {
    margin: 0;
    color: var(--color-dark);
    font-weight: 700;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .navbar-brand img { height: 40px; }
    .hero { padding: 80px 0 60px; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-img { margin-top: 40px; width: 300px; height: 300px; }
    .section-padding { padding: 50px 0; }
    .year-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-block; }
}
