/* main stylesheet */

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


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

ul, ol {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography & Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive sizing */
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Common Layout Components */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto var(--space-xl) auto;
    text-align: center;
}

.section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Buttons and CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    box-shadow: var(--shadow-sm), var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), 0 0 25px rgba(224, 75, 62, 0.45);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--border-color-hover);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
}

.channel-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

.channel-card-link:hover {
    transform: translateY(-3px);
}

.highlight {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-scrolled {
    height: 70px;
    background-color: rgba(15, 28, 45, 0.9);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

.logo-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.logo-r {
    color: var(--primary);
}

.logo-tagline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.52rem;
    color: var(--primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + var(--space-xl));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Floating background glow circles */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.glow-blob-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: 10%;
    right: 5%;
}

.glow-blob-2 {
    width: 300px;
    height: 300px;
    background-color: var(--secondary);
    bottom: 20%;
    left: -10%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(224, 75, 62, 0.25);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.hero-title {
    margin-bottom: 0.5rem;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

.stat-item h4 {
    font-size: 2.2rem;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Premium Visual - Dashboard Mockup for Hero Right */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, rgba(21, 39, 59, 0.7), rgba(15, 28, 45, 0.9));
    border: 1px solid var(--border-color-hover);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
}
.mockup-dots span:nth-child(2) { background-color: #eab308; }
.mockup-dots span:nth-child(3) { background-color: #22c55e; }

.mockup-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mockup-row {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-candidate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.candidate-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.candidate-info h5 {
    font-size: 0.85rem;
    font-weight: 600;
}

.candidate-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mockup-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
}

.badge-match {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-hired {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Partner Logo Carousel */
.partners-section {
    padding: var(--space-lg) 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-md);
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--space-xs) 0;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: var(--space-2xl);
    animation: marquee 25s linear infinite;
}

/* Pause scroll when users hover logos to inspect */
.carousel-viewport:hover .carousel-track {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    opacity: 0.45;
    transition: var(--transition-normal);
    cursor: pointer;
}

.partner-logo svg {
    height: 28px;
    fill: currentColor;
    color: var(--text-secondary);
}

.partner-logo:hover {
    opacity: 0.95;
    color: var(--primary);
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.benefit-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-normal);
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.service-icon {
    color: var(--secondary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.service-list {
    margin-bottom: var(--space-xl);
    width: 100%;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.service-list-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.service-btn {
    width: 100%;
    margin-top: auto;
}

/* Work Process Section */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: var(--space-xl) auto 0 auto;
}

/* Center timeline line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-color-hover);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
}

.process-step:nth-child(odd) .process-step-content {
    grid-column: 1;
    text-align: right;
}

.process-step:nth-child(even) .process-step-content {
    grid-column: 2;
}

.process-step-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--bg-primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 10px rgba(224, 75, 62, 0.3);
}

.process-step-content h3 {
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(99, 102, 241, 0.08);
}

.testimonial-quote-icon svg {
    width: 60px;
    height: 60px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
    color: #f59e0b; /* Amber 500 */
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.testimonial-user-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-user-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact & Lead Capture Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.channel-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon.channel-whatsapp {
    background-color: var(--accent-light);
    color: var(--accent);
}

.channel-icon svg {
    width: 20px;
    height: 20px;
}

.channel-details h5 {
    font-size: 0.95rem;
    font-weight: 600;
}

.channel-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-form-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 75, 62, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.form-textarea {
    height: 120px;
    resize: none;
}

/* Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
    animation: bounce-whatsapp 3s infinite ease-in-out, pulse-whatsapp 2s infinite;
    cursor: pointer;
    transition: var(--transition-normal);
}

.whatsapp-bubble:hover {
    background-color: var(--accent-hover);
    transform: scale(1.1);
}

.whatsapp-bubble svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color-hover);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
    pointer-events: none;
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Section */
.footer {
    background-color: #0b131c;
    padding: var(--space-xl) 0 var(--space-lg) 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: var(--space-sm);
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-nav h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* RESPONSIVE MEDIA QUERIES */

/* For smaller desktops & large tablets */
@media (max-width: 1024px) {
    :root {
        --space-2xl: 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .contact-info h2 {
        text-align: center;
    }
}

/* For standard tablets */
@media (max-width: 768px) {
    /* Navigation Hamburger Toggle states */
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        transition: right var(--transition-normal);
        z-index: 1050;
        padding: var(--space-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .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);
    }
    
    /* Timeline adjustment - Stack vertical on mobile */
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding-left: 50px;
    }
    
    .process-step:nth-child(odd) .process-step-content {
        grid-column: 1;
        text-align: left;
    }
    
    .process-step:nth-child(even) .process-step-content {
        grid-column: 1;
    }
    
    .process-step-indicator {
        left: 20px;
        top: 24px;
        transform: translate(-50%, -50%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltips on mobile to save screen real estate */
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    :root {
        --space-xl: 2rem;
        --space-2xl: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .contact-form-container {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-bubble {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-bubble svg {
        width: 26px;
        height: 26px;
    }
}
