/* HangarScript Style CSS */

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

:root {
    --bg-dark: #0a0a13;
    --bg-dark-2: #141525;
    --primary-color: #ffa200;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 70px;
}

/* Header */
#header {
    background: var(--bg-dark-2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    height: 70px;
    border-bottom: 2px solid var(--primary-color);
}

#header .container {
    height: 70px;
}

#header .logo {
    margin: 0;
}

#header .logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

/* Navigation Menu */
.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul li {
    position: relative;
    display: inline-block;
}

.nav-menu a {
    display: block;
    padding: 0 15px;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 70px;
    height: 70px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 162, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .drop-down > a::after {
    content: '';
}

.nav-menu .drop-down ul {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    flex-direction: column;
    background: var(--bg-dark-2);
    border: 1px solid var(--primary-color);
    border-radius: 0 0 5px 5px;
}

.nav-menu .drop-down:hover > ul {
    display: flex;
}

.nav-menu .drop-down ul li {
    display: block;
    padding: 0;
}

.nav-menu .drop-down ul li a {
    padding: 10px 20px;
    line-height: auto;
    height: auto;
    display: flex;
    align-items: center;
}

/* Hero Section */
#hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a22 0%, var(--bg-dark) 100%);
    padding: 0 !important;
}

#hero .container {
    height: 100%;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
}

#hero ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

#hero ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

#hero ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

#hero ul li a:hover {
    color: var(--primary-color);
}

.btn-get-started {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #000;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    margin-right: 15px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 162, 0, 0.3);
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-get-started:hover::before {
    width: 300px;
    height: 300px;
}

.btn-get-started:hover {
    background: #ffb300;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 162, 0, 0.5);
}

.btn-get-quote {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-get-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-get-quote:hover::before {
    left: 0;
}

.btn-get-quote:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 162, 0, 0.4);
}

.hero-img {
    text-align: center;
}

.hero-img img {
    max-width: 400px;
}

/* SVG Divider */
.bg-divider {
    width: 100%;
    overflow: hidden;
    height: 60px;
}

.bg-divider svg {
    width: 100%;
    height: 100%;
}

/* Counts Section */
.counts {
    background: var(--bg-dark-2);
    padding: 60px 0;
}

.count-box {
    text-align: center;
    padding: 30px;
}

.count-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.count-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.count-box p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 60px 0;
}

.services.bg-2 {
    background: var(--bg-dark-2);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 162, 0, 0.1) 0%, rgba(20, 20, 30, 0.5) 100%);
    border: 1px solid rgba(255, 162, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 162, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.icon-box:hover::before {
    opacity: 1;
    animation: pulse-bg 1s ease-in-out;
}

@keyframes pulse-bg {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.icon-box:hover {
    background: linear-gradient(135deg, rgba(255, 162, 0, 0.2) 0%, rgba(20, 20, 30, 0.7) 100%);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 162, 0, 0.2);
}

.icon-box h2 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-top: 20px;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

.icon-box img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Features/Status Section */
.features {
    background: var(--bg-dark);
    padding: 60px 0;
}

.features.bg-1 {
    background: var(--bg-dark);
}

.features .icon-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    text-align: left;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.5) 0%, rgba(20, 20, 30, 0.8) 100%);
    border: 1px solid rgba(255, 162, 0, 0.1);
}

.features .icon-box svg {
    margin-right: 15px;
    min-width: 32px;
}

.features .icon-box h3 {
    margin: 0;
    color: var(--text-white);
}

.features .icon-box span {
    display: block;
    font-size: 0.85rem;
    color: #14b314;
    margin-top: 5px;
}

.features .icon-box small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Footer */
#footer {
    background: var(--bg-dark);
}

#footer .footer-top {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 162, 0, 0.1);
}

#footer .footer-top p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

#footer .footer-alt {
    padding: 20px 0;
}

#footer .copyright {
    color: var(--text-light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
}

.back-to-top:hover {
    background: #ffb300;
    bottom: 25px;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Animations & Effects */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glow Animation */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        text-shadow: 0 0 20px var(--primary-color), 0 0 30px rgba(255, 162, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 5px var(--primary-color);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Scale Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Apply animations */
#hero h1 {
    animation: slideInLeft 0.8s ease-out;
}

#hero h2 {
    animation: fadeIn 1s ease-out 0.2s both;
}

#hero ul li {
    animation: fadeIn 1s ease-out;
}

#hero ul li:nth-child(1) { animation-delay: 0.3s; }
#hero ul li:nth-child(2) { animation-delay: 0.4s; }
#hero ul li:nth-child(3) { animation-delay: 0.5s; }
#hero ul li:nth-child(4) { animation-delay: 0.6s; }
#hero ul li:nth-child(5) { animation-delay: 0.7s; }
#hero ul li:nth-child(6) { animation-delay: 0.8s; }

.btn-get-started,
.btn-get-quote {
    animation: scaleIn 0.6s ease-out 0.5s both;
}

.count-box {
    animation: fadeIn 0.8s ease-out;
}

.count-box:hover {
    animation: bounce 0.6s ease-in-out infinite;
}

.count-box i {
    animation: pulse 2s ease-in-out infinite;
}

.icon-box {
    animation: fadeIn 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-box:hover {
    animation: scaleIn 0.3s ease-out;
}

.icon-box h2 {
    transition: all 0.3s ease;
}

.icon-box:hover h2 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 162, 0, 0.5);
    animation: glow 1s ease-in-out;
}

/* Header animations */
#header {
    animation: slideInLeft 0.5s ease-out;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero image animation */
.hero-img img {
    animation: slideInRight 0.8s ease-out;
}

.hero-img img:hover {
    animation: rotate 20s linear infinite;
}

/* Section title animation */
.section-title h2 {
    animation: fadeIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.section-title h2:hover {
    color: #ffb300;
    text-shadow: 0 0 20px rgba(255, 162, 0, 0.7);
    transform: scale(1.05);
}

/* Hover effects for links */
a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Footer animations */
#footer {
    animation: fadeIn 1s ease-out;
}

#footer .copyright {
    transition: all 0.3s ease;
}

#footer .copyright:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 162, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none !important;
    }

    #hero .order-1 {
        order: 1 !important;
    }

    #hero .order-2 {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    #header .container {
        flex-wrap: wrap;
    }

    #hero {
        height: auto;
        padding: 60px 0;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero h2 {
        font-size: 1rem;
    }

    .btn-get-started,
    .btn-get-quote {
        display: block;
        margin: 10px 0;
        width: 100%;
    }

    .icon-box {
        padding: 20px;
    }

    .count-box {
        padding: 15px;
    }
}

