/* ================================
   PC WORLD - STYLES
   ================================ */

/* ---------- Root & Reset ---------- */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --warning: #f59e0b;
    --success: #10b981;
    --text-main: #0f172a;
    --text-soft: #64748b;
    --text-light: #e2e8f0;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #020617;
    --border: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-round: 999px;
    --shadow-sm: 0 1px 2px rgba(15,23,42,0.08);
    --shadow-md: 0 4px 8px rgba(15,23,42,0.12);
    --shadow-lg: 0 16px 30px rgba(15,23,42,0.18);
    --transition-fast: 0.18s ease;
    --transition: 0.3s ease;

    --gradient-primary: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-hero: radial-gradient(circle at top left, #1d4ed8, #020617 55%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* Links & basic elements */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
    border: none;
    outline: none;
    background: transparent;
}

ul {
    list-style: none;
}

/* Layout helper */
.container {
    width: min(1200px, 100% - 40px);
    margin-inline: auto;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-round);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.6);
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.35);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-google {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    color: #fff;
    border: none;
    padding-inline: 32px;
    font-weight: 600;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(66, 133, 244, 0.45);
}

.full-width {
    width: 100%;
}

/* ================================
   Header & Navigation
   ================================ */
#header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.35);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 20px;
    max-width: 1200px;
    margin-inline: auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
}

.logo i {
    font-size: 1.5rem;
}

.logo-img {
    height: 60px;
    max-width: 140px;
    width: auto;
    display: block;
    object-fit: contain;
}

.since-badge-header {
    padding: 4px 10px;
    border-radius: var(--radius-round);
    font-size: 0.7rem;
    font-weight: 600;
    color: #334155;
    background: #e5f3ff;
    border: 1px solid #bfdbfe;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link {
    position: relative;
    padding-block: 4px;
    color: #0f172a;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient-primary);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-round);
    background: #e0edff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.nav-call:hover {
    background: #1d4ed8;
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #0f172a;
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   Hero
   ================================ */
.hero {
    background: var(--gradient-hero);
    color: #e5e7eb;
    padding-top: 90px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle at 0 0, #1d4ed8 0, transparent 45%), radial-gradient(circle at 100% 100%, #0ea5e9 0, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Left */
.hero-content h1 {
    font-size: clamp(2.2rem, 3vw + 1.4rem, 3.1rem);
    line-height: 1.1;
    margin-bottom: 12px;
    color: #f9fafb;
}

.hero-content h1 span {
    color: #60a5fa;
}

.hero-tagline {
    font-size: 1rem;
    color: #cbd5f5;
    margin-bottom: 18px;
}

.hero-since {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-round);
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.65);
    font-size: 0.8rem;
    color: #e5e7eb;
}

.hero-since i {
    color: var(--warning);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-round);
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
}

.hero-pills i {
    color: var(--accent);
}

.hero-rating-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: var(--radius-round);
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.55);
    font-size: 0.8rem;
}

.hero-rating .stars i {
    color: var(--warning);
    font-size: 0.9rem;
}

.hero-rating span {
    color: #e5e7eb;
}

.hero-since-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #cbd5f5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-actions .btn {
    padding-inline: 22px;
    padding-block: 10px;
    font-size: 0.9rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.8rem;
    color: #cbd5f5;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-meta a {
    text-decoration: underline;
}

/* Right visual */
.hero-visual {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(248, 250, 252, 0.12), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.6), transparent 55%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #0b1220;
    color: #e5e7eb;
    padding: 10px 14px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.55);
    font-size: 0.8rem;
    min-width: 180px;
    animation: float 4s ease-in-out infinite;
}

.hero-card i {
    margin-top: 2px;
    color: #38bdf8;
}

.hero-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #f9fafb;
}

.hero-card-1 {
    top: 12%;
    left: -6%;
    animation-delay: 0s;
}
.hero-card-2 {
    top: 50%;
    right: -6%;
    animation-delay: 0.5s;
}
.hero-card-3 {
    bottom: 6%;
    left: 16%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* ================================
   Section Generic
   ================================ */
.section {
    padding-block: 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

/* Dark variant for reviews */
.section-header-dark h2 {
    color: #f9fafb;
}
.section-header-dark p {
    color: #9ca3af;
}

/* ================================
   Scroll Animations (reveal on scroll)
   ================================ */

/* Base behavior: elements are visible by default. When JS adds the
   .has-scroll-animations class on <html>, they will start hidden and
   then transition into view when .in-view is added. */
.scroll-animate {
    opacity: 1;
    transform: none;
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

/* When scroll animations are enabled, start elements off-screen/hidden
   until the IntersectionObserver adds .in-view. */
.has-scroll-animations .scroll-animate {
    opacity: 0;
    transform: translateY(24px);
}

/* Direction variants for nicer "video-like" movement */
.has-scroll-animations .scroll-animate.from-left {
    transform: translateX(-32px);
}

.has-scroll-animations .scroll-animate.from-right {
    transform: translateX(32px);
}

.has-scroll-animations .scroll-animate.pop {
    transform: translateY(16px) scale(0.96);
}

/* Final revealed state */
.has-scroll-animations .scroll-animate.in-view {
    opacity: 1;
    transform: none;
}

/* Accessibility: users who prefer reduced motion should see everything
   without transitions or extra animations. */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* ================================
   Services
   ================================ */
.services {
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.4);
}

.service-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    margin-bottom: 10px;
}

.service-icon i {
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #0f172a;
}

.service-card li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card li i {
    color: var(--success);
    font-size: 0.8rem;
}

/* ================================
   About
   ================================ */
.about {
    background: #ffffff;
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.about-text h2 span {
    color: var(--primary);
}

.about-tagline {
    font-size: 0.98rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.about-since {
    color: var(--warning);
    font-weight: 600;
}

.about-text > p {
    font-size: 0.92rem;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
}

.feature i {
    font-size: 1.2rem;
    margin-top: 2px;
    color: var(--primary);
}

.feature h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #0f172a;
}

.feature p {
    font-size: 0.8rem;
    color: var(--text-soft);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    padding: 18px 16px;
    border-radius: 16px;
    background: radial-gradient(circle at top, #2563eb, #0f172a);
    color: #e5e7eb;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.stat-card i {
    font-size: 1.6rem;
    margin-bottom: 6px;
    opacity: 0.95;
}

.stat-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.stat-card p {
    font-size: 0.8rem;
    color: #d1d5db;
}

/* ================================
   Reviews
   ================================ */
.reviews {
    background: radial-gradient(circle at top, #1e293b, #020617);
    color: #e5e7eb;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(90deg, rgba(148, 163, 184, 0.2) 1px, transparent 0),
        linear-gradient(180deg, rgba(148, 163, 184, 0.2) 1px, transparent 0);
    background-size: 70px 70px;
    pointer-events: none;
}

.rating-badge {
    margin-top: 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border-radius: var(--radius-round);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
}

.rating-stars i {
    color: var(--warning);
    font-size: 0.95rem;
}

.rating-source {
    font-size: 0.78rem;
    color: #9ca3af;
}

/* Slider */
.reviews-slider {
    margin-top: 28px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scrollReviews 80s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

/* Review cards */
.review-card {
    flex: 0 0 320px;
    max-width: 320px;
    background: #020617;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.85);
    font-size: 0.87rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at top, #38bdf8, #1d4ed8);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.review-header h4 {
    font-size: 0.92rem;
    color: #e5e7eb;
}

.review-stars i {
    color: var(--warning);
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.82rem;
    color: #cbd5f5;
    margin-bottom: 10px;
    line-height: 1.7;
    font-style: italic;
}

.review-source {
    font-size: 0.78rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.review-source i {
    color: #4285f4;
}

/* Scroll animation */
@keyframes scrollReviews {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================
   Contact
   ================================ */
.contact {
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 28px;
}

/* Left info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: #0f172a;
}

.info-text p {
    font-size: 0.82rem;
    color: var(--text-soft);
}

.info-text a {
    color: var(--primary);
}

.info-text a:hover {
    text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e7eb;
}

.contact-form-wrapper h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #0f172a;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #0f172a;
    font-weight: 500;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    padding-inline: 10px;
}

.input-wrap i {
    font-size: 0.9rem;
    color: #94a3b8;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 10px 8px;
    font-size: 0.85rem;
    color: #0f172a;
}

.textarea-wrap {
    align-items: flex-start;
    padding-top: 8px;
}

.textarea-wrap i {
    margin-top: 4px;
}

.input-wrap:focus-within {
    border-color: rgba(37, 99, 235, 0.7);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
    background: #ffffff;
}

.contact-form button {
    margin-top: 6px;
}

.form-status {
    font-size: 0.8rem;
    margin-top: 6px;
    min-height: 16px;
}

/* Map */
.map-section {
    display: grid;
    gap: 16px;
}

.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e7eb;
}

.map-cta {
    text-align: center;
}

/* ================================
   Floating Buttons
   ================================ */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 90px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.5);
    z-index: 999;
}

.whatsapp-float i {
    font-size: 1.4rem;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
}

/* Scroll top */
.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #e5e7eb;
    padding-top: 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.1fr);
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-brand .logo {
    color: #e5e7eb;
    margin-bottom: 6px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #cbd5f5;
    margin-bottom: 10px;
}

.footer-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.footer-rating .stars i {
    color: var(--warning);
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-links {
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    color: #e5e7eb;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-contact {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact li {
    display: flex;
    gap: 8px;
}

.footer-contact i {
    margin-top: 3px;
    color: #60a5fa;
}

.footer-social {
    margin-top: 8px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.footer-bottom {
    padding-block: 10px;
    text-align: center;
    font-size: 0.78rem;
    color: #9ca3af;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-inner {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        inset-inline: 0;
        top: 60px;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 14px 20px 16px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 8px;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .about-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-stats {
        max-width: 420px;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding-block: 52px;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-features {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-track {
        animation-duration: 55s;
    }

    .review-card {
        flex: 0 0 280px;
        max-width: 280px;
        padding-inline: 14px;
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .whatsapp-float {
        bottom: 80px;
        right: 14px;
    }
    .scroll-top {
        right: 14px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding-inline: 12px;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 30px;
        max-width: 120px;
    }

    .hero {
        padding-bottom: 46px;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .service-card {
        padding-inline: 16px;
    }

    .about-inner {
        gap: 26px;
    }

    .contact-form-wrapper {
        padding-inline: 14px;
    }

    .reviews-track {
        animation-duration: 45s;
        gap: 14px;
    }

    .review-card {
        flex: 0 0 260px;
        max-width: 260px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
    }

    .scroll-top {
        width: 38px;
        height: 38px;
    }
}

