/* ==========================================================================
   ELEKTRONIK ALAN YERLER - www.atilimdijital.com.tr
   ========================================================================== */

:root {
    --color-primary: #5b7cfa;
    --color-primary-light: #7b94fb;
    --color-primary-dark: #4a63d9;
    --color-secondary: #10b981;
    --color-secondary-light: #34d399;
    --color-accent: #f59e0b;
    --color-success: #25d366;
    --color-danger: #ef4444;
    
    --color-bg: #f8f9fd;
    --color-bg-light: #ffffff;
    --color-surface: #ffffff;
    --color-surface-hover: #f1f3f9;
    
    --color-text: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.06), 0 10px 10px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-md);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.brand-tagline {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    height: 32px;
    justify-content: center;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* HERO */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(91, 124, 250, 0.1);
    border: 1px solid rgba(91, 124, 250, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-primary);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(91, 124, 250, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* BRANDS SLIDER */
.brands-slider-section {
    padding: 60px 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

.brands-slider {
    overflow: hidden;
    margin-top: 40px;
}

.brands-track {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-slide {
    flex-shrink: 0;
}

.brand-logo-box {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    padding: 12px;
}

.brand-logo-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

/* SECTION */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(91, 124, 250, 0.1);
    border: 1px solid rgba(91, 124, 250, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
}

/* SERVICES */
.services-section {
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 124, 250, 0.1);
    border-radius: var(--radius-md);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
}

/* TESTIMONIALS */
.testimonials-section {
    background: var(--color-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    color: var(--color-text);
}

.author-location {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* LOCATIONS */
.locations-section {
    background: var(--color-surface);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.location-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.location-pill i {
    color: var(--color-primary);
}

.location-pill:hover {
    background: rgba(91, 124, 250, 0.05);
    border-color: var(--color-primary);
    color: var(--color-text);
    transform: translateX(4px);
}

/* INNER PAGE */
.inner-hero {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--color-primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* PAGE LAYOUT */
.content-page {
    background: var(--color-bg);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

/* ARTICLE CONTENT */
.article-content {
    color: var(--color-text);
}

.article-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--color-text);
    line-height: 1.2;
}

.article-intro p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
}

.feature-box i {
    color: var(--color-secondary);
    font-size: 20px;
}

.article-section {
    margin: 40px 0;
}

.article-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
}

.article-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 16px;
    color: var(--color-text);
}

.article-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--color-text);
}

.article-section p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 18px;
}

.benefits-list strong {
    color: var(--color-text);
}

.numbered-list {
    padding-left: 24px;
    counter-reset: item;
}

.numbered-list li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    counter-increment: item;
    position: relative;
}

.numbered-list li::before {
    content: counter(item) ". ";
    font-weight: 700;
    color: var(--color-primary);
}

.numbered-list strong {
    color: var(--color-text);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.category-item {
    padding: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--color-text-secondary);
}

.category-item strong {
    color: var(--color-text);
}

/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.step-item {
    position: relative;
    padding: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
}

.step-num {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.step-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* FAQ SECTION */
.faq-section {
    padding: 40px 0;
}

.faq-item {
    padding: 24px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CONTACT HIGHLIGHT */
.contact-highlight {
    padding: 32px;
    background: rgba(91, 124, 250, 0.05);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.contact-highlight p {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-highlight i {
    color: var(--color-primary);
    font-size: 20px;
}

.contact-highlight a {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-highlight a:hover {
    text-decoration: underline;
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-md);
    margin-top: 32px;
    font-weight: 500;
}

.trust-text i {
    color: var(--color-secondary);
    font-size: 24px;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h4 i {
    color: var(--color-primary);
}

/* CONTACT CARD */
.contact-card {
    text-align: center;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.contact-title {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* SIDEBAR MENU */
.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.sidebar-menu a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.sidebar-menu i {
    width: 20px;
    text-align: center;
}

/* LOCATION CARDS - SIDEBAR */
.location-breadcrumb {
    padding: 12px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.location-breadcrumb strong {
    color: var(--color-text);
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: center;
    transition: var(--transition-base);
}

.location-card i {
    font-size: 20px;
    color: var(--color-primary);
}

.location-card:hover {
    background: rgba(91, 124, 250, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* CTA */
.cta-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* FOOTER */
.footer {
    background: var(--color-surface);
    padding: 60px 0 0;
    border-top: 1px solid var(--color-border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
}

.footer-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--color-text-secondary);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-secondary);
}

.contact-list i {
    color: var(--color-primary);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--color-border-light);
}

.footer-bottom p {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: 50%;
    font-size: 20px;
    color: var(--color-text-secondary);
}

.modal-close:hover {
    background: var(--color-border);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    font-size: 36px;
    color: white;
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 15px;
    color: var(--color-text-secondary);
}

.spatial-form .form-group {
    margin-bottom: 24px;
}

.spatial-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--color-text);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(91, 124, 250, 0.1);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 80px;
}

.w-full {
    width: 100%;
}

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-success);
    border-radius: 50%;
    font-size: 32px;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-xl); }
    50% { box-shadow: 0 8px 48px rgba(37, 211, 102, 0.4); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        border-bottom: 1px solid var(--color-border-light);
    }
    
    body.menu-open .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open .mobile-toggle span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }
    
    body.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    body.menu-open .mobile-toggle span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }
    
    .hero-title,
    .cta-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .main-content {
        padding: 32px 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .floating-wa {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 24px;
        right: 24px;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
}