/* ==================== RESET AND BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --lighter-gray: #e8e8e8;
    --white: #ffffff;
    --red: #C8102E;
    --red-dark: #A00D24;
    --red-light: #E8243E;
    --font: 'Inter', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
    background-color: var(--white);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden-field {
    display: none;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-name {
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background-color: var(--red) !important;
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover,
.nav-cta.active {
    background-color: var(--red-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background-color: var(--dark);
}

/* ── LOTTIE ANIMATED BACKGROUND (hero) ── */
.lottie-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.lottie-background svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

/* ── DARK OVERLAY (sits above Lottie, below content) ── */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 16, 46, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(200, 16, 46, 0.08) 0%, transparent 40%);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.4), transparent);
}

/* ── HERO CONTENT (sits on top of everything) ── */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 40px;
    opacity: 1;
    transition: var(--transition);
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background-color: rgba(200, 16, 46, 0.12);
    color: var(--red-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(200, 16, 46, 0.25);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.tagline-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--red);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    animation: bounce 2s infinite;
}

.hero-scroll:hover {
    color: var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ==================== STATS BAR ==================== */
.stats-bar {
    background-color: var(--red);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== GOOGLE SEARCH LOTTIE SHOWCASE ==================== */
.lottie-showcase {
    background-color: var(--white);
    padding: 0;
    overflow: hidden;
}

.lottie-showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.lottie-google-player {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
}

.lottie-google-player svg {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.lottie-showcase::after {
    content: '';
    display: block;
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lighter-gray), transparent);
    margin: 0 auto;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
}

.section-white {
    background-color: var(--white);
}

.section-light {
    background-color: var(--light-gray);
}

.section-dark {
    background-color: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--red-light);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: var(--white);
}

.section-title.left-align {
    text-align: left;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== ABOUT ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 12px;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 18px;
}

.about-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-card-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background-color: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover .service-icon {
    background-color: var(--red);
    color: var(--white);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(200, 16, 46, 0.08);
    color: var(--red);
    border-radius: var(--radius);
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ==================== LOCAL SEO ==================== */
.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.seo-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-content strong {
    color: var(--dark);
}

.check-list {
    margin: 24px 0 32px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--medium-gray);
}

.check-list li i {
    color: var(--red);
    font-size: 16px;
    min-width: 16px;
}

.seo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.seo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==================== FIX: Lottie in Local SEO Section ==================== */
.seo-image .lottie-google-player {
    width: 100%;
    max-width: 100%;
    min-height: 600px;
    transform: scale(1.4);
    transform-origin: center center;
}

.seo-image .lottie-google-player svg {
    width: 100% !important;
    height: 100% !important;
}

/* ==================== WHY CHOOSE US ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.03);
}

.why-card:hover {
    border-color: var(--red);
    background-color: rgba(200, 16, 46, 0.05);
    transform: translateY(-4px);
}

.why-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

/* ==================== PROCESS ==================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.process-line {
    position: absolute;
    top: 30px;
    left: calc(50% + 35px);
    width: calc(100% - 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--lighter-gray));
    z-index: 1;
}

.process-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== RESULTS ==================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.result-item {
    padding: 32px 20px;
}

.result-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(200, 16, 46, 0.06);
    color: var(--red);
    font-size: 28px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.result-item:hover .result-icon {
    background-color: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.result-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.result-item p {
    font-size: 14px;
    color: var(--gray);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.required {
    color: var(--red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--dark);
    background-color: var(--white);
    border: 1px solid var(--lighter-gray);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==================== CONTACT INFO SIDEBAR ==================== */
.info-card {
    background-color: var(--dark);
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--red);
    font-size: 18px;
    margin-top: 3px;
    min-width: 18px;
}

.info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.6;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.info-item a:hover {
    color: var(--red-light);
}

.info-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--red);
    transform: translateY(-3px);
}

.qr-wrapper {
    text-align: center;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin: 0 auto 8px;
    border-radius: var(--radius);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.qr-label {
    font-size: 12px;
    opacity: 0.5;
    font-weight: 500;
}

.payments-img {
    max-width: 100%;
    border-radius: var(--radius);
    opacity: 0.9;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--black);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--red);
    min-width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== FOOTER PAYMENTS ==================== */
.footer-payments {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
}

.footer-payments .payments-img {
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.9;
    border-radius: var(--radius);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
    z-index: 9000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--red-dark);
    transform: translateY(-3px);
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background-color: var(--dark);
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
        display: block;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }

    .hero-logo {
        width: 100px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-tagline {
        font-size: 12px;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .lottie-showcase-inner {
        padding: 40px 16px;
    }

    .lottie-google-player {
        max-width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .seo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .seo-content .section-title.left-align {
        text-align: center;
    }

    .seo-content .section-label {
        text-align: center;
        display: block;
    }

.seo-image .lottie-google-player {
    max-width: 100%;
    min-height: 400px;
    transform: scale(1.3);
}

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }

    .info-card {
        padding: 24px;
    }

    .nav-name {
        font-size: 12px;
        letter-spacing: 1px;
    }
}