:root {
    --primary: #00f2ff;
    --secondary: #0066cc;
    --dark-bg: #0a0e17;
    --card-bg: #151b2b;
    --text-main: #e0e6ed;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    background: linear-gradient(rgba(10, 14, 23, 0.95), rgba(10, 14, 23, 0.8)), url('../assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

/* ... existing styles ... */

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ... existing styles ... */

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ... existing styles ... */

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #22bf5b;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-circle {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.2), transparent 70%);
    border-radius: 50%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-circle::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Services */
.services {
    padding: 100px 0;
    background: #0d121c;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brands span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Coverage */
.coverage {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.9)), url('../assets/images/coverage-bg.webp');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.coverage-content {
    max-width: 800px;
    margin: 0 auto;
}

.coverage h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.coverage p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.locations-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.locations-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.locations-list i {
    color: #25D366;
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 900px;
}

.contact-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.contact-item a {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

.footer-links {
    margin-top: 10px;
}

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

.footer-link:hover {
    color: var(--primary);
}

/* ... existing styles ... */

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: linear-gradient(rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.8)), url('../assets/images/page-header-bg.webp');
    background-size: cover;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Updated Service Cards with Images */
.service-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    background: var(--card-bg);
    position: relative;
    z-index: 2;
}

/* Ad Containers */
.ad-container {
    padding: 30px 0;
    display: flex;
    justify-content: center;
}

.ad-banner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    max-width: 728px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ad-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    align-self: flex-start;
}

.ad-placeholder {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Blog Section (Teaser) */
.blog-section {
    padding: 100px 0;
    background: inherit;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover i {
    transform: translateX(5px);
    transition: transform 0.3s;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.blog-image {
    height: 200px;
    background: #000;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #151b2b, #1f293a);
    position: relative;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 a,
.blog-content h2 a {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: block;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Blog Page Layout */
.main-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 20px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 242, 255, 0.1);
    padding-bottom: 10px;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-muted);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.category-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.blog-card.horizontal {
    display: flex;
    margin-bottom: 30px;
    height: 220px;
}

.blog-card.horizontal .blog-image {
    width: 250px;
    height: 100%;
    flex-shrink: 0;
}

.ad-placeholder-square {
    width: 300px;
    height: 250px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.ad-placeholder-tall {
    width: 300px;
    height: 600px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* Single Post */
.single-post .post-image {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

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

.post-body {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.post-body h2 {
    color: #fff;
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body blockquote {
    background: rgba(0, 242, 255, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #fff;
}

.lead {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 40px;
}

.post-cta {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid var(--primary);
}

.post-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.post-cta .btn {
    margin-top: 20px;
}

/* Footer Ads */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.ad-placeholder-small {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .main-content-grid {
        grid-template-columns: 1fr;
    }

    .blog-card.horizontal {
        flex-direction: column;
        height: auto;
    }

    .blog-card.horizontal .blog-image {
        width: 100%;
        height: 200px;
    }

    .ad-banner {
        width: 100%;
    }

    .service-card {
        padding: 0;
    }
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #ff4d4d, #ff0000);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.urgency-bar a {
    color: white;
    text-decoration: underline;
}

/* Adjust Navbar for Urgency Bar */
.navbar {
    top: 0;
    padding-top: 0;
    flex-direction: column;
}

.navbar .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    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-color: #128c7e;
}

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

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .urgency-bar {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .hero {
        margin-top: 40px;
        /* Offset for urgency bar */
    }
}

/* --- Refactored Sections --- */

/* Privacy Page */
.privacy-container {
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--card-bg);
    padding: 60px 0;
}

.testimonial-card-align {
    text-align: left;
}

.testimonial-quote-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: bold;
}

/* About/Team Section */
.about-section {
    padding: 60px 0;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 30px;
}

.team-photo-placeholder {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 2px dashed var(--text-muted);
}

.team-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.team-placeholder-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Regional Landing Pages */
.hero-moema {
    background-image: linear-gradient(rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.8)), url('../assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-jardins {
    background-image: linear-gradient(rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.7)), url('../assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.region-priority-text {
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Footer Locations */
.footer-locations {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-locations-title {
    color: var(--primary);
    font-weight: 600;
    margin-right: 8px;
}

/* Blog Post Inline Style Replacements */
.post-icon-primary {
    color: var(--primary);
}

.affiliate-box {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin: 30px 0;
}

.affiliate-box h3 {
    color: var(--primary);
}

.btn-amazon {
    background: #FF9900;
    color: white;
    border: none;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-amazon:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.error-icon-red {
    color: red;
}

.nav-highlight {
    color: var(--primary);
}