:root {
    --navy-blue: #32314e;
    --navy-blue-dark: #1f1e33;
    --gold: #dfba68;
    --gold-hover: #c4a154;
    --gray-blue: #8a95a4;
    --dark-gray: #4d4d4e;
    --white: #ffffff;
    --light-bg: #f9fbfd;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--navy-blue);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Glassmorphism utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Typography styles */
.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-title span {
    color: var(--gold);
}

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

.mt-4 { margin-top: 1rem; }

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--gold);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(223, 186, 104, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(223, 186, 104, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(50, 49, 78, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
}

.logo-img {
    height: 95px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(31, 30, 51, 0.8), rgba(50, 49, 78, 0.6)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(223, 186, 104, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
}

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

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-blue);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--light-bg);
    border: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(50, 49, 78, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(223, 186, 104, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.stat-card.highlight {
    background: var(--navy-blue);
    color: var(--white);
}

.stat-card.highlight h3 {
    color: var(--gold);
}

.stat-card.highlight .stat-icon {
    background: rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-blue);
    margin: 0;
}

.stat-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(223, 186, 104, 0.15);
    border-bottom: 4px solid var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(223, 186, 104, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-blue);
    font-size: 0.95rem;
}

.service-arrow {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: var(--transition);
}

.service-arrow i {
    width: 18px;
    height: 18px;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    position: relative;
    background: url('images/hero-bg.png') center/cover;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(50, 49, 78, 0.8);
}

.cta-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    background: var(--navy-blue-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: var(--gray-blue);
    font-size: 1rem;
}

.footer-contact h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-blue);
}

.footer-contact i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    color: var(--gray-blue);
    font-size: 0.9rem;
}

/* Floating Blobs (Background Ornaments) */
.about, .services {
    position: relative;
    overflow: hidden;
}

.about .container, .services .container {
    position: relative;
    z-index: 1;
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    border-radius: 50%;
    animation: floatBlob 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(223, 186, 104, 0.2); /* Gold */
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(50, 49, 78, 0.1); /* Navy Blue */
    bottom: -100px;
    right: -100px;
    animation-delay: -6s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: rgba(223, 186, 104, 0.15); /* Gold */
    top: 10%;
    right: -150px;
    animation-duration: 18s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: rgba(50, 49, 78, 0.08); /* Navy Blue */
    bottom: 5%;
    left: -100px;
    animation-delay: -9s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1.0); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1.0); }
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 0; }
    .mobile-menu-btn { display: block; z-index: 1000; position: relative; }
    
    .nav-links { 
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(31, 30, 51, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        z-index: 999;
    }
    
    .navbar.menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar.menu-open {
        background: transparent !important;
        box-shadow: none;
    }
    
    .nav-links a { font-size: 1.5rem; }
    
    .logo-img { height: 55px; position: relative; z-index: 1000; }
    .hero-content { margin-top: 90px; }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .btn-large { width: 100%; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .cta-box { padding: 3rem 1.5rem; }
    .cta-box h2 { font-size: 2rem; }
}
