/* HK Theme - Modern Dark Theme Styles */
/* Shared styles for all pages */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Top Navigation */
.hk-topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hk-topnav .hk-logo img { height: 36px; }
.hk-topnav .hk-nav-right { display: flex; align-items: center; gap: 16px; }
.hk-topnav .hk-nav-cta {
    background: #ff9500;
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    transition: all .25s;
}
.hk-topnav .hk-nav-cta:hover {
    background: #ffab2e;
    transform: translateY(-1px);
}

/* Hamburger Menu Button */
.hk-hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10001;
}
.hk-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
}
.hk-hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hk-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hk-hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.hk-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}
.hk-mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.hk-mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hk-mobile-menu nav a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 12px 24px;
    transition: all .3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}
.hk-mobile-menu nav a:hover {
    color: #ff9500;
    transform: translateX(8px);
}
.hk-mobile-menu.open nav a {
    opacity: 1;
    transform: translateY(0);
}
.hk-mobile-menu.open nav a:nth-child(1) { transition-delay: .1s; }
.hk-mobile-menu.open nav a:nth-child(2) { transition-delay: .15s; }
.hk-mobile-menu.open nav a:nth-child(3) { transition-delay: .2s; }
.hk-mobile-menu.open nav a:nth-child(4) { transition-delay: .25s; }
.hk-mobile-menu.open nav a:nth-child(5) { transition-delay: .3s; }
.hk-mobile-menu.open nav a:nth-child(6) { transition-delay: .35s; }
.hk-mobile-menu.open nav a:nth-child(7) { transition-delay: .4s; }
.hk-mobile-menu.open nav a:nth-child(8) { transition-delay: .45s; }

.hk-mobile-menu nav a.hk-menu-cta {
    background: #ff9500;
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    padding: 16px 40px;
}
.hk-mobile-menu nav a.hk-menu-cta:hover {
    background: #ffab2e;
    transform: translateX(0) scale(1.02);
}
.hk-mobile-menu nav a.hk-menu-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 36px;
}
.hk-mobile-menu nav a.hk-menu-secondary:hover {
    border-color: #ff9500;
    color: #ff9500;
    transform: translateX(0);
}

/* Page Hero */
.hk-page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}
.hk-page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,149,0,.1) 0%, transparent 60%);
    pointer-events: none;
}
.hk-page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hk-page-hero h1 span { color: #ff9500; }
.hk-page-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.hk-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.hk-section-title {
    text-align: center;
    margin-bottom: 60px;
}
.hk-section-title h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.hk-section-title h2 span { color: #ff9500; }
.hk-section-title p {
    color: rgba(255,255,255,.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.hk-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 32px;
    transition: all .35s ease;
}
.hk-card:hover {
    border-color: rgba(255,149,0,.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.hk-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,149,0,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff9500;
}
.hk-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}
.hk-card p {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
    line-height: 1.7;
}

/* Grid Layouts */
.hk-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.hk-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.hk-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media(max-width:900px) {
    .hk-grid-3, .hk-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:600px) {
    .hk-grid-2, .hk-grid-3, .hk-grid-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.hk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
}
.hk-btn-primary {
    background: #ff9500;
    color: #000;
}
.hk-btn-primary:hover {
    background: #ffab2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,149,0,.3);
}
.hk-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
}
.hk-btn-secondary:hover {
    border-color: #ff9500;
    color: #ff9500;
    transform: translateY(-2px);
}

/* Footer */
.hk-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 40px 20px;
}
.hk-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.hk-footer-logo img { height: 30px; }
.hk-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.hk-footer-links a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.hk-footer-links a:hover { color: #ff9500; }
.hk-footer-copy {
    color: rgba(255,255,255,.3);
    font-size: 12px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp .6s ease forwards;
    opacity: 0;
}

/* Responsive */
@media(max-width:768px) {
    .hk-topnav { padding: 0 20px; height: 60px; }
    .hk-topnav .hk-logo img { height: 32px; }
    .hk-topnav .hk-nav-cta { display: none; }
    .hk-page-hero { padding: 100px 20px 40px; }
    .hk-section { padding: 60px 20px; }
    .hk-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Stat Cards */
.hk-stat {
    text-align: center;
    padding: 40px 24px;
}
.hk-stat .hk-stat-num {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9500;
    line-height: 1;
    margin-bottom: 12px;
}
.hk-stat h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.hk-stat p {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
}

/* Team Cards */
.hk-team-card {
    text-align: center;
}
.hk-team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(255,149,0,.3);
}
.hk-team-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.hk-team-card .hk-role {
    color: #ff9500;
    font-size: .9rem;
    font-weight: 500;
}

/* Feature List */
.hk-feature-list {
    list-style: none;
}
.hk-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hk-feature-list li:last-child { border-bottom: none; }
.hk-feature-list li i {
    color: #ff9500;
    font-size: 1.2rem;
    margin-top: 4px;
}
.hk-feature-list li span {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
}

/* Pricing Cards */
.hk-pricing-card {
    text-align: center;
    padding: 40px 32px;
    position: relative;
}
.hk-pricing-card.featured {
    border-color: rgba(255,149,0,.5);
    background: rgba(255,149,0,.05);
}
.hk-pricing-card .hk-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9500;
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.hk-pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.hk-pricing-card .hk-price {
    font-size: 3rem;
    font-weight: 700;
    color: #ff9500;
    margin-bottom: 8px;
}
.hk-pricing-card .hk-price span {
    font-size: 1rem;
    color: rgba(255,255,255,.5);
}
.hk-pricing-card .hk-price-desc {
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
}
.hk-pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}
.hk-pricing-card ul li {
    padding: 10px 0;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hk-pricing-card ul li i {
    color: #25D366;
}

/* Gallery Grid */
.hk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.hk-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.hk-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.hk-gallery-item:hover img {
    transform: scale(1.05);
}
.hk-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}
.hk-gallery-item:hover::after {
    opacity: 1;
}
