/* =========================================================================
   VARIABLES & GLOBALS
   ========================================================================= */
   :root {
    --bg-color: #0B0B0B;
    --card-bg: #151515;
    --card-hover: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --accent: #FFD700;
    --accent-hover: #E6C200;
    --accent-glow: rgba(255, 215, 0, 0.15);
    --border-color: #2A2A2A;
    --font-main: 'Outfit', sans-serif;
    --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;
    scroll-padding-top: 80px; /* For fixed header */
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 100px 0;
    position: relative;
}

/* =========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================= */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.highlight {
    color: var(--accent);
}

.section-header {
    margin-bottom: 60px;
}

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

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin-top: 15px;
    margin-bottom: 25px;
    border-radius: 2px;
}

.header-line.center-line {
    margin: 15px auto 25px auto;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-header.center p {
    margin: 0 auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.full-width {
    width: 100%;
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--accent);
    font-size: 2.5rem;
    line-height: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--text-primary);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    border-color: var(--accent);
    background-color: var(--accent-glow);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset nav */
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 1;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeUp 1s ease forwards 0.2s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeUp 1s ease forwards 0.4s;
    opacity: 0;
}

.hero-highlights {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeUp 1s ease forwards 0.6s;
    opacity: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.highlight-item i {
    color: var(--accent);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

/* Abstract pure CSS visual */
.abstract-shape {
    position: relative;
    width: 400px;
    height: 400px;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card-1 {
    width: 250px;
    height: 160px;
    top: 50px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.w-80 { width: 80%; }
.w-60 { width: 60%; }
.w-40 { width: 40%; }

.card-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent);
}

.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.circle-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
    animation: spin 30s linear infinite;
}

/* =========================================================================
   WHAT I DO
   ========================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.service-card:hover .service-icon {
    background: var(--accent);
    color: #000;
}

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

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

.strong-statement {
    font-size: 1.25rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-top: 30px;
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-card {
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--accent-glow);
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(20, 20, 20, 1) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.range, .plus {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--accent);
    font-size: 0.9rem;
}

.premium-card .pricing-features li {
    color: var(--text-primary);
}

/* =========================================================================
   REVIEWS
   ========================================================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
    border: 2px solid var(--border-color);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact {
    padding-bottom: 150px;
}

.contact-box {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(20, 20, 20, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.rocket {
    display: inline-block;
    animation: bounce 2s infinite;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    text-align: left;
}

.contact-card:hover {
    background: var(--card-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.icon-wrapper.call {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.icon-wrapper.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.icon-wrapper.email {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

.contact-card:hover .icon-wrapper.call { background: #2196F3; color: #fff; }
.contact-card:hover .icon-wrapper.whatsapp { background: #25D366; color: #fff; }
.contact-card:hover .icon-wrapper.email { background: #F44336; color: #fff; }

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-details strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections reveal on scroll class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Tablet */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-bg-glow {
        width: 300px;
        height: 300px;
    }

    .abstract-shape {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .card-1 {
        width: 180px;
        height: 120px;
        top: 20px;
        right: 10px;
    }

    .card-2 {
        width: 150px;
        height: 150px;
        bottom: 20px;
        left: 10px;
        font-size: 3rem;
    }

    .circle-decoration {
        width: 220px;
        height: 220px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-box {
        padding: 40px 20px;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .contact-card {
        min-width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
        padding: 25px 20px;
    }

    .price .amount {
        font-size: 3.2rem;
    }
}

