:root {
    --brand-50: #fff7ed;
    --brand-100: #ffedd5;
    --brand-500: #f97316;
    --brand-600: #ea580c;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-600);
    background-color: var(--slate-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.2;
}

.text-white { color: white; }
.text-gray { color: var(--slate-300); }

/* Layout & Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-w-lg { max-width: 800px; }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}
@media (min-width: 768px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.align-center { align-items: center; }

/* Sections */
.section { padding: 96px 0; }
.bg-light { background-color: white; }
.bg-lighter { background-color: var(--slate-50); }
.bg-dark { background-color: var(--slate-900); }
.border-top { border-top: 1px solid var(--slate-100); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc { font-size: 1.125rem; }

.subheading {
    display: block;
    color: var(--brand-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo img { height: 48px; }

.logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--brand-600); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--brand-600);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-500);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(234, 88, 12, 0.4);
}

.btn-outline {
    background-color: white;
    color: var(--slate-900);
    border: 1px solid var(--slate-200);
}

.btn-outline:hover {
    border-color: var(--slate-300);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.btn-outline-dark {
    background-color: var(--slate-900);
    color: white;
}
.btn-outline-dark:hover { background-color: var(--slate-800); transform: translateY(-2px); }

.glow-btn {
    box-shadow: 0 0 30px rgba(234, 88, 12, 0.3);
}
.glow-btn:hover {
    box-shadow: 0 0 50px rgba(234, 88, 12, 0.5);
}

.full-width { width: 100%; }

/* Hero */
.hero {
    position: relative;
    padding: 200px 0 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(234, 88, 12, 0.1) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 99px;
    background: white;
    border: 1px solid var(--slate-200);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--slate-700);
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
}

.gradient-text {
    background: linear-gradient(to right, var(--brand-500), #fbbf24);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Feature Cards */
.feature-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
    background: white;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    z-index: 2;
}

.icon-orange i { color: var(--brand-600); }
.icon-blue i { color: #2563eb; }
.icon-green i { color: #059669; }
.icon-purple i { color: #9333ea; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.bg-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
    opacity: 0.03;
    z-index: 1;
    transition: opacity 0.3s;
}

.feature-card:hover .bg-icon {
    opacity: 0.08;
}

/* Printing Section */
.printing-section {
    position: relative;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.orb-1 {
    top: -20%;
    left: -10%;
    background: rgba(234, 88, 12, 0.15);
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    background: rgba(37, 99, 235, 0.15);
}

.image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: linear-gradient(to right, var(--brand-600), #9333ea);
    border-radius: 40px;
    filter: blur(20px);
    opacity: 0.3;
    transition: opacity 0.5s;
}

.image-wrapper:hover .image-glow { opacity: 0.6; }

.printer-img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.1);
}

.dark-badge {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--slate-300);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
}

.divider {
    height: 2px;
    width: 32px;
    background-color: var(--brand-500);
    margin-bottom: 16px;
}

.feature-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--slate-400);
    font-size: 0.9rem;
}

/* Sister Concerns */
.sister-card {
    background: white;
    padding: 48px 32px;
    border-radius: 32px;
    text-align: center;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.sister-card:hover {
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.sister-icon {
    width: 80px;
    height: 80px;
    background: var(--slate-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.sister-icon i { color: var(--slate-700); width: 32px; height: 32px; }

.sister-card h3 { font-size: 1.5rem; margin-bottom: 16px; }

/* Footer */
.footer {
    background-color: var(--slate-950);
    color: var(--slate-300);
    padding: 96px 0 48px 0;
}

.footer-title { color: white; font-size: 2.5rem; margin-bottom: 24px; }
.footer-desc { font-size: 1.1rem; margin-bottom: 40px; color: var(--slate-400); max-width: 400px; }

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle i { color: var(--brand-500); width: 20px; height: 20px; }

.contact-row span { display: block; font-size: 0.85rem; color: var(--slate-500); }
.contact-row strong { display: block; color: white; font-size: 1.1rem; font-weight: 500; }

.contact-form-wrapper {
    background: var(--slate-900);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--slate-800);
}

.contact-form-wrapper h3 { color: white; font-size: 1.5rem; margin-bottom: 24px; }

.contact-form input, .contact-form textarea {
    width: 100%;
    background: var(--slate-950);
    border: 1px solid var(--slate-800);
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    font-family: inherit;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-500);
}

.footer-bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 32px; }
.footer-logo span { font-family: var(--font-heading); color: white; font-weight: 700; }

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Slider Styles */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.slide-bg-zoom {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.03);
    transition: transform 6s ease-out;
}
.slide.active .slide-bg-zoom {
    transform: scale(1);
}

.slide.active {
    display: block;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.slider-dot {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}
.slider-dot::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0%;
    background-color: var(--brand-500);
    transition: width 5s linear;
}

.slider-dot:hover {
    background-color: var(--slate-400);
}

.slider-dot.active {
    background-color: rgba(255,255,255,0.3);
    width: 64px;
}
.slider-dot.active::after {
    width: 100%;
}

/* Sister Link */
.sister-link {
    display: inline-block;
    margin-top: 24px;
    font-weight: 600;
    color: var(--brand-600);
    text-decoration: none;
    transition: all 0.2s;
}

.sister-link:hover {
    color: var(--brand-500);
    transform: translateX(4px);
}

/* Logo Update */
.logo { display: flex; align-items: center; }
.logo img { height: 72px; max-height: 72px; object-fit: contain; }
.logo span { display: none; } /* Hide text since logo has it */

/* Slider Images & Darken */
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.slide-bg-zoom {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.03);
    transition: transform 6s ease-out;
}
.slide.active .slide-bg-zoom {
    transform: scale(1);
}

.slide.active {
    display: flex;
}

/* Adjust hero height and positioning */
#hero-slider {
    height: 100vh;
    min-height: 600px;
    padding: 0;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.slide h1, .slide p, .slide .badge {
    color: white;
}
.slide .badge { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 20;
}

/* Scrolling Marquee */
.marquee-container {
    background: var(--brand-600);
    color: white;
    padding: 16px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 20;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 48px;
    padding-right: 48px;
}

.marquee-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 16px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* GraphicArt Services */
.ga-section {
    padding: 96px 0;
    background: var(--slate-900);
    color: white;
}

.ga-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.ga-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-8px);
    border-color: var(--brand-500);
}

.ga-icon {
    width: 64px;
    height: 64px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--brand-500);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ga-card h3 { color: white; font-size: 1.5rem; margin-bottom: 16px; }
.ga-card p { color: var(--slate-400); margin-bottom: 24px; }

/* Premium Sister Cards */
.sister-card-premium {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.sister-card-premium:hover {
    transform: translateY(-12px);
    border-color: rgba(234, 88, 12, 0.4);
}

.sister-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.sister-card-premium:hover .sister-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.6) 60%, transparent 100%);
}

.sister-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sister-icon-glass {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.sister-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.sister-content p {
    color: var(--slate-300);
    font-size: 1rem;
    margin-bottom: 32px;
    max-width: 90%;
    line-height: 1.6;
}

.sister-link-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 12px 24px;
    background: rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(234, 88, 12, 0.4);
    border-radius: 99px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.sister-link-glass:hover {
    background: var(--brand-600);
    border-color: var(--brand-500);
    gap: 12px;
}
.sister-link-glass i {
    width: 18px;
    height: 18px;
}

/* Alignment Utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.max-w-6xl { max-width: 1152px; }
.max-w-5xl { max-width: 1024px; }
.max-w-4xl { max-width: 896px; }


/* ===== COMPREHENSIVE RESPONSIVE FIXES ===== */

@media (max-width: 767px) {
    /* Navbar fixes */
    .nav-container {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 16px;
    }
    .logo img {
        height: 54px !important;
        margin-bottom: 12px;
    }
    .nav-links {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .nav-links .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    #google_translate_element {
        margin: 0 !important;
    }

    /* Hero Fixes */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
    #hero-slider {
        min-height: 80vh !important;
    }
    .hero-content {
        padding-top: 80px;
    }
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Section padding */
    .section {
        padding: 48px 0 !important;
    }
    .section-title {
        font-size: 2rem !important;
    }

    /* Sister Concerns Mobile */
    .sister-card-premium {
        min-height: 400px !important;
        padding: 24px !important;
    }
    .sister-content h3 {
        font-size: 1.5rem !important;
    }
    .sister-icon-glass {
        width: 48px !important;
        height: 48px !important;
    }

    /* Contact Form Mobile */
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    
    /* GraphicArt Mobile Grid */
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Custom Lang Switcher */
.custom-lang-switcher { position: relative; display: inline-block; margin: 0 8px; }
.lang-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 4px; font-weight: 600; color: var(--slate-700); font-size: 0.9rem; padding: 8px 12px; border-radius: 8px; transition: background 0.2s; font-family: inherit; }
.lang-btn:hover { background: var(--slate-100); color: var(--brand-600); }
.lang-menu { display: none; position: absolute; top: 100%; right: 0; background: white; min-width: 140px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden; border: 1px solid var(--slate-200); z-index: 100; margin-top: 8px; }
.lang-menu.show { display: block; }
.lang-menu a { display: block; padding: 10px 16px; text-decoration: none; color: var(--slate-700); font-size: 0.9rem; font-weight: 500; transition: background 0.2s; }
.lang-menu a:hover { background: var(--slate-50); color: var(--brand-600); }
/* Hide ugly google translate stuff */
.skiptranslate iframe, .goog-te-banner-frame { display: none !important; }
body { top: 0px !important; }
.goog-te-gadget { color: transparent !important; }
.goog-te-gadget .goog-te-combo { display: none !important; }
#google_translate_element { display: none !important; }
