/* ═══════════════════════════════════════════════════════════════
   T&L Services — Premium Landing Page Styles
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
    --primary: #7B61FF;
    --primary-dark: #5A3FD6;
    --accent: #00D4AA;
    --accent-glow: rgba(0, 212, 170, 0.3);
    --gold: #F5A623;
    --bg-dark: #06070A;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(123, 97, 255, 0.4);
    --text-primary: #F0F0F5;
    --text-secondary: #8E8EA0;
    --text-muted: #5A5A6E;
    --glass: rgba(12, 14, 20, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-glow: 0 0 60px rgba(123, 97, 255, 0.15);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Animated Gradient Mesh Background ── */
.mesh-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.mesh-orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite alternate;
}
.mesh-orb:nth-child(1) {
    width: 600px; height: 600px; top: -10%; left: -10%;
    background: radial-gradient(circle, #7B61FF, transparent 70%);
}
.mesh-orb:nth-child(2) {
    width: 500px; height: 500px; bottom: -5%; right: -10%;
    background: radial-gradient(circle, #00D4AA, transparent 70%);
    animation-delay: -7s; animation-duration: 25s;
}
.mesh-orb:nth-child(3) {
    width: 400px; height: 400px; top: 40%; left: 50%;
    background: radial-gradient(circle, #F5A623, transparent 70%);
    animation-delay: -12s; animation-duration: 30s; opacity: 0.2;
}
@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.95); }
    100% { transform: translate(20px, -20px) scale(1.05); }
}

/* ── Noise Texture Overlay ── */
body::before {
    content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ── Navigation ── */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 16px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.logo {
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    letter-spacing: 1.5px; display: flex; align-items: center; gap: 10px;
}
.logo-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900; color: #fff;
}
.logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    color: var(--text-secondary); letter-spacing: 0.5px;
    transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; border-radius: 1px;
    background: var(--primary); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 24px !important; border-radius: 50px !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important; font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(123, 97, 255, 0.3);
    transition: all 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(123, 97, 255, 0.5); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span {
    width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Section ── */
.hero {
    position: relative; min-height: 100vh; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 40px 80px;
}
.hero-grid {
    max-width: 1300px; width: 100%; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 50px;
    background: rgba(123, 97, 255, 0.12);
    border: 1px solid rgba(123, 97, 255, 0.25);
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--primary); margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800; line-height: 1.08; margin-bottom: 24px;
    letter-spacing: -1.5px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 18px; line-height: 1.7; color: var(--text-secondary);
    max-width: 520px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; border-radius: 50px; font-family: var(--font-body);
    font-size: 15px; font-weight: 600; cursor: pointer; border: none;
    transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; box-shadow: 0 8px 30px rgba(123, 97, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(123, 97, 255, 0.5); }
.btn-secondary {
    background: var(--bg-card); color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-globe {
    width: 100%; max-width: 480px; aspect-ratio: 1;
    border-radius: 50%; position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(123,97,255,0.15), rgba(0,212,170,0.08), transparent 70%);
    border: 1px solid rgba(123, 97, 255, 0.1);
    animation: globe-rotate 30s linear infinite;
    display: flex; align-items: center; justify-content: center;
}
.hero-globe::before {
    content: ''; position: absolute; inset: 20px; border-radius: 50%;
    border: 1px dashed rgba(123, 97, 255, 0.15);
    animation: globe-rotate 20s linear infinite reverse;
}
.hero-globe::after {
    content: ''; position: absolute; inset: 50px; border-radius: 50%;
    border: 1px dashed rgba(0, 212, 170, 0.12);
    animation: globe-rotate 15s linear infinite;
}
.hero-globe .globe-emoji {
    font-size: 120px; filter: drop-shadow(0 0 40px rgba(123,97,255,0.3));
}
@keyframes globe-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Floating service pills around globe */
.float-pill {
    position: absolute; padding: 10px 18px; border-radius: 50px;
    background: var(--glass); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    font-size: 13px; font-weight: 500; white-space: nowrap;
    animation: floatPill 6s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.float-pill:nth-child(2) { top: 10%; right: -10%; animation-delay: -1s; }
.float-pill:nth-child(3) { bottom: 20%; right: -5%; animation-delay: -2s; }
.float-pill:nth-child(4) { bottom: 10%; left: -5%; animation-delay: -3s; }
.float-pill:nth-child(5) { top: 15%; left: -8%; animation-delay: -4s; }
@keyframes floatPill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ── Scroll indicator ── */
.scroll-hint {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-mouse {
    width: 24px; height: 38px; border-radius: 12px;
    border: 2px solid var(--text-muted); position: relative;
}
.scroll-mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 8px; border-radius: 3px; background: var(--primary);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0% { transform: translateX(-50%) translateY(0); opacity: 1; } 100% { transform: translateX(-50%) translateY(12px); opacity: 0; } }

/* ── Section Common ── */
.section { position: relative; z-index: 2; padding: 120px 40px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 70px; }
.section-label {
    display: inline-block; font-size: 12px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
    font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px; color: var(--text-secondary); line-height: 1.7;
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── About Section ── */
.about-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3;
}
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrapper::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(123,97,255,0.2), transparent);
}
.about-text h3 {
    font-family: var(--font-display); font-size: 34px; font-weight: 700;
    margin-bottom: 20px; line-height: 1.2;
}
.about-text h3 span { color: var(--accent); }
.about-text p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }

/* ── Services Grid ── */
.services-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
    position: relative; padding: 36px 28px; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: all 0.4s; cursor: pointer; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(123,97,255,0.08), rgba(0,212,170,0.05));
    opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrapper {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(123,97,255,0.15), rgba(0,212,170,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 20px;
    transition: transform 0.3s;
}
.service-card:hover .service-icon-wrapper { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); position: relative; z-index: 1; }
.service-card .card-arrow {
    position: absolute; bottom: 20px; right: 20px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(123, 97, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--primary);
    opacity: 0; transform: translateX(-8px);
    transition: all 0.3s;
}
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

/* ── Gallery Bento ── */
.gallery-bento {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.bento-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
}
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.bento-item:hover img { transform: scale(1.1); }
.bento-item .bento-overlay {
    position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 24px;
    background: linear-gradient(to top, rgba(6,7,10,0.85) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.bento-item:hover .bento-overlay { opacity: 1; }
.bento-overlay span { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.bento-item:nth-child(1) { grid-row: span 2; }
.bento-item:nth-child(4) { grid-column: span 2; }

/* ── Stats ── */
.stats-bar {
    position: relative; z-index: 2; padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}
.stat-item { position: relative; }
.stat-item::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(255,255,255,0.15);
}
.stat-item:last-child::after { display: none; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; margin-bottom: 6px; }
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

/* ── Features ── */
.features-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.feature-card {
    display: flex; align-items: flex-start; gap: 20px; padding: 28px;
    border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.3s;
}
.feature-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.feature-icon-box {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(123,97,255,0.12), rgba(0,212,170,0.08));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}
.feature-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Process Timeline ── */
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}
.timeline-step {
    display: flex; gap: 28px; margin-bottom: 40px; position: relative;
}
.timeline-dot {
    width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
    background: var(--bg-dark); border: 2px solid var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary);
    z-index: 2;
}
.timeline-step:hover .timeline-dot { background: var(--primary); color: #fff; }
.timeline-body {
    padding: 24px; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    flex: 1; transition: all 0.3s;
}
.timeline-step:hover .timeline-body { border-color: var(--border-hover); }
.timeline-body h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.timeline-body p { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }

/* ── Testimonials ── */
.testimonials-track {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
    padding: 36px; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.3s; position: relative;
}
.testimonial-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.testimonial-card .quote-mark {
    font-size: 48px; color: var(--primary); opacity: 0.3;
    font-family: Georgia, serif; line-height: 1; margin-bottom: 12px;
}
.testimonial-card .t-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; font-style: italic; }
.testimonial-card .t-author { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--accent); }

/* ── Contact ── */
.contact-section {
    background: linear-gradient(135deg, rgba(123,97,255,0.06), rgba(0,212,170,0.04));
}
.contact-card {
    max-width: 700px; margin: 0 auto; text-align: center;
    padding: 60px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.contact-card h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.contact-card .contact-subtitle { color: var(--text-secondary); margin-bottom: 32px; }
.contact-name { font-size: 20px; font-weight: 600; margin-bottom: 4px; color: var(--accent); }
.contact-role { color: var(--text-secondary); font-size: 14px; margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-bottom: 32px; }
.contact-details span { font-size: 16px; color: var(--text-secondary); }
.whatsapp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 40px; border-radius: 50px;
    background: #25D366; color: #fff; font-size: 16px; font-weight: 600;
    transition: all 0.3s; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }

/* ── Footer ── */
.footer {
    z-index: 2; position: relative;
    text-align: center; padding: 40px; border-top: 1px solid var(--border);
    color: var(--text-muted); font-size: 13px;
}
.footer p + p { margin-top: 4px; }

/* ── Floating WhatsApp ── */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s; animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 20px; }
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        flex-direction: column; padding: 80px 30px 30px;
        background: rgba(6, 7, 10, 0.97); backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        transition: right 0.4s; gap: 24px;
    }
    .nav-links.open { right: 0; }
    .section { padding: 80px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-bento { grid-template-columns: 1fr; }
    .gallery-bento .bento-item:nth-child(1) { grid-row: span 1; }
    .gallery-bento .bento-item:nth-child(4) { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item::after { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-track { grid-template-columns: 1fr; }
    .timeline::before { left: 28px; }
    .contact-card { padding: 36px 24px; }
}
