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

html { scroll-behavior: smooth; }

body {
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  width: 10px; height: 10px;
  background: #00F5FF;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 245, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.12s ease;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Selection color */
::selection { background: rgba(0, 245, 255, 0.3); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #00F5FF; border-radius: 2px; }

/* Global layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.section {
    padding: 100px 0;
}
.section-label {
    font-size: 12px;
    color: #00F5FF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 20px;
}
.section-subtext {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}
.btn-primary {
    background: #00F5FF;
    color: #000;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid #00F5FF;
    cursor: none;
    transition: transform 0.3s;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
    transform: scale(1.04);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: none;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}
.btn-secondary:hover {
    transform: scale(1.04);
}
.btn-outline {
    background: transparent;
    color: #00F5FF;
    border: 1px solid #00F5FF;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: none;
    font-size: 14px;
    font-weight: 600;
}

/* SECTION 1 - NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 14px 60px; }
.logo {
    color: white;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 4px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-link {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
    color: #00F5FF;
    border-bottom: 2px solid #00F5FF;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-btn {
    border: 1px solid #00F5FF;
    color: #00F5FF;
    background: transparent;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: none;
    transition: background 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.nav-btn:hover {
    background: #00F5FF;
    color: #000;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* SECTION 2 - HERO (ROBOT THEME) */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(30, 0, 10, 0.5) 0%, #000 80%);
    position: relative;
    overflow: hidden;
}
.css-bg-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}
.css-bg-glows {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.glow-blob {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
}
.red-glow {
    width: 400px; height: 400px; background: rgba(220, 20, 60, 0.3);
    top: 20%; right: 10%; animation: pulseGlow 8s infinite alternate;
}
.silver-glow {
    width: 500px; height: 500px; background: rgba(192, 192, 192, 0.15);
    bottom: -10%; left: -10%; animation: pulseGlow 10s infinite alternate-reverse;
}
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.6; }
}
#particles {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 2; opacity: 0.6;
}

/* Hero Layout */
.hero-layout {
    position: relative; z-index: 3;
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1200px; padding: 0 40px; margin: 0 auto;
    gap: 40px;
}
.hero-content {
    flex: 1; max-width: 550px;
}

/* Typography Colors */
.text-silver {
    color: #C0C0C0;
}
.text-silver-gradient {
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.giant-heading {
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 900; letter-spacing: 4px;
    margin: 10px 0 20px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 16px; letter-spacing: 6px; text-transform: uppercase;
    animation: fadeIn 0.5s ease forwards 0.4s; opacity: 0;
}
.hero-body {
    font-size: 18px; line-height: 1.6;
    margin-bottom: 40px; min-height: 54px;
}

/* Buttons */
.hero-buttons {
    display: flex; gap: 20px; opacity: 0;
}
.hero-buttons.visible {
    opacity: 1; transition: opacity 0.5s ease;
}
.btn-red {
    background: #DC143C; color: #fff; border: 1px solid #DC143C;
}
.btn-red:hover {
    background: transparent; color: #DC143C; box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}
.btn-silver {
    border: 1px solid #C0C0C0; color: #C0C0C0;
}
.btn-silver:hover {
    background: rgba(192, 192, 192, 0.1); color: #fff;
}

/* Robot Wrapper */
.hero-robot-wrapper {
    flex: 1; display: flex; justify-content: center; align-items: center;
    position: relative; height: 600px;
    perspective: 1000px;
}
.robot-container {
    position: relative; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}
.robot-img {
    max-height: 100%; max-width: 100%; object-fit: contain;
    z-index: 2; position: relative;
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.4));
    animation: floatRobot 6s ease-in-out infinite;
}
@keyframes floatRobot {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Floating Nodes */
.floating-node {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.3);
    padding: 10px 16px; border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff; font-size: 14px; font-weight: 600;
}
.floating-node .node-icon {
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
}
.floating-node .node-icon svg { width: 100%; height: 100%; }

.node-1 { top: 15%; left: 0; animation: floatNode 5s ease-in-out infinite 0s; }
.node-2 { top: 40%; right: 0; animation: floatNode 6s ease-in-out infinite 1s; }
.node-3 { bottom: 20%; left: 10%; animation: floatNode 7s ease-in-out infinite 2s; }

@keyframes floatNode {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* SECTION 3 - ABOUT */
#about {
    background-image: 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: 60px 60px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-desc {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
}
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.feature-pills span {
    border: 1px solid rgba(0,245,255,0.2);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: #aaa;
}
.about-right .img-wrapper {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
}
.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION 4 & 7 - CARDS GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    cursor: none;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,245,255,0.15);
    display: block;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
}
.service-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-top: 12px;
}
.arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    color: #00F5FF;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(-10px);
}
.service-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}
.adv-icon {
    width: 40px;
    height: 40px;
    stroke: #00F5FF;
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 10px;
}

/* SECTION 5 - PORTFOLIO */
.portfolio-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}
.portfolio-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.portfolio-card:hover {
    border-color: rgba(0,245,255,0.3);
    transform: translateY(-4px);
}
.portfolio-card.alt-card .img-side {
    order: 2;
}
.portfolio-card.alt-card .text-side {
    order: 1;
}
.img-side {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}
.portfolio-card:hover .img-side img {
    transform: scale(1.05);
}
.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-card:hover .img-overlay {
    opacity: 1;
}
.text-side {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.port-num {
    font-size: 64px;
    font-weight: 900;
    color: rgba(0,245,255,0.08);
    line-height: 1;
    margin-bottom: 10px;
}
.tech-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.tech-tags span {
    font-size: 11px;
    color: #00F5FF;
    border: 1px solid rgba(0,245,255,0.3);
    padding: 4px 10px;
    border-radius: 12px;
}
.text-side h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
.text-side ul {
    list-style: none;
}
.text-side ul li {
    font-size: 14px;
    color: #888;
    line-height: 2;
}

/* SECTION 6 - PROCESS */
.process-container {
    position: relative;
    margin-top: 60px;
}
.process-line {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 1px;
    background-image: linear-gradient(90deg, #00F5FF 50%, transparent 50%);
    background-size: 10px 1px;
    opacity: 0.3;
    z-index: 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}
.step-card {
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
}
.step-num {
    font-size: 64px;
    font-weight: 900;
    color: rgba(0,245,255,0.1);
    position: absolute;
    top: 10px; left: 0; right: 0;
    z-index: 0;
}
.step-icon {
    width: 40px; height: 40px;
    stroke: #00F5FF;
    stroke-width: 1.5;
    fill: none;
    position: relative;
    z-index: 1;
    background: #000;
    padding: 5px;
}
.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}
.step-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* SECTION 8 - STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.5s;
}
.stat-num {
    font-size: 56px;
    font-weight: 900;
    color: #00F5FF;
    border-bottom: 2px solid rgba(0,245,255,0.5);
    padding-bottom: 8px;
    display: inline-block;
}
.stat-label {
    font-size: 13px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 16px;
}

/* SECTION 9 - TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(0,245,255,0.3); }
.stars { color: #00F5FF; font-size: 16px; letter-spacing: 2px; }
.quote { font-size: 15px; color: #aaa; line-height: 1.8; font-style: italic; margin: 20px 0; }
.divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.client-info { display: flex; align-items: center; gap: 15px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; }
.client-info h4 { font-size: 15px; font-weight: 600; color: #fff; }
.client-info p { font-size: 13px; color: #888; }

/* SECTION 10 - CTA */
.cta-banner {
    background: rgba(0,245,255,0.04);
    border-top: 1px solid rgba(0,245,255,0.1);
    border-bottom: 1px solid rgba(0,245,255,0.1);
    padding: 100px 40px;
    text-align: center;
}
.cta-banner h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 10px; }
.cta-banner p { color: #888; font-size: 18px; margin-bottom: 40px; }

/* SECTION 11 - FOOTER */
footer { padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-row { display: flex; justify-content: space-between; align-items: center; }
.footer-row.top { margin-bottom: 60px; }
.footer-brand h3 { font-size: 24px; font-weight: 900; letter-spacing: 2px; margin-bottom: 5px; }
.footer-brand p { color: #888; font-size: 14px; }
.footer-nav { display: flex; gap: 30px; }
.footer-nav a { color: #aaa; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.footer-contact a { color: #00F5FF; text-decoration: none; font-size: 15px; font-weight: 600; }
.footer-row.bottom { justify-content: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
.footer-row.bottom p { color: #444; font-size: 13px; }

/* SECTION 12 - MODAL */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    display: none; align-items: center; justify-content: center;
    z-index: 10000;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 48px;
    max-width: 540px;
    width: 90%;
    position: relative;
}
.modal-close {
    position: absolute; top: 20px; right: 20px;
    background: transparent; border: none; color: #fff;
    font-size: 28px; cursor: none;
}
.modal-box h2 { font-size: 32px; margin-bottom: 10px; }
.modal-box p { color: #888; font-size: 14px; margin-bottom: 30px; }
.modal-box input, .modal-box select, .modal-box textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    cursor: none;
}
.modal-box input:focus, .modal-box select:focus, .modal-box textarea:focus {
    border-color: #00F5FF; outline: none;
}
.modal-box option { background: #0a0a0a; color: #fff; }

/* SECTION 13 - CHATBOT */
.chat-toggle-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #00F5FF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(0,245,255,0.4);
  cursor: none; z-index: 9998;
  transition: transform 0.3s;
}
.chat-toggle-btn:hover { transform: scale(1.1); }
.chat-window {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 360px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex; flex-direction: column;
  z-index: 9997;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.chat-window.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
}
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
}
.status-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; }
.chat-close-btn { margin-left: auto; background: transparent; border: none; color: #888; font-size: 24px; cursor: none; }
.chat-messages {
  height: 320px;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 10px;
}
.chat-input-field {
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; color: #fff; font-size: 13px; font-family: 'Inter', sans-serif; cursor: none;
}
.chat-send-btn {
    background: #00F5FF; color: #000; padding: 10px 16px; border-radius: 8px; font-weight: 600; border: none; cursor: none; font-family: 'Inter', sans-serif;
}

/* SECTION 14 - WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 9996;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  cursor: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #000; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hamburger { display: flex; }
  .nav-btn { display: none; }
  
  .hero-content .giant-heading { font-size: clamp(52px, 18vw, 80px); flex-direction: column; line-height: 1; }
  .hero-left, .hero-right { transform: none; animation: none; opacity: 1; }
  .hero-body { padding: 0 20px; }
  .hero-buttons { flex-direction: column; padding: 0 20px; }
  
  .about-grid { grid-template-columns: 1fr; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-card:nth-child(even) .img-side { order: -1; }
  .portfolio-card.alt-card .img-side { order: unset; }
  .portfolio-card.alt-card .text-side { order: unset; }
  
  .steps-grid { grid-template-columns: 1fr; }
  .process-line { display: none; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .wa-float { bottom: 20px; left: 16px; width: 48px; height: 48px; }
  .chat-toggle-btn { bottom: 20px; right: 16px; width: 48px; height: 48px; }
  .chat-window { right: 10px; left: 10px; width: auto; }
  
  .footer-row { flex-direction: column; gap: 32px; text-align: center; }
  .footer-contact { text-align: center; }
}
