@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #141414;
    --accent-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-text: #d4af37;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(212, 175, 55, 0.15);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.4);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--primary-bg);
    background-image: 
        radial-gradient(circle at 50% -10%, rgba(184, 134, 11, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(184, 134, 11, 0.1) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gold-gradient-text {
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
}

.cta-btn {
    background: var(--accent-gold);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    z-index: -1;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.secondary-btn {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Stats Bar */
.stats-bar {
    background: var(--secondary-bg);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.section-padding {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--gold-glow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #000;
    font-size: 1.5rem;
}

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

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

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-step {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    background: var(--primary-bg);
    z-index: 2;
}

.process-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.process-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #d4af37;
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.05);
    z-index: 10;
    overflow: hidden; /* For the ribbon */
}

.best-value-ribbon {
    position: absolute;
    top: 15px;
    right: -40px;
    background: #ff003c; /* Red from the image */
    color: #fff;
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3);
    pointer-events: none;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--gold-text);
    font-weight: bold;
}

/* Footer */
footer {
    background: #050505;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--gold-text);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
}

.hero-trust {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-trust p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.trust-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-bg);
    margin-left: -12px;
    object-fit: cover;
    background: var(--card-bg);
    transition: transform 0.3s ease;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-group img:hover {
    transform: translateY(-5px);
    z-index: 10;
    border-color: var(--gold-text);
}

.trust-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.trust-rating .stars {
    color: var(--gold-text);
    font-size: 0.8rem;
    display: flex;
    gap: 3px;
}

.trust-rating span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.industry-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-text);
}

.industry-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industry-item p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Testimonials Carousel */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 2rem);
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    transform: scale(0.9);
    filter: blur(1px);
}

.testimonial-card.active-slide {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--gold-text);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
    filter: blur(0);
    z-index: 2;
}

.testimonial-card i.fa-quote-left {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.2);
}

.client-rating {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--gold-text);
    display: flex;
    gap: 4px;
    font-size: 0.8rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-text);
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.client-details p {
    font-size: 0.85rem;
    color: var(--gold-text);
}

/* Mobile Responsive Update */
@media (max-width: 992px) {
    .services-grid, .pricing-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 2rem);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .pricing-grid, .footer-grid, .stats-grid, .industries-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        flex: 0 0 calc(100% - 2rem);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        gap: 1.5rem;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to { left: 100%; }
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Reveal Stagger */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
