/* ========================================
   SiteSprout — Premium Agency Styles
   Inspired by bold, professional service sites
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f4f8;
    --bg-dark: #0b1a2e;
    --bg-dark-lighter: #112240;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.14);

    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --accent-dark: #0284c7;
    --accent-glow: rgba(14, 165, 233, 0.1);
    --accent-gradient: linear-gradient(135deg, #0ea5e9, #0284c7);

    --cta-color: #f59e0b;
    --cta-hover: #d97706;
    --cta-gradient: linear-gradient(135deg, #f59e0b, #eab308);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-on-dark: #e2e8f0;

    --whatsapp: #25D366;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 4px 20px rgba(14, 165, 233, 0.25);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 72px;
}

.hero,
.navbar,
.footer-brand {
    --accent: #16a34a;
    --accent-light: #4ade80;
    --accent-dark: #15803d;
    --accent-glow: rgba(34, 197, 94, 0.1);
    --accent-gradient: linear-gradient(135deg, #4ade80, #15803d);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Keyframe Animations ---------- */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---------- Section Styles ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--accent-glow);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--cta-gradient);
    color: #0f172a;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-card {
    color: var(--accent);
    font-size: 0.9rem;
    padding: 0;
    background: none;
}

.btn-card:hover {
    color: var(--accent-dark);
    gap: 12px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    background: rgba(11, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(11, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1001;
}

.logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.footer-brand .logo-img {
    width: 28px;
    height: 28px;
}

.logo-text {
    color: #fff;
}

.logo-highlight {
    color: var(--accent-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus,
.nav-link:focus-visible,
.nav-link.active {
    color: #fff;
}

.nav-link.active {
    font-weight: 600;
    border: 2.5px solid rgba(30, 100, 200, 0.9);
    background: rgba(30, 100, 200, 0.1);
}

.nav-link:hover {
    opacity: 0.85;
}

.nav-cta-item {
    margin-left: 8px;
}

.nav-cta-item .btn {
    font-size: 0.85rem;
    padding: 8px 20px;
}

.btn-cta {
    background: linear-gradient(135deg, #166534, #14532d);
    color: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(20, 83, 45, 0.4);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 83, 45, 0.55);
    background: linear-gradient(135deg, #1a7a42, #166534);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('Web Background.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 26, 46, 0.92) 0%,
            rgba(11, 26, 46, 0.85) 40%,
            rgba(34, 197, 94, 0.15) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cta-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(1.3rem, 3.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-company-name {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    color: #fff;
}

.hero .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-site {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-sprout {
    color: #22c55e;
    -webkit-text-fill-color: #22c55e;
}

.hero-web-design {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.hero-orange-text {
    color: #f59e0b;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-buttons .btn-primary {
    background: #16a34a;
    color: #fff;
    border: 3px solid #22c55e;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: #15803d;
    border-color: #4ade80;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(22, 163, 74, 0.45);
    filter: none;
}

.hero-buttons .btn-secondary {
    background: rgba(15, 23, 42, 0.7);
    color: rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-location-badge svg {
    color: var(--cta-color);
    flex-shrink: 0;
}

.location-text {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--cta-color), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ========================================
   INTRO
   ======================================== */
.intro {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
}

.intro-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.intro-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--accent-glow);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
}

.services .section-label {
    color: var(--cta-color);
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.08);
}

.services .section-title {
    color: #fff;
}

.services .gradient-text {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .section-subtitle {
    color: var(--text-on-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-light);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-on-dark);
    line-height: 1.6;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.about-label.about-heading-mobile {
    display: none;
    text-align: center;
    margin-bottom: 40px;
}

.about-heading-desktop {
    display: block;
}

.about-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--accent-glow);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-avatar {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.about-experience-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    text-align: center;
}

.about-experience-badge strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.about-experience-badge span {
    font-size: 1rem;
    color: var(--text-muted);
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.value-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--whatsapp);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    margin-bottom: 32px;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-method:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
}

.method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    color: var(--accent);
    flex-shrink: 0;
}

.method-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.method-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

a.method-value:hover {
    color: var(--accent);
}

/* Contact Method Simple (no card/block) */
.contact-method-simple {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    transition: var(--transition);
}

.contact-method-simple .method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    color: var(--accent);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper .form-title {
    color: #fff;
}

.contact-form-wrapper .form-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: rgba(255, 255, 255, 0.12);
}

.form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact .btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.contact .btn-primary:hover {
    box-shadow: 0 6px 28px rgba(14, 165, 233, 0.35);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 0 24px;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.footer .nav-logo .logo-text {
    color: #fff;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 400px;
}

.footer-contact-info ul {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.footer-contact-info li {
    font-size: 0.85rem;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--accent-light);
}

.footer-contact-info .phone-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Phone link desktop/mobile visibility — CSS-only, no UA sniffing */
.phone-text {
    display: none;
}

/* On true pointer/mouse devices, hide the tel: link and show plain text instead */
@media (hover: hover) and (pointer: fine) {
    .phone-link {
        display: none;
    }
    .phone-text {
        display: inline;
    }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   SiteSprout — Premium Agency Styles
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    background: #22c55e;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-label.about-heading-mobile {
        display: block;
        text-align: center;
    }

    .about-heading-desktop {
        display: none;
    }

    .about-values {
        justify-items: center;
    }

    .footer-simple {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
    }

    .footer-contact-info ul {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: var(--transition-slow);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta-item {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
    }

    .nav-cta-item .btn {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.1rem, 5vw, 1.6rem);
    }

    .hero-company-name {
        font-size: clamp(2.8rem, 12vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .intro,
    .services,
    .about,
    .contact {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-simple {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .footer-contact-info ul {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .hero-buttons .btn-lg {
        padding: 12px 24px;
        font-size: 0.92rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1rem;
    }

    .hero-company-name {
        font-size: clamp(2.4rem, 14vw, 3rem);
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }
}