:root {
    --primary: #1dbf73;
    --primary-dark: #18a062;
    --primary-light: #22d481;
    --secondary: #121c27;
    --accent: #3b82f6;
    --success: #10b981;
    --warning: #ffc107;
    --danger: #ef4444;
    --surface: #f8fafc;
    --surface-hover: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --container-width: 1200px;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #6366f1 100%);
    --gradient-surface: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 3rem;
    font-size: 1.1rem;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) { width: 200px; height: 200px; top: 20%; left: 10%; animation-delay: 0s; }
.floating-shape:nth-child(2) { width: 150px; height: 150px; top: 60%; right: 15%; animation-delay: 2s; }
.floating-shape:nth-child(3) { width: 100px; height: 100px; bottom: 30%; left: 70%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); text-align: center; margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before { left: 100%; }
.btn-primary { background: var(--gradient-primary); color: var(--white); box-shadow: var(--shadow-lg); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-2xl); }
.btn-secondary { background: var(--white); color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-link { color: var(--primary); font-weight: 600; text-decoration: none; transition: color 0.3s; }
.btn-link:hover { color: var(--primary-dark); text-decoration: underline; }

.top-bar {
    background-color: #1e463f;
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact { display: flex; gap: 1.5rem; }
.top-bar-contact a { color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: opacity 0.3s; }
.top-bar-contact a:hover { opacity: 0.8; }
.top-bar-socials { display: flex; gap: 1rem; }
.top-bar-socials a { color: var(--white); text-decoration: none; font-weight: 600; transition: opacity 0.3s; }
.top-bar-socials a:hover { opacity: 0.8; }

.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.main-header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.navbar { display: flex; justify-content: space-between; align-items: center; min-height: 5rem; padding: 0.5rem 0; }
.navbar-logo img { max-height: 45px; transition: transform 0.3s ease; }
.navbar-logo img:hover { transform: scale(1.05); }
.navbar-links { list-style: none; display: flex; gap: 2rem; margin: 0; align-items: center; }
.navbar-links a { color: var(--text-primary); font-weight: 500; padding: 0.5rem 0; position: relative; text-decoration: none; transition: all 0.3s ease; }
.navbar-links a:hover { color: var(--primary); transform: translateY(-1px); }
.navbar-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: width 0.3s ease; }
.navbar-links a:hover::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-toggle::after { content: '▾'; display: inline-block; margin-left: 0.4rem; font-size: 0.8rem; transition: transform 0.3s ease; }
.dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: var(--white); box-shadow: var(--shadow-lg); border-radius: var(--radius-sm); padding: 0.5rem 0; list-style: none; min-width: 200px; z-index: 1001; border: 1px solid #e2e8f0; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 0.75rem 1.5rem; color: var(--text-primary); text-decoration: none; transition: background-color 0.3s, color 0.3s; white-space: nowrap; }
.dropdown-menu li a:hover { background-color: var(--surface-hover); color: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 20px; height: 3px; background: var(--text-primary); transition: 0.3s; border-radius: 2px; }

#hero {
    background: linear-gradient(135deg, rgba(18, 28, 39, 0.7), rgba(15, 23, 42, 0.65)), url('assets/images/banner_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2329de87' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; font-weight: 800; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.hero-content h1 strong { font-weight: 800; }
.hero-content h1 .highlight { background: linear-gradient(135deg, var(--warning), #ff6b35); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; }
.hero-content p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 3rem; opacity: 0.65; color: #e2e8f0; }
.hero-buttons { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat h3 { font-size: 2.5rem; color: var(--primary-light); margin-bottom: 0.5rem; }
.hero-stat p { color: #cbd5e1; margin: 0; }

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

#services { background: var(--gradient-surface); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.service-card { background: var(--white); padding: 3rem 2rem; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); border: 1px solid #e2e8f0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 4px; background: var(--gradient-primary); transition: left 0.4s ease; }
.service-card:hover::before { left: 0; }
.service-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-2xl); }
.service-card .icon { width: 90px; height: 90px; margin: 0 auto 2rem; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg); transition: all 0.4s ease; position: relative; }
.service-card:hover .icon { transform: scale(1.1) rotate(5deg); box-shadow: var(--shadow-2xl); }
.service-card .icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card h4 { margin-bottom: 1.5rem; color: var(--primary); font-size: 1.5rem; }
.service-card p { font-size: 1rem; line-height: 1.7; flex-grow: 1; }
.service-card .btn-link { margin-top: 1.5rem; }

#choose-us { background: var(--white); position: relative; }
.choose-us-content { display: flex; align-items: center; gap: 5rem; }
.choose-us-text { flex: 1; }
.choose-us-text h2 { text-align: left; margin-bottom: 2rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.choose-us-features { flex: 1.2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature-item { background: var(--gradient-surface); padding: 2.5rem 2rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.3s ease; border: 2px solid transparent; }
.feature-item:hover { transform: translateY(-8px); border-color: var(--primary); background: var(--white); box-shadow: var(--shadow-xl); }
.feature-item .icon { width: 70px; height: 70px; margin-bottom: 1.5rem; transition: transform 0.3s ease; }
.feature-item:hover .icon { transform: scale(1.1); }
.feature-item .icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-item h4 { color: var(--text-primary); margin-bottom: 1rem; }

#testimonials { background: var(--secondary); position: relative; }
#testimonials::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
#testimonials .container { position: relative; z-index: 1; }
#testimonials h2 { color: var(--white); margin-bottom: 4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.testimonial-card { background: rgba(255, 255, 255, 0.08); padding: 3rem; border-radius: var(--radius-lg); color: #cbd5e1; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); transition: all 0.4s ease; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 1rem; left: 2rem; font-size: 4rem; color: var(--primary); font-family: serif; opacity: 0.3; }
.testimonial-card:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-8px); border-color: rgba(29, 191, 115, 0.3); }
.testimonial-card { display: flex; flex-direction: column; }
.testimonial-card p { flex-grow: 1; }
.testimonial-card p { font-style: italic; margin-bottom: 2.5rem; color: #e2e8f0; line-height: 1.8; font-size: 1.05rem; }
.testimonial-author { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.testimonial-author img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(255, 255, 255, 0.2); }
.author-info strong { display: block; color: var(--white); font-size: 1.2rem; margin-bottom: 0.25rem; }
.author-info span { font-size: 0.95rem; color: var(--text-muted); }

#pricing { background: var(--gradient-surface); position: relative; }
.pricing-subtitle { text-align: center; margin-bottom: 4rem; font-size: 1.25rem; color: var(--text-primary); font-weight: 600; }
.pricing-card { max-width: 550px; margin: 0 auto; background: var(--white); border: 3px solid var(--primary); border-radius: var(--radius-lg); box-shadow: var(--shadow-2xl); overflow: hidden; position: relative; }
.pricing-card::before { content: 'MOST POPULAR'; position: absolute; top: 1.5rem; right: -2.5rem; background: var(--warning); color: var(--text-primary); padding: 0.5rem 3.5rem; font-size: 0.8rem; font-weight: 700; transform: rotate(45deg); z-index: 1; }
.pricing-header { text-align: center; border-bottom: 1px solid #e2e8f0; padding: 3rem 2rem; background: var(--gradient-primary); color: var(--white); }
.pricing-header .plan-name { font-size: 1.75rem; margin-bottom: 1rem; color: var(--white); }
.pricing-header .price { font-size: 4.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.pricing-header .price span { font-size: 1.5rem; font-weight: 400; opacity: 0.9; }
.pricing-features { list-style: none; padding: 3rem 2rem; }
.pricing-features li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; font-size: 1.05rem; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 800; font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.pricing-card .btn { width: calc(100% - 4rem); margin: 0 2rem 2rem; text-align: center; justify-content: center; padding: 1.25rem; font-size: 1.2rem; }

#team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.team-card { text-align: center; background: var(--white); padding: 3rem 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid #e2e8f0; transition: all 0.4s ease; position: relative; overflow: hidden; }
.team-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transition: transform 0.4s ease; }
.team-card:hover::before { transform: scaleX(1); }
.team-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-2xl); }
.team-card img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin-bottom: 2rem; border: 4px solid var(--primary); transition: all 0.4s ease; box-shadow: var(--shadow-lg); }
.team-card:hover img { transform: scale(1.05); border-color: var(--primary-light); box-shadow: var(--shadow-2xl); }
.team-card h4 { margin-bottom: 0.5rem; color: var(--text-primary); font-size: 1.5rem; }
.team-card .title { color: var(--primary); font-weight: 600; margin-bottom: 1.5rem; font-size: 1.05rem; }
.team-card p { font-size: 1rem; min-height: 80px; margin-bottom: 2rem; line-height: 1.6; }
.team-card .btn { background: #0077b5; color: var(--white); border: 2px solid #0077b5; }
.team-card .btn:hover { background: #005e90; border-color: #005e90; }

#blog, #blog-page { background: var(--gradient-surface); }
#blog-page { padding: 6rem 0; background: var(--white); }
.blog-page-subtitle { text-align: center; max-width: 600px; margin: -2rem auto 4rem; font-size: 1.1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid #e2e8f0; overflow: hidden; transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; }
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); transform: scaleX(0); transition: transform 0.4s ease; }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2xl); }
.blog-card-content { padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-content .tag { display: inline-block; padding: 0.5rem 1rem; background: var(--gradient-primary); color: var(--white); border-radius: 50px; font-size: 0.8rem; margin-bottom: 1.5rem; font-weight: 600; align-self: flex-start; }
.blog-card-content h4 { margin-bottom: 1rem; line-height: 1.4; font-size: 1.25rem; }
.blog-card-content h4 a { color: var(--text-primary); text-decoration: none; transition: color 0.3s ease; }
.blog-card-content h4 a:hover { color: var(--primary); }
.blog-card-content .blog-summary { margin-bottom: 1.5rem; flex-grow: 1; }
.blog-card-content .date { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; margin-top: auto; }
.blog-btn-container { text-align: center; margin-top: 4rem; }

#quote { background: var(--gradient-surface); padding: 6rem 0; }
.quote-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.quote-form { background: var(--white); padding: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid #e2e8f0; }
.quote-form h2 { text-align: left; margin-bottom: 2rem; color: var(--text-primary); font-size: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.form-control { width: 100%; padding: 0.875rem 1rem; border: 2px solid #d1d5db; border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; background: var(--white); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(29, 191, 115, 0.1); transform: translateY(-1px); }
.form-control:hover { border-color: var(--primary-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn { width: 100%; background: var(--gradient-primary); color: var(--white); padding: 1rem 2rem; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: var(--shadow-lg); }
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2xl); }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding: 1rem; background: var(--surface); border-radius: var(--radius-sm); transition: all 0.3s ease; }
.contact-item:hover { background: var(--primary); color: var(--white); transform: translateX(5px); }
.contact-item lord-icon { width: 24px; height: 24px; }
.contact-item a { color: inherit; text-decoration: none; font-weight: 500; }

.main-footer { background: var(--secondary); color: #cbd5e1; padding: 6rem 0 2rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--white); margin-bottom: 2rem; font-size: 1.5rem; }
.footer-col p, .footer-col ul { font-size: 1rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 1rem; }
.footer-col a { color: #94a3b8; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--primary); transform: translateX(5px); }
.footer-col .logo { max-width: 220px; margin-bottom: 2rem; filter: brightness(1.1); }
.footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: rgba(255, 255, 255, 0.1); color: var(--white); border-radius: 50%; transition: all 0.3s ease; font-weight: 700; font-size: 1.1rem; }
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px) scale(1.1); }

.whatsapp-float { position: fixed; width: 70px; height: 70px; bottom: 2rem; right: 2rem; background: #25d366; color: var(--white); border-radius: 50%; text-align: center; font-size: 2rem; box-shadow: var(--shadow-2xl); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); background: #20b954; text-decoration: none; color: var(--white); }
.whatsapp-tooltip { position: absolute; right: 80px; top: 50%; transform: translateY(-50%); background: var(--text-primary); color: var(--white); padding: 0.75rem 1rem; border-radius: var(--radius-sm); white-space: nowrap; font-size: 0.9rem; font-weight: 500; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.whatsapp-tooltip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--text-primary); }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: var(--gradient-primary); z-index: 1001; transition: width 0.3s ease; }

.page-header { padding: 8rem 0 4rem; background: var(--gradient-surface); text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-content { padding: 4rem 0; }
.page-content .container { max-width: 900px; }
.page-content h2 { text-align: left; margin-bottom: 1.5rem; font-size: 2rem; }
.page-content h3 { font-size: 1.5rem; margin-top: 2rem; }
.page-content ul, .page-content ol { margin-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.5rem; }

.service-page-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.service-item { background: var(--surface); padding: 2rem; border-radius: var(--radius-lg); border-left: 5px solid var(--primary); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; text-align: center; }
.contact-card { background: var(--surface); padding: 2rem; border-radius: var(--radius-lg); }
.contact-card .btn { margin-top: 1rem; }

.get-started-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; text-align: center; }
.get-started-card { background: var(--surface); padding: 3rem 2rem; border-radius: var(--radius-lg); }
.get-started-card h3 { font-size: 2rem; }
.get-started-card .btn { margin-top: 1.5rem; }

.blog-post-content { padding: 8rem 0 4rem; }
.blog-post-content .container { max-width: 800px; }
.blog-post-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.blog-post-content .post-meta { color: var(--text-muted); margin-bottom: 2rem; }
.blog-post-content hr { border: 0; height: 1px; background: #e2e8f0; margin-bottom: 2rem; }
.blog-post-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; }
.blog-post-content h2 { font-size: 1.75rem; margin: 2rem 0 1rem; text-align: left; }
.blog-post-content ul { list-style-type: disc; padding-left: 2rem; }
.blog-post-content li { margin-bottom: 0.75rem; }

@media (max-width: 992px) {
    .services-grid, .testimonials-grid, .team-grid, .blog-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .choose-us-content { flex-direction: column; gap: 3rem; }
    .choose-us-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-stats { gap: 2rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .top-bar { display: none; }
    
    .main-header { position: fixed; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); }
    .navbar-links { position: absolute; top: 100%; left: 0; width: 100%; flex-direction: column; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); padding: 2rem 1.5rem; box-shadow: var(--shadow-lg); border-top: 1px solid #e2e8f0; transform: translateY(-100vh); opacity: 0; transition: all 0.3s ease; }
    .navbar-links.active { transform: translateY(0); opacity: 1; }
    .hamburger { display: flex; }
    .dropdown { pointer-events: none; }
    .dropdown-toggle { pointer-events: auto; }
    .dropdown-menu { display: none !important; }
    
    #hero { padding: 6rem 0 4rem; background-attachment: scroll; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    
    section { padding: 4rem 0; }
    .services-grid, .testimonials-grid, .team-grid, .blog-grid, .footer-grid, .choose-us-features, .form-row, .quote-container { grid-template-columns: 1fr; }
    
    .whatsapp-float { width: 60px; height: 60px; font-size: 1.75rem; }
    .whatsapp-tooltip { display: none; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .page-header { padding: 6rem 0 3rem; }
    .page-header h1 { font-size: 2.5rem; }
    .page-content { padding: 3rem 0; }
}