/* assets/css/style.css */
:root {
    --dark-blue: #0B1F3A;
    --gold: #F4B400;
    --light-gray: #F5F5F5;
    --text-color: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

/* Color Utilities */
.bg-dark-blue { background-color: var(--dark-blue) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.bg-gold { background-color: var(--gold) !important; }
.text-gold { color: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }
.text-muted-light { color: #d1d1d1 !important; }

/* Top Bar */
.top-bar {
    font-size: 0.85rem;
}

/* Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}
.navbar-nav .nav-link {
    color: var(--dark-blue) !important;
    font-weight: 600;
    padding: 10px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    width: 70%;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--dark-blue);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(244, 180, 0, 0.2);
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 6px 12px rgba(244, 180, 0, 0.4);
    transform: translateY(-2px);
}
.btn-dark-blue {
    background-color: var(--dark-blue);
    color: #fff;
    border: 2px solid var(--dark-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(11, 31, 58, 0.2);
}
.btn-dark-blue:hover {
    background-color: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
    box-shadow: 0 6px 12px rgba(11, 31, 58, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(11, 31, 58, 0.7), rgba(11, 31, 58, 0.8)), url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

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

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-align: center;
    border-bottom: 4px solid transparent;
    position: relative;
    top: 0;
}
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--gold);
}
.service-icon {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.service-card:hover .service-icon {
    color: var(--gold);
}

/* Category Card */
.category-card {
    transition: all 0.3s ease;
    border-color: rgba(255,255,255,0.1) !important;
}
.category-card:hover {
    background-color: rgba(244, 180, 0, 0.1) !important;
    border-color: var(--gold) !important;
    transform: translateY(-5px);
}

/* Equipment Card */
.equipment-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.equip-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}
.equip-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
}
.status-available { background-color: #28a745; }
.status-rented { background-color: var(--gold); }
.status-sold { background-color: #dc3545; }

/* Stats Section */
.stats-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}

/* Footer */
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* WhatsApp Float */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s;
}
.float-wa:hover {
    transform: scale(1.1);
    color: white;
}
.my-float {
    margin-top: 15px;
}

/* Admin Styles */
.admin-sidebar {
    min-height: 100vh;
    background-color: var(--dark-blue);
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 12px 20px;
    margin-bottom: 5px;
    border-radius: 5px;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--gold);
}
