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

/* Global link reset for navbar-specific links */
.navbar a {
    color: inherit;
    text-decoration: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

.navbar {
    background-color: #000000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: auto;
    min-height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    margin-right: 10px;
}

.quartier-consult {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quartier-consult span {
    display: block;
    line-height: 1;
}

.quartier-consult:hover {
    color: #fff;
}

.nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    position: relative;
    left: 0;
    min-height: 40px;
}

.nav-links .dropdown {
    margin: 0 15px;
    position: relative;
}

.dropbtn {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 16px;
    transition: color 0.3s;
    display: inline-block;
}

.dropbtn:hover {
    color: #00aaff;
}

.nav-right {
    display: flex;
    align-items: center;
}

.language-dropdown {
    position: relative;
    margin-left: 15px;
}

.language-btn {
    color: #fff;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    letter-spacing: 0.08em;
}

.language-btn:hover {
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.language-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background-color: #111;
    min-width: 70px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 6px 0;
    z-index: 2000;
    border: 1px solid #333;
}

.language-content .language-option {
    color: #fff;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
    letter-spacing: 0.08em;
}

.language-content .language-option:hover {
    background-color: #0066ff;
}

.language-dropdown:hover .language-content {
    display: block;
}

.bookmark {
    color: #fff;
    padding: 8px 15px;
    font-size: 20px;
    transition: color 0.3s;
}

.bookmark:hover {
    color: #00aaff;
}

.hamburger {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

/* Debugging class for hidden elements */
.debug-hidden {
    border: 2px solid red;
}

/* Desktop default: show desktop-nav, hide mobile elements */
nav.navbar .nav-center .nav-links .desktop-nav {
    display: block;
}
nav.navbar .nav-center .nav-links .mobile-dropdown {
    display: none;
}

/* Hero, Services, About, Contact, Footer styles remain unchanged */
.hero {
    height: auto;
    min-height: 400px;
    background: url('/images/officespace.jpg') no-repeat center center/cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 60px;
    text-align: center;
    color: #fff;
    position: relative;
    width: 100vw;
    overflow: hidden;
    padding: 20px;
}

.hero-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 100%;
}

.hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #00aaff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn:hover {
    background-color: #0088cc;
}

.services {
    padding: 40px 10px;
    text-align: center;
    background-color: #f9f9f9;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600;
}

.service-content {
    padding: 0;
}

.service-item {
    max-width: 100%;
    margin: 0 10px 20px;
    text-align: left;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 600;
}

.service-item h4 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin: 15px 0 8px;
}

.service-item p {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}

.service-list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}

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

.sub-list {
    list-style-type: circle;
    padding-left: 25px;
    margin: 8px 0;
}

.sub-list li {
    margin-bottom: 6px;
}

.phase-title, .sub-phase-title {
    font-weight: 600;
    display: inline;
}

.phase-description {
    margin: 8px 0 12px 0;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.service-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

.icon-item {
    cursor: pointer;
    padding: 15px;
    border: 2px solid #000000;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    flex: 1 1 120px;
    max-width: 150px;
    text-align: center;
}

.icon-item:hover {
    transform: scale(1.05);
    background-color: #000000;
}

.icon-item:hover i,
.icon-item:hover p {
    color: #fff;
}

.icon-item i {
    font-size: 32px;
    margin-bottom: 8px;
    color: #000000;
}

.icon-item p {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}

.about {
    padding: 40px 15px;
    text-align: center;
    background-color: #fff;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600;
}

.about p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 10px 20px;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00aaff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.learn-more-btn:hover {
    background-color: #0088cc;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.client-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.client-logos img:hover {
    filter: grayscale(0);
}

.about-full {
    padding: 40px 15px;
    text-align: center;
    background-color: #fff;
}

.about-full h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600;
}

.about-full p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 10px 20px;
    color: #333;
    font-weight: 500;
}

.carousel {
    max-width: 100%;
    margin: 0 auto;
}

.carousel-item .client-logos {
    justify-content: center;
    gap: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000000;
    border-radius: 50%;
}

.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 700;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
}

.contact-form {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-form h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: #000000;
    font-weight: 700;
}

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

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 13px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0066ff;
    outline: none;
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.contact-form button {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 14px 20px;
    background-color: #0066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: #0052cc;
}

#form-message {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 8px;
}
#form-message[style*="color: green"] {
    background-color: #e6ffed;
    border: 1px solid #28a745;
}
#form-message[style*="color: red"] {
    background-color: #ffe6e6;
    border: 1px solid #dc3545;
}

.company-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company-info h3 {
    font-size: 20px;
    margin: 0 0 12px 0;
    color: #000000;
    font-weight: 700;
}

.company-info p {
    font-size: 15px;
    margin: 0;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
}

.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 220px;
    display: block;
    border: none;
}

/* ── CONTACT MOBILE ── */
@media (max-width: 768px) {
    .contact {
        padding: 48px 20px;
    }
    .contact h2 {
        font-size: 26px;
        margin-bottom: 28px;
    }
    .contact-container {
        flex-direction: column;
        gap: 36px;
    }
    .contact-form,
    .company-info {
        width: 100%;
        max-width: 100%;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* prevents iOS zoom */
        padding: 14px 16px;
    }
    .contact-form button {
        font-size: 16px;
        padding: 15px;
    }
    .map-container iframe {
        height: 200px;
    }
}

footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
    min-height: 40px;
}

footer a {
    color: #00aaff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

footer a:hover {
    color: #0088cc;
}

.phobos-logo-link {
  display: flex; /* Use flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically if needed */
  margin: 20px auto 0; /* Keep vertical margin, auto for horizontal centering */
  padding: 12px 20px; /* Match hero-btn padding */
  background-color: #00aaff; /* Match hero-btn background */
  border-radius: 5px; /* Match hero-btn rectangular shape */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Match hero-btn shadow */
  transition: background-color 0.3s ease; /* Match hero-btn transition */
  text-decoration: none; /* Ensure no underline */
  width: fit-content; /* Prevent stretching, keep natural width */
  max-width: 100%; /* Ensure it doesn’t overflow parent */
}
.phobos-logo-link:hover {
  background-color: #0088cc; /* Match hero-btn hover background */
}
.phobos-logo {
  width: 200px; /* Adjust size as needed */
  height: auto;
  border-radius: 0; /* Ensure rectangular image */
  vertical-align: middle; /* Fallback alignment */
}

/* Media queries for responsiveness */
@media (max-width: 1200px) {
    .service-icons {
        gap: 15px;
    }
    .icon-item {
        flex: 1 1 120px;
        max-width: 150px;
        padding: 15px;
    }
    .icon-item i {
        font-size: 32px;
    }
    .icon-item p {
        font-size: 14px;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #1a1a1a;
        min-width: 180px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border-radius: 4px;
        padding: 5px 0;
        z-index: 1000;
    }
    .dropdown-content a {
        color: #fff;
        padding: 12px 20px;
        text-decoration: none;
        display: block;
        font-size: 14px;
        font-weight: 500;
    }
    .dropdown-content a:hover {
        background-color: #2a2a2a;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Desktop view: Show desktop nav, hide mobile dropdown */
@media (min-width: 769px) {
    .navbar .hamburger {
        display: none;
    }
    .nav-center .nav-links .desktop-nav {
        display: block;
    }
    .nav-center .nav-links {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    .nav-center .nav-links li {
        list-style: none;
        display: inline-block;
    }
    .nav-center .nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: color 0.3s;
        padding: 10px 15px;
    }
    .nav-center .nav-links a:not(.mobile-dropdown-content a):hover {
        color: #007bff;
    }
    .nav-center .dropdown {
        position: relative;
    }
    .nav-center .dropdown-content {
        display: none;
        position: absolute;
        background-color: #1a1a1a;
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        border-radius: 4px;
        top: 100%;
        left: 0;
    }
    .nav-center .dropdown:hover .dropdown-content {
        display: block;
    }
    .nav-center .dropdown-content a {
        color: #fff;
        padding: 12px 16px;
        display: block;
        text-align: left;
        font-size: 14px;
        font-weight: 500;
    }
    .nav-center .dropdown-content a:hover {
        background-color: #2a2a2a;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    /* ── NAVBAR BASE ── */
    .navbar {
        flex-wrap: wrap;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 10px 15px;
        background: #000;
    }
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #fff;
        font-size: 22px;
        padding: 6px 10px;
        margin-left: auto;
        z-index: 1010;
    }

    /* Hide desktop nav, show hamburger */
    .navbar .nav-center { display: none; }
    .navbar .nav-right  { display: none; }

    /* ── OPEN STATE ── */
    .navbar .nav-center.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        order: 3;
        background: #000;
        padding: 0;
        position: static;
        box-shadow: none;
    }

    /* When nav is open, always show mobile menu list */
    .navbar .nav-center.active .mobile-dropdown {
        display: block !important;
    }
    .navbar .nav-center.active .mobile-dropdown-content {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .navbar .nav-center.active .mobile-dropdown-content > li {
        display: block !important;
        width: 100%;
    }
    .navbar .nav-center.active .mobile-dropdown-content > li > a,
    .navbar .nav-center.active .mobile-dropdown-content > li.dropdown > a.dropbtn {
        display: block !important;
        color: #fff;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        border-bottom: 1px solid #1a1a1a;
        width: 100%;
        box-sizing: border-box;
    }

    /* nav-right inside open menu */
    .navbar .nav-right.active {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        order: 4;
        background: #111;
        padding: 12px 0;
        border-top: 1px solid #222;
        position: static;
        gap: 16px;
    }

    /* ── MOBILE DROPDOWN CONTENT ── */
    .navbar .nav-center .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .navbar .nav-center .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0;
        list-style: none;
    }
    .navbar .nav-center .nav-links .desktop-nav {
        display: none !important;
    }
    .navbar .nav-center .nav-links .mobile-dropdown {
        display: block;
    }
    .navbar .nav-center .nav-links .mobile-dropdown .dropbtn {
        display: none;
    }

    /* Mobile menu items */
    .mobile-dropdown-content {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .mobile-dropdown-content.show {
        display: flex;
    }
    .mobile-dropdown-content > li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #1a1a1a;
    }
    .mobile-dropdown-content > li > a,
    .mobile-dropdown-content > li > a.dropbtn {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 600;
        transition: background 0.2s;
    }
    .mobile-dropdown-content > li > a:hover {
        background: #1a1a1a;
        color: #0066ff;
    }

    /* Services sub-dropdown in mobile */
    .mobile-dropdown-content .dropdown {
        width: 100%;
    }
    .mobile-dropdown-content .dropdown .dropbtn {
        display: block;
        color: #fff;
        text-decoration: none;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        text-align: center;
        background: none;
        border: none;
        cursor: pointer;
    }
    .mobile-dropdown-content .dropdown .dropbtn::after {
        content: " +";
        color: #0066ff;
    }
    .mobile-dropdown-content .dropdown .dropdown-content {
        display: none;
        position: static;
        background: #1a1a1a;
        width: 100%;
        box-shadow: none;
        padding: 0;
    }
    .mobile-dropdown-content .dropdown .dropdown-content.show {
        display: block;
    }
    .mobile-dropdown-content .dropdown .dropdown-content a {
        display: block;
        color: #ccc;
        padding: 10px 30px;
        font-size: 14px;
        text-align: center;
        text-decoration: none;
        border-bottom: 1px solid #222;
    }
    .mobile-dropdown-content .dropdown .dropdown-content a:hover {
        background: #222;
        color: #fff;
    }

    /* Language selector mobile */
    .navbar .nav-right .language-btn {
        font-size: 13px;
        padding: 6px 14px;
        color: #fff;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 6px;
    }
    .navbar .nav-right .language-content {
        position: absolute;
        bottom: auto;
        top: auto;
        right: 20px;
        background: #111;
        border: 1px solid #333;
        border-radius: 8px;
        z-index: 2000;
    }

    /* ── PAGE CONTENT ── */
    .hero { margin-top: 60px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 14px; }

    .roi-counter-grid {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .roi-stat { width: 100%; max-width: 320px; text-align: center; }
    .roi-stat:not(:last-child)::after { display: none; }
    .roi-number { font-size: 42px; }

    .service-icons {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    .icon-item { padding: 12px 6px !important; }
    .icon-item i { font-size: 20px !important; }
    .icon-item p { font-size: 10px !important; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .whatsapp-float { bottom: 16px; right: 16px; }
    .whatsapp-bubble { width: 50px; height: 50px; font-size: 22px; }
    .whatsapp-tooltip { display: none; }
}}

/* Additional media query for very small screens */
@media (max-width: 480px) {
    .nav-logo {
        height: 30px;
    }
    .quartier-consult {
        font-size: 16px;
    }
    .navbar .hamburger {
        font-size: 20px;
    }
    .hero {
        min-height: 250px;
    }
    .hero-content h1 {
        font-size: 20px;
    }
    .hero-content p {
        font-size: 12px;
    }
    .hero-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    .services h2 {
        font-size: 20px;
    }
    .service-item h3 {
        font-size: 18px;
    }
    .service-item h4 {
        font-size: 14px;
    }
    .service-item p {
        font-size: 12px;
    }
    .about h2, .about-full h2 {
        font-size: 20px;
    }
    .about p, .about-full p {
        font-size: 12px;
    }

}

/* ═══════════════════════════════════════════
   ROI / IMPACT COUNTER SECTION
═══════════════════════════════════════════ */
.roi-counter {
    background: #000;
    padding: 60px 20px;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}
.roi-counter-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.roi-stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px 30px;
    position: relative;
}
.roi-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: #222;
}
.roi-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: block;
}
.roi-number .prefix, .roi-number .suffix {
    font-size: 28px;
    font-weight: 700;
    color: #0066ff;
}
.roi-label {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.roi-stat.animated .roi-number {
    animation: countUp 0.6s ease forwards;
}
@media (max-width: 600px) {
    .roi-stat:not(:last-child)::after { display: none; }
    .roi-number { font-size: 36px; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════ */
.testimonials {
    background: #f7f8fa;
    padding: 80px 20px;
}
.testimonials h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    border-left: 4px solid #0066ff;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 72px;
    color: #0066ff;
    opacity: 0.15;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #0066ff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 16px;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700; font-size: 14px; color: #000;
}
.testimonial-role {
    font-size: 12px; color: #888;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON (improved)
═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-bubble {
    background: #25D366;
    color: #fff;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.whatsapp-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-pulse {
    position: absolute;
    top: -4px; right: -4px;
    width: 16px; height: 16px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
@media (max-width: 480px) {
    .whatsapp-float { bottom: 18px; right: 18px; }
    .whatsapp-bubble { width: 50px; height: 50px; font-size: 22px; }
}

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-hero {
    background: #000;
    color: #fff;
    padding: 120px 20px 60px;
    text-align: center;
}
.blog-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.blog-hero p { font-size: 17px; color: #aaa; max-width: 560px; margin: 0 auto; }

.blog-grid-section { padding: 60px 20px; background: #f7f8fa; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.blog-card-badge {
    background: #000; color: #fff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px;
    display: inline-block;
    margin: 20px 20px 0;
    border-radius: 4px;
    width: fit-content;
}
.blog-card-badge.ai { background: #0066ff; }
.blog-card-badge.gov { background: #1a7a4a; }
.blog-card-badge.strategy { background: #7c3aed; }
.blog-card-body { padding: 16px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: #000; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: #555; line-height: 1.65; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 12px; color: #999; }
.blog-card-meta i { color: #0066ff; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 700; color: #0066ff; text-decoration: none; }
.blog-read-more:hover { gap: 10px; }

/* Blog article page */
.blog-article { max-width: 760px; margin: 0 auto; padding: 100px 20px 80px; }
.blog-article-header { margin-bottom: 40px; }
.blog-article-badge { display: inline-block; background: #0066ff; color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.blog-article-title { font-size: 36px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; color: #000; }
.blog-article-meta { font-size: 13px; color: #888; display: flex; gap: 20px; flex-wrap: wrap; }
.blog-article-body { font-size: 16px; line-height: 1.8; color: #222; }
.blog-article-body h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; color: #000; }
.blog-article-body h3 { font-size: 19px; font-weight: 700; margin: 28px 0 12px; color: #000; }
.blog-article-body p { margin-bottom: 18px; }
.blog-article-body ul, .blog-article-body ol { margin: 12px 0 18px 24px; }
.blog-article-body li { margin-bottom: 8px; }
.blog-article-body blockquote { border-left: 4px solid #0066ff; padding: 12px 20px; background: #f0f5ff; margin: 24px 0; border-radius: 0 8px 8px 0; font-style: italic; color: #333; }
.blog-cta-box { background: #000; color: #fff; border-radius: 12px; padding: 36px 32px; margin-top: 48px; text-align: center; }
.blog-cta-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.blog-cta-box p { color: #aaa; margin-bottom: 20px; font-size: 15px; }
.blog-cta-box a { background: #0066ff; color: #fff; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 14px; }

/* ═══════════════════════════════════════════
   AI AUTOMATION LANDING PAGE
═══════════════════════════════════════════ */
.ai-lp-hero {
    background: linear-gradient(135deg, #000 0%, #001133 100%);
    color: #fff;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ai-lp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(0,102,255,0.18) 0%, transparent 70%);
}
.ai-lp-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.ai-lp-badge { display: inline-block; background: rgba(0,102,255,0.2); border: 1px solid rgba(0,102,255,0.4); color: #6699ff; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
.ai-lp-hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.ai-lp-hero h1 span { color: #0066ff; }
.ai-lp-hero p { font-size: 18px; color: #aaa; line-height: 1.7; margin-bottom: 36px; }
.ai-lp-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ai-lp-btn-primary { background: #0066ff; color: #fff; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 15px; transition: background 0.2s; }
.ai-lp-btn-primary:hover { background: #0052cc; }
.ai-lp-btn-secondary { background: transparent; color: #fff; border: 1px solid #333; padding: 14px 32px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px; transition: border-color 0.2s; }
.ai-lp-btn-secondary:hover { border-color: #0066ff; }

.ai-lp-problems { background: #f7f8fa; padding: 80px 20px; }
.ai-lp-problems h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.ai-lp-problems .section-sub { text-align: center; color: #666; font-size: 16px; max-width: 560px; margin: 0 auto 48px; }
.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 960px; margin: 0 auto; }
.problem-card { background: #fff; border-radius: 10px; padding: 24px; border-left: 3px solid #ef4444; }
.problem-card i { color: #ef4444; font-size: 20px; margin-bottom: 10px; }
.problem-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.problem-card p { font-size: 13px; color: #666; line-height: 1.6; }

.ai-lp-solutions { background: #000; color: #fff; padding: 80px 20px; }
.ai-lp-solutions h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 48px; }
.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.solution-card { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 12px; padding: 28px; transition: border-color 0.2s; }
.solution-card:hover { border-color: #0066ff; }
.solution-icon { width: 48px; height: 48px; background: rgba(0,102,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #0066ff; font-size: 20px; }
.solution-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.solution-card p { font-size: 13px; color: #888; line-height: 1.65; }

.ai-lp-process { padding: 80px 20px; background: #fff; }
.ai-lp-process h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 48px; }
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
.process-step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid #f0f0f0; align-items: flex-start; }
.process-step:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; background: #0066ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: #555; line-height: 1.6; }

.ai-lp-cta { background: #0066ff; color: #fff; padding: 80px 20px; text-align: center; }
.ai-lp-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 14px; }
.ai-lp-cta p { font-size: 17px; opacity: 0.85; margin-bottom: 32px; }
.ai-lp-cta a { background: #fff; color: #0066ff; padding: 14px 36px; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 15px; }

@media (max-width: 768px) {
    .ai-lp-hero h1 { font-size: 32px; }
    .ai-lp-hero p { font-size: 15px; }
}

/* ═══════════════════════════════════════════
   MOBILE & TABLET IMPROVEMENTS
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .stats-row, .sr { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* NAV */
    .nav-center { display: none; }
    .hamburger { display: flex; align-items: center; justify-content: center; }
    .mobile-dropdown { display: block; }
    .desktop-nav { display: none !important; }

    /* ROI counter */
    .roi-counter-grid { flex-direction: column; align-items: center; }
    .roi-stat { width: 100%; max-width: 300px; }
    .roi-stat:not(:last-child)::after { display: none; }
    .roi-number { font-size: 40px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }

    /* AI landing */
    .ai-lp-hero h1 { font-size: 28px; }
    .ai-lp-hero p { font-size: 15px; }
    .ai-lp-btns { flex-direction: column; align-items: center; }
    .problems-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }

    /* Services */
    .service-icons { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
    .icon-item { padding: 12px 8px !important; }
    .icon-item i { font-size: 22px !important; }
    .icon-item p { font-size: 11px !important; }

    /* WhatsApp */
    .whatsapp-float { bottom: 16px; right: 16px; }
    .whatsapp-bubble { width: 50px; height: 50px; font-size: 22px; }
    .whatsapp-tooltip { display: none; }

    /* Contact */
}

@media (max-width: 480px) {
    .service-icons { grid-template-columns: repeat(3, 1fr) !important; }
    .roi-number { font-size: 32px; }
    .roi-number .prefix, .roi-number .suffix { font-size: 20px; }
    .hero h1 { font-size: 26px !important; }
}