:root {
    --primary-blue: #002855;
    --secondary-orange: #f08c00;
    --accent-blue: #0055a4;
    --dark-bg: #001a38;
    --footer-bg: #000e1f;
    --text-dark: #222222;
    --text-light: #f8f9fa;
    --transition: all 0.3s ease;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6, .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.ls-2 { letter-spacing: 2px; }
.fw-black { font-weight: 900; }

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,25,50,0.8) 0%, transparent 100%);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: var(--transition);
    color: rgba(255,255,255,0.9) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-orange) !important;
}

.btn-contact {
    background-color: var(--secondary-orange);
    border: none;
    border-radius: 4px;
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
    color: white;
}

.btn-contact:hover {
    background-color: #d17a00;
    transform: translateY(-2px);
    color: white;
}

.hero-section {
    height: 100vh;
    min-height: 750px;
    background: url('../images/hero.png') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,40,85,0.85) 0%, rgba(0,40,85,0.5) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-section .display-1 {
    font-size: calc(2.5rem + 4vw);
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.play-btn {
    width: 90px;
    height: 90px;
    background: rgba(240, 140, 0, 0.9);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 0 30px rgba(240, 140, 0, 0.4);
}

.play-btn:hover {
    background: #fff;
    color: var(--secondary-orange);
    transform: scale(1.1);
}

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

.animate-slide-up { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fade-in { animation: fadeInUp 0.8s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-in-delay { animation: fadeInUp 0.8s ease-out 0.4s forwards; opacity: 0; }

.product-cards-section {
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.product-card {
    background: #fff;
    padding: 0;
    border: none;
    border-top: 5px solid transparent;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-15px);
    border-top-color: var(--secondary-orange);
}

.product-card.featured {
    border-top-color: var(--secondary-orange);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card-img-wrapper {
    padding: 20px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.card-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
}

.product-card .card-body {
    padding: 25px;
    text-align: center;
    border-top: 1px solid #eee;
}

.product-card h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.product-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.welcome-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.blog-section {
    background-color: #f8fbff;
}

.blog-card {
    transition: var(--transition);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-img {
    height: 240px;
    overflow: hidden;
}

.blog-body h5 {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.blog-body .text-orange {
    color: var(--secondary-orange);
}

.footer {
    background-color: var(--footer-bg);
    border-top: 5px solid var(--secondary-orange);
}

.footer-brand img {
    height: 70px;
    width: auto;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 8px;
}

.social-links a {
    color: #fff;
    background: rgba(255,255,255,0.08);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-orange);
    transform: translateY(-4px);
}

.footer .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 4px;
    padding: 14px;
}

.footer .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-orange);
    box-shadow: none;
}

.footer .btn-danger {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    border-radius: 4px;
}

.scrollable-row {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 25px;
    padding-top: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-orange) rgba(0,0,0,0.1);
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
}

.scrollable-row::-webkit-scrollbar {
    height: 6px;
}

.scrollable-row::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.scrollable-row::-webkit-scrollbar-thumb {
    background: var(--secondary-orange);
    border-radius: 10px;
}

.scrollable-row .col-product {
    flex: 0 0 auto;
    width: 320px;
    margin-right: 25px;
}

/* Offcanvas Styling */
.offcanvas {
    max-width: 80%;
    border-left: 3px solid var(--secondary-orange);
}

.offcanvas-header {
    background: var(--footer-bg);
}

.offcanvas-body {
    background: var(--primary-blue);
}

.offcanvas .nav-link {
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 991.98px) {
    .navbar {
        background: var(--primary-blue);
    }
    .hero-section {
        text-align: center;
        min-height: 550px;
        padding-top: 100px;
    }
    .hero-section .display-1 {
        font-size: 2.5rem;
    }
    .bg-text {
        font-size: 5rem;
    }
    .product-cards-section {
        margin-top: -40px;
    }
    .scrollable-row .col-product {
        width: 280px;
    }
    .welcome-section .section-title {
        font-size: 2rem;
    }
}

section, footer {
    width: 100%;
    position: relative;
    overflow: hidden;
}

