/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 2px;
}

.text-gold {
    color: var(--gold);
}

/* Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    display: block;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition);
}

.nav__link:hover,
.nav__item--active .nav__link {
    color: var(--gold);
}

.header__cta {
    flex-shrink: 0;
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.header__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.header__toggle.active .header__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active .header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.header__toggle.active .header__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg canvas {
    width: 100%;
    height: 100%;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero__logo {
    width: 160px;
    height: auto;
    margin: 0 auto 32px;
    animation: floatLogo 4s ease-in-out infinite;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.hero__title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--silver);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 400;
}

.hero__desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s infinite;
}

.hero__scroll svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    opacity: 0.5;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(10px);
    }

    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* ========================================
   Services Section (Home)
   ======================================== */
.services-preview {
    background: var(--bg-section);
}

/* ========================================
   Stats / Highlights Section
   ======================================== */
.stats {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats__item {
    padding: 40px 20px;
}

.stats__number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stats__label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.cta-section p {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto 36px;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ========================================
   About Page
   ======================================== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.page-hero p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
}

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

.about__text h3 {
    margin-bottom: 20px;
    color: var(--gold);
}

.about__text p {
    margin-bottom: 16px;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: var(--transition);
}

.pillar:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.pillar__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pillar__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.pillar__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Founder */
.founder {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.founder__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    flex-shrink: 0;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.founder__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.founder__role {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.founder__bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   Services Page
   ======================================== */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 48px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--glow-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    margin-bottom: 28px;
    font-size: 2rem;
    color: var(--gold);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-main);
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card__features {
    list-style: none;
    padding: 0;
}

.service-card__features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ========================================
   Contact Page
   ======================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--silver-dark);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
}

.form-message--success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    display: block;
}

.form-message--error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #DC3545;
    display: block;
}

/* Contact Info sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-info__item:hover {
    border-color: var(--border-gold);
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(212, 168, 67, 0.1);
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.contact-info__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-info__value {
    font-size: 1.05rem;
    color: var(--text-main);
}

.contact-info__value a {
    color: var(--text-main);
}

.contact-info__value a:hover {
    color: var(--gold);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer__brand img {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    padding: 6px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__list a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__list a:hover {
    color: var(--gold);
}

.footer__icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Social links */
.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer__social-link:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
}

.footer__social-link:hover svg {
    color: var(--gold);
}

/* Footer bottom */
.footer__bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--silver-dark);
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Header mobile */
    .header__toggle {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 40px;
        transition: var(--transition);
        border-left: 1px solid var(--border-subtle);
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .nav__link {
        font-size: 1.15rem;
        padding: 14px 18px;
    }

    /* Hero mobile */
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero__logo {
        width: 120px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Stats mobile */
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stats__item {
        padding: 24px 16px;
    }

    /* Pillars mobile */
    .pillars {
        grid-template-columns: 1fr;
    }

    /* Founder mobile */
    .founder {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    /* Contact form mobile */
    .contact-form {
        padding: 32px 24px;
    }

    /* Footer mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* WhatsApp float mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .page-hero {
        padding: 130px 0 60px;
    }
}