:root {
    --bg-main: #0B132B;
    --bg-sec: #1C1F26;
    --bg-glass: rgba(28, 31, 38, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #FF6B35;
    --primary-hover: #e55a29;
    --text-main: #F8F9FA;
    --text-muted: #ADB5BD;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.text-orange {
    color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
}  

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Typography styles */
.section-title {
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--primary);
    margin-top: 16px;
    border-radius: 2px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.meta {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 48px;
    background: rgba(11, 19, 43, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,19,43,0.95) 0%, rgba(28,31,38,0.7) 100%),
                url('assets/hero_bg.png') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-text-box {
    max-width: 700px;
    border-left: 4px solid var(--primary);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Intro grid */
.intro {
    margin-top: -80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.intro-grid .card {
    padding: 40px;
}

.intro-grid h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: #fff;
}

ul.styled-list {
    list-style: none;
}

ul.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

ul.styled-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.vm-card {
    background: var(--bg-sec);
    padding: 32px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.mt-4 { margin-top: 24px; }

.icon-wrap {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    transition: var(--transition);
    overflow: hidden;
    cursor: default;
}

.service-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.service-card ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.service-card ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.service-card ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Compliance */
.compliance {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-sec) 100%);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.compliance-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.compliance-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #fff;
}

/* CTA */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

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

.display-sm {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #060a16;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: #fff;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary) !important;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 20px 24px; }
    .nav-links { display: none; /* simple mobile hide for mockup */ }
    .hero h1 { font-size: 2.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 120px; }
    .hero-text-box { padding: 24px; }
    .display-sm { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Pulsing Animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}
