/* ========================================
   tiskovazprava.cz — Main Stylesheet
   Colors: #F59D1A, #080810, #101828
   ======================================== */

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

:root {
    --orange: #F59D1A;
    --orange-hover: #e08c0e;
    --dark-blue: #105485;
    --mid-blue: #4379A2;
    --bg-dark: #080810;
    --bg-dark-end: #101828;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --dark-gray: #333333;
    --text: #444444;
    --border: #E0E0E0;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--orange-hover);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-gray);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 157, 26, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline-blue {
    background: transparent;
    color: var(--dark-gray);
    border-color: var(--dark-gray);
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    background: var(--bg-dark);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.navbar-brand:hover {
    color: var(--white);
}

.navbar-brand em {
    color: var(--orange);
    font-style: normal;
}

.navbar-brand svg,
.navbar-brand img {
    width: 36px;
    height: 36px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    padding: 8px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
    background: rgba(255,255,255,0.1);
    border: none;
}

.lang-current:hover {
    background: rgba(255,255,255,0.2);
}

.lang-current .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    overflow: hidden;
    z-index: 100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: background var(--transition);
}

.lang-dropdown a:hover {
    background: var(--light-gray);
    color: var(--dark-blue);
}

.lang-dropdown a .flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.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
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-end) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 157, 26, 0.15);
    border: 1px solid rgba(245, 157, 26, 0.3);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 100px 0;
}

section:nth-child(even):not(.hero):not(.stats-section) {
    background: var(--light-gray);
}

/* --- Online PR Section --- */
.online-pr {
    background: var(--light-gray);
}

.online-pr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.online-pr-text h2 {
    margin-bottom: 20px;
}

.online-pr-text p {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.online-pr-text .highlight {
    color: var(--dark-blue);
    font-weight: 600;
}

.online-pr-features {
    list-style: none;
    margin: 25px 0;
}

.online-pr-features li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
}

.online-pr-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.2;
}

.online-pr-features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 10px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
}

.online-pr-visual {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-end));
    border-radius: 16px;
    padding: 50px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 157, 26, 0.15);
}

.online-pr-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245,157,26,0.15) 0%, transparent 70%);
}

.online-pr-stat {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.online-pr-stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
}

.online-pr-stat .label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.online-pr-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Services (dark section) --- */
#services {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-end) 100%);
}

#services .section-title h2 {
    color: var(--white);
}

#services .section-title p {
    color: rgba(255,255,255,0.65);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border-color: rgba(245, 157, 26, 0.3);
}

.service-card h3 {
    color: var(--white);
}

.service-card p {
    color: rgba(255,255,255,0.65);
}

/* --- Metallic Icon --- */
@keyframes metalSlide {
    from { background-position: 0% 50%; }
    to   { background-position: 200% 50%; }
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    padding: 3px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #8a6515, #c9941a, #f5c030, #ffe060, #f5c030, #c9941a, #8a6515, #c9941a, #f5c030, #ffe060, #f5c030, #c9941a, #8a6515);
    background-size: 200% 100%;
    animation: metalSlide 6s linear infinite;
    box-shadow: 0 0 0 3px #0d0d0f, 0 8px 24px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s;
}

.service-card:hover .service-icon {
    box-shadow: 0 0 0 3px #0d0d0f, 0 12px 32px rgba(245, 157, 26, 0.25);
}

.icon-mid {
    width: 100%;
    height: 100%;
    border-radius: calc(20px - 3px);
    background: #0a0a0c;
    padding: 3px;
    box-sizing: border-box;
}

.icon-face {
    width: 100%;
    height: 100%;
    border-radius: calc(20px - 6px);
    background: radial-gradient(ellipse at 38% 20%, #2c2c2e 0%, #1c1c1e 55%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.icon-face::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 35% 18%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--orange);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--white);
}

.service-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Why Us --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-item {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.why-us-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.why-us-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-end));
    border: 1px solid rgba(245, 157, 26, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--orange);
}

.why-us-item h4 {
    margin-bottom: 5px;
}

.why-us-item p {
    color: var(--text);
    font-size: 0.9rem;
}

/* --- How It Works --- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 3px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    position: relative;
}

.step h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step p {
    color: var(--text);
    font-size: 0.9rem;
}

/* --- Stats --- */
.stats-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-end) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mid-blue);
    box-shadow: 0 0 0 3px rgba(67, 121, 162, 0.1);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 15px;
    display: none;
    font-size: 0.95rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Honeypot */
.ohnivak {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-end));
    border: 1px solid rgba(245, 157, 26, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--orange);
}

.contact-info-item h4 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text);
    font-size: 0.95rem;
}

.contact-map {
    margin-top: 25px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-center {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.85;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 25px;
    margin-bottom: 25px;
}

.footer-nav a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-company {
    font-size: 0.8rem;
    margin-top: 8px;
    opacity: 0.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Base fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for cards/items */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.35s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }

/* Slide-in from left */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide-in from right */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-in */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero animations */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBadgeFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 157, 26, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(245, 157, 26, 0); }
}

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

.hero-badge {
    animation: heroBadgeFade 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero h1 {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero p {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons {
    animation: heroFadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-buttons .btn-primary {
    animation: pulse 2.5s ease-in-out infinite;
    animation-delay: 2s;
}

/* Floating effect for visual cards */
.online-pr-visual {
    animation: float 6s ease-in-out infinite;
    animation-play-state: paused;
}

.online-pr-visual.visible {
    animation-play-state: running;
}

/* Step number animation */
@keyframes stepPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.step.visible .step-number {
    animation: stepPop 0.5s ease forwards;
}

/* Service card icon hover glow */
.service-card:hover .service-icon svg {
    filter: drop-shadow(0 0 8px rgba(245, 157, 26, 0.6));
    transform: scale(1.1);
    transition: all 0.4s ease;
}

.service-icon svg {
    transition: all 0.4s ease;
}

/* Why-us icon hover */
.why-us-item:hover .why-us-icon {
    transform: rotate(5deg) scale(1.1);
    transition: transform 0.3s ease;
}

.why-us-icon {
    transition: transform 0.3s ease;
}

/* Stats number glow */
@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(245, 157, 26, 0.3); }
    50% { text-shadow: 0 0 25px rgba(245, 157, 26, 0.6); }
}

.stat-number {
    animation: numberGlow 3s ease-in-out infinite;
}

/* Form focus glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 157, 26, 0.15);
}

/* Gold glowing logo */
@keyframes goldGlow {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(255, 190, 0, 0.4)) drop-shadow(0 0 14px rgba(245, 157, 26, 0.15));
    }
    50% {
        filter: drop-shadow(0 0 14px rgba(255, 190, 0, 0.8)) drop-shadow(0 0 28px rgba(245, 157, 26, 0.35));
    }
}

.navbar-brand img,
.footer-logo img {
    animation: goldGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 18px rgba(255, 190, 0, 0.9)) drop-shadow(0 0 36px rgba(245, 157, 26, 0.5));
}

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

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

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

    .steps::before {
        display: none;
    }

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    section {
        padding: 60px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right var(--transition);
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }

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

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-menu .lang-switcher {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .online-pr-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

    h1 { font-size: 1.7rem; }

    .hero h1 {
        font-size: 1.7rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 25px;
    }

    .online-pr-visual {
        padding: 30px;
    }
}
