:root {
    --primary-gold: #dfa609;
    --primary-gold-glow: rgba(223, 166, 9, 0.6);
    --secondary-yellow: #ffd700;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    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 20px;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--primary-gold-glow);
}

.glow-text {
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--primary-gold);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gold);
    color: white;
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    box-shadow: 0 0 20px var(--primary-gold-glow);
}

.glow-effect {
    box-shadow: 0 0 15px var(--primary-gold-glow);
    animation: pulse-glow 2s infinite;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 20px;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: white;
    box-shadow: 0 0 10px var(--primary-gold-glow);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.text-small {
    font-size: 0.9rem;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px var(--primary-gold-glow);
    }

    50% {
        box-shadow: 0 0 25px rgba(223, 166, 9, 0.8);
    }

    100% {
        box-shadow: 0 0 10px var(--primary-gold-glow);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.btn-nav {
    background: var(--primary-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--primary-gold-glow);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0a0a0a, rgba(10, 10, 10, 0.8), transparent), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.8;
}

/* Add a red vignette overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(223, 166, 9, 0.1), transparent 60%);
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Features/Why Us */
.features-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(223, 166, 9, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(223, 166, 9, 0.1);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services */
.services-section {
    padding: 100px 0;
    background: #0f0f0f;
    /* Slightly lighter than main bg */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-gold);
}

.service-card.featured {
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 20px rgba(223, 166, 9, 0.1);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 40px;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--primary-gold);
}

/* Process Steps */
.process-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(223, 166, 9, 0.3);
}

.step-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}



/* Location and About */
.location-section {
    padding: 100px 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.area-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.area-list li {
    background: var(--bg-card);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 2px solid var(--primary-gold);
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #242f3e;
    /* Dark placeholder bg */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    /* Dark mode effect for map */
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

/* CTA Footer */
.cta-footer {
    padding: 80px 0;
    background: linear-gradient(to right, #2b2200, #1a1500);
    position: relative;
    overflow: hidden;
}

.cta-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(223, 166, 9, 0.2), transparent 70%);
    z-index: 1;
}

.cta-footer .container {
    position: relative;
    z-index: 2;
}

.cta-footer h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-footer p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
footer {
    padding: 40px 0;
    background: black;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Floating WA */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.float-wa:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px;
        transform: translateY(-150%);
        transition: 0.5s ease;
        border-bottom: 1px solid #333;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        background: var(--text-muted);
        margin: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}