/* ============================================
   נעם הלשטוק - סוכנת ביטוח
   Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-color: #1E2A4A;
    --secondary-color: #E5D7B5;
    --background-color: #FFFFFF;
    --text-color: #1E2A4A;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --error-color: #EF4444;
    --warning-color: #F59E0B;
    
    --font-main: 'Heebo', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* ---------- Section Styles ---------- */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 500;
    color: var(--text-color);
    border-radius: var(--radius-md);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.nav-menu > li > a i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 280px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9375rem;
    color: var(--text-color);
    border-radius: var(--radius-md);
}

.dropdown li a:hover {
    background: var(--secondary-color);
}

.dropdown li a i {
    margin-right: 4px;
    font-size: 0.75rem;
    opacity: 0.5;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.nav-cta {
    background: var(--primary-color) !important;
    color: white !important;
}

.nav-cta:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(229, 215, 181, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 42, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--primary-color);
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-md);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   LEAD FORM SECTION
   ============================================ */
.lead-form-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.lead-form-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 40px;
}

.lead-form-content {
    margin-bottom: 24px;
}

.lead-form-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto;
    gap: 16px;
    align-items: center;
}

.lead-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.lead-form .form-consent {
    margin-top: 0;
    grid-column: auto;
}

.lead-form .consent-label {
    font-size: 0.75rem;
    max-width: 350px;
}

.lead-form .consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: white;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    text-align: right;
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 32px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link i {
    transform: translateX(-4px);
}

/* ============================================
   MY SERVICES SECTION
   ============================================ */
.my-services-section {
    background: white;
}

.my-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.my-service-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.my-service-card:hover {
    border-color: var(--secondary-color);
    background: white;
    box-shadow: var(--shadow-md);
}

.my-service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.my-service-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.my-service-content p {
    font-size: 0.9375rem;
    margin: 0;
}

.my-service-arrow {
    margin-right: auto;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.my-service-card:hover .my-service-arrow {
    opacity: 1;
    transform: translateX(-8px);
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section {
    background: var(--primary-color);
    color: white;
}

.advantages-section .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.advantages-section .section-title {
    color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.advantage-card {
    text-align: center;
    padding: 32px 24px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.advantage-card h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.advantage-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

/* ============================================
   ARTICLES SECTION
   ============================================ */
.articles-section {
    background: #f8f9fa;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 200px;
    background: var(--secondary-color);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 24px;
}

.article-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-content p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
}

.google-reviews-link {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   TOOLS SECTION
   ============================================ */
.tools-section {
    background: #f8f9fa;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.tool-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.tool-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.tool-external {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0;
    transition: var(--transition);
}

.tool-card:hover .tool-external {
    opacity: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-question i {
    font-size: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3a5a 100%);
    padding: 80px 0;
}

.cta-card {
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-form .form-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-form input {
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    min-width: 200px;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 215, 181, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer-contact i {
    width: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d3a5a 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* ============================================
   SERVICE CONTENT PAGE
   ============================================ */
.service-content-section {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.service-main {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.service-text {
    line-height: 1.9;
    margin-bottom: 32px;
}

.service-text h3 {
    margin: 24px 0 16px;
}

.service-text ul {
    margin: 16px 0;
    padding-right: 20px;
}

.service-text li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 24px;
}

.service-text li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-features {
    background: #f8f9fa;
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.service-features h3 {
    margin-bottom: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.service-cta-text {
    background: var(--secondary-color);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.service-cta-text p {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    margin-bottom: 8px;
}

.sidebar-card > p {
    margin-bottom: 20px;
}

.sidebar-form .form-group {
    margin-bottom: 16px;
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quick-contact h3 {
    margin-bottom: 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: var(--transition);
}

.quick-contact-item:hover {
    background: var(--secondary-color);
}

.quick-contact-item.whatsapp {
    background: #25D366;
    color: white;
}

.quick-contact-item.whatsapp:hover {
    background: #128C7E;
}

.quick-contact-item i {
    font-size: 1.25rem;
}

/* Related Services */
.related-services-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.related-services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.related-service-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.related-service-card span {
    font-weight: 600;
}

/* ============================================
   TOOLS PAGE
   ============================================ */
.tools-page-section {
    padding: 60px 0;
}

.tools-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tool-page-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tool-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tool-page-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--secondary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-page-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.tool-page-content h3 {
    margin-bottom: 8px;
}

.tool-page-content p {
    font-size: 0.9375rem;
    margin: 0;
}

.tool-page-link {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.tools-help-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    background: var(--primary-color);
    border-radius: var(--radius-xl);
    color: white;
}

.tools-help-icon {
    font-size: 4rem;
    color: var(--secondary-color);
}

.tools-help-content h3 {
    color: white;
    margin-bottom: 12px;
}

.tools-help-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.contact-form label .required {
    color: var(--error-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    margin-bottom: 8px;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: var(--secondary-color);
}

.contact-info-item.whatsapp {
    background: #25D366;
    color: white;
}

.contact-info-item.whatsapp:hover {
    background: #128C7E;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-info-item.whatsapp .contact-info-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.contact-info-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
}

.contact-info-item.whatsapp .contact-info-label {
    color: rgba(255,255,255,0.8);
}

.contact-info-value {
    font-weight: 600;
}

.contact-hours-card {
    background: var(--primary-color);
    padding: 32px;
    border-radius: var(--radius-lg);
    color: white;
}

.contact-hours-card h3 {
    color: white;
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.alert i {
    font-size: 1.25rem;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
}

.alert-error ul {
    margin: 0;
    padding-right: 16px;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--error-color);
    color: white;
}

.modal-content h2 {
    margin-bottom: 24px;
}

.modal-body h3 {
    margin: 20px 0 12px;
    font-size: 1.125rem;
}

.modal-body p {
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .lead-form-card {
        text-align: center;
    }
    
    .lead-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lead-form .form-consent {
        grid-column: 1 / -1;
        text-align: right;
    }
    
    .lead-form .consent-label {
        max-width: 100%;
        justify-content: flex-start;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: 0;
    }
    
    .about-image img {
        margin: 0 auto;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Header */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        overflow-y: auto;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li > a {
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.active .dropdown {
        max-height: 1000px;
        padding: 12px;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    /* Lead Form */
    .lead-form-section {
        margin-top: -40px;
    }
    
    .lead-form-card {
        padding: 28px;
    }
    
    .lead-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .lead-form .consent-label {
        max-width: 100%;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .my-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Advantages */
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Articles */
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tools */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-page-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-page-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tool-page-link {
        margin-right: 0;
    }
    
    .tools-help-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* CTA */
    .cta-form .form-row {
        flex-direction: column;
    }
    
    .cta-form input {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Related Services */
    .related-services-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ============================================
   CONSENT CHECKBOX
   ============================================ */
.form-consent {
    margin-top: 16px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-light);
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.consent-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.consent-label a:hover {
    color: var(--secondary-color);
}

.form-consent-dark .consent-label {
    color: rgba(255,255,255,0.8);
}

.form-consent-dark .consent-label a {
    color: var(--secondary-color);
}

.form-consent-dark .consent-label a:hover {
    color: white;
}

.form-consent-small .consent-label {
    font-size: 0.75rem;
}

.lead-form-card .form-consent {
    grid-column: 1 / -1;
    margin-top: 8px;
}
