:root {
    --primary-color: #0b2b54;      /* Deep Dark Blue */
    --secondary-color: #f7a800;    /* Industrial Orange/Yellow */
    --light-color: #f8f9fa;        /* Light Gray */
    --dark-color: #111111;         /* Very Dark Gray */
    --text-color: #333333;         /* Standard Text */
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 800;
}

/* Navbar */
.faru-navbar {
    background-color: rgba(11, 43, 84, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    padding: 15px 0;
}
.faru-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Buttons */
.btn-warning {
    background-color: var(--secondary-color);
    border: none;
    transition: all 0.3s ease;
}
.btn-warning:hover {
    background-color: #e59a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 168, 0, 0.4);
}

/* Utilities */
.transition-all {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}
.hover-text-warning:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(11, 43, 84, 0.9) 0%, rgba(17, 17, 17, 0.6) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}
.hero-title {
    font-size: 4.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
}
.hero-actions {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

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

/* Section Titles */
.section-title {
    color: var(--primary-color);
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
}
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards */
.faru-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}
.faru-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(247, 168, 0, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.faru-card:hover .card-icon {
    background: var(--secondary-color);
    color: white;
}

/* Image Wrapper for zoom effect */
.img-zoom-wrapper {
    overflow: hidden;
    position: relative;
}
.img-zoom-wrapper img {
    transition: transform 0.6s ease;
}
.faru-card:hover .img-zoom-wrapper img {
    transform: scale(1.1);
}

/* Footer */
.faru-footer {
    background-color: var(--primary-color);
    border-top: 5px solid var(--secondary-color);
}
