/* ============================================
   BILGISAYAR GEZEGENI - Redesign v2
   Inspired by MenuBura aesthetic
   Brand Colors: Purple #2D2B7F, Orange #E8611A
   Font: Outfit
   ============================================ */

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

/* === Variables === */
:root {
    --purple: #2D2B7F;
    --purple-light: #5855c5;
    --purple-dark: #1e1c5c;
    --orange: #E8611A;
    --orange-light: #f59356;
    --orange-dark: #cc500e;
    --accent: #f472b6;

    --bg: #050507;
    --surface: #0f0f12;
    --surface-light: #1a1a1f;
    --card-bg: #141418;

    --white: #ffffff;
    --text: #f5f5f7;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border: rgba(255, 255, 255, 0.08);
    --green: #25D366;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100vw;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: linear-gradient(180deg, #07071a 0%, #050507 30%, #0a0812 60%, #050507 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

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

::selection {
    background: var(--orange);
    color: var(--white);
}

/* ============================================
   BACKGROUND EFFECTS (MenuBura Style)
   ============================================ */
.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.7;
}

.orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(45, 43, 127, 0.55) 0%, rgba(30, 28, 92, 0.2) 40%, transparent 70%);
    top: -300px;
    left: -300px;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 97, 26, 0.25) 0%, rgba(88, 85, 197, 0.15) 40%, transparent 70%);
    top: 40%;
    right: -200px;
    animation: orbFloat 20s ease-in-out infinite reverse;
}

.orb-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(88, 85, 197, 0.4) 0%, rgba(45, 43, 127, 0.15) 40%, transparent 70%);
    bottom: -200px;
    left: 20%;
    animation: orbFloat 18s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s;
    height: 52px;
    width: auto;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--green);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-primary.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-primary.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-ghost:hover {
    color: var(--white);
    background: var(--surface-light);
}

.btn-ghost.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--surface-light);
    border-color: rgba(232, 97, 26, 0.4);
}

.btn-outline.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION (MenuBura Split Layout)
   ============================================ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(45, 43, 127, 0.12);
    border: 1px solid rgba(45, 43, 127, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    flex-shrink: 0;
    position: relative;
    width: 380px;
    height: 420px;
}

.hero-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(45, 43, 127, 0.2) 0%, rgba(232, 97, 26, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(145deg, rgba(20, 20, 24, 0.9), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: cardFloat 4s ease-in-out infinite;
    will-change: transform;
}

.hfc-1 {
    top: 0;
    left: 10px;
    animation-delay: 0s;
    border-color: rgba(45, 43, 127, 0.2);
}

.hfc-2 {
    top: 120px;
    right: 0;
    animation-delay: 0.5s;
    border-color: rgba(232, 97, 26, 0.2);
}

.hfc-3 {
    top: 240px;
    left: 30px;
    animation-delay: 1s;
    border-color: rgba(88, 85, 197, 0.2);
}

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

.hfc-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 43, 127, 0.2), rgba(232, 97, 26, 0.1));
    border-radius: var(--radius-md);
}

.hfc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hfc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.hfc-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-stat-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius-lg);
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: 1.5s;
    box-shadow: 0 10px 30px rgba(232, 97, 26, 0.25);
}

.hsb-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

.hsb-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SCROLL INDICATOR (MenuBura Style)
   ============================================ */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    transition: opacity 0.3s;
}

.scroll-indicator.hidden {
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(156, 163, 175, 0.4);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(45, 43, 127, 0.1);
    border: 1px solid rgba(45, 43, 127, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SERVICES - BENTO GRID (MenuBura Style)
   ============================================ */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-bento {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
}

.service-main {
    background: linear-gradient(145deg, rgba(45, 43, 127, 0.12) 0%, rgba(232, 97, 26, 0.08) 100%);
    border: 1px solid rgba(45, 43, 127, 0.25);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-main-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple), var(--orange));
    border-radius: 20px;
    margin-bottom: 28px;
    color: white;
}

.service-main h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-main > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 32px;
}

.service-main-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(45, 43, 127, 0.2);
}

.sms-item {
    text-align: center;
}

.sms-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
}

.sms-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-grid-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s;
}

.service-item:hover {
    border-color: rgba(232, 97, 26, 0.3);
    transform: translateY(-3px);
}

.service-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    font-family: monospace;
}

.service-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(232, 97, 26, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(45, 43, 127, 0.15), rgba(232, 97, 26, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.product-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--purple-light);
    transition: all 0.3s;
}

.product-card:hover .product-icon-wrap {
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.2), rgba(45, 43, 127, 0.1));
    transform: scale(1.1);
}

.product-card:hover .product-icon-wrap svg {
    stroke: var(--orange);
}

.product-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.about-feature:hover {
    border-color: rgba(232, 97, 26, 0.2);
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(232, 97, 26, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--orange);
}

.about-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 12px;
    color: var(--text-muted);
}

.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateX(8px);
    border-color: rgba(232, 97, 26, 0.3);
}

.info-card-icon {
    font-size: 1.8rem;
    min-width: 48px;
    text-align: center;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-card-content strong {
    font-size: 15px;
    color: var(--white);
}

.info-card-content span {
    font-size: 14px;
    color: var(--text-secondary);
}

.info-link {
    font-size: 14px;
    color: var(--orange) !important;
    font-weight: 600;
}

.info-link:hover {
    color: var(--orange-light) !important;
}

/* ============================================
   CTA SECTION (MenuBura Style)
   ============================================ */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(45, 43, 127, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    max-width: 700px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 28px;
}

.cta-badge svg {
    stroke: var(--green);
}

.cta-section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateX(6px);
    border-color: rgba(232, 97, 26, 0.3);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.whatsapp-icon { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.phone-icon { background: rgba(45, 43, 127, 0.15); }
.phone-icon svg { stroke: var(--purple-light); }
.instagram-icon { background: rgba(225, 48, 108, 0.15); }
.instagram-icon svg { stroke: #E1306C; }
.address-icon { background: rgba(232, 97, 26, 0.15); }
.address-icon svg { stroke: var(--orange); }

.contact-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.contact-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-top: 4px;
    display: inline-block;
}

.contact-map {
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 64px 0 0;
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
}

.footer-logo-wrap {
    display: flex;
    height: 60px;
    width: auto;
    margin-bottom: 24px;
}

.footer-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-socials a:hover svg {
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-col a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--orange);
    font-weight: 600;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all 0.3s;
    animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: var(--surface-light);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.12); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-bento {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
        justify-content: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 7, 0.97);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 32px;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 8px;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links .nav-link {
        font-size: 18px;
        padding: 14px 20px;
        text-align: center;
    }

    .nav-actions {
        display: flex;
    }

    .nav-actions .btn-nav {
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .nav-toggle {
        display: none !important;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .section-header h2,
    .cta-section h2 {
        font-size: 32px;
    }

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

    .section-header p {
        font-size: 15px;
    }

    .services {
        padding: 60px 16px;
    }

    .products, .about, .contact, .cta-section {
        padding: 60px 0;
    }

    .service-main {
        padding: 32px 24px;
    }

    .service-grid-right {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .contact-map {
        min-height: 300px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        gap: 40px;
        width: 100%;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-links > *:nth-child(3) {
        grid-column: 1 / -1;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-header h2,
    .cta-section h2 {
        font-size: 28px;
    }

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary.btn-lg,
    .btn-ghost.btn-lg,
    .btn-outline.btn-lg {
        width: 100%;
        justify-content: center;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 26px;
    }
}
