:root {
    --primary: #007BFF; /* Azure Accent */
    --primary-dark: #0056b3;
    --secondary: #000000;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #343a40;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --container-width: 1200px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.keyword-list li {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--gray-medium);
    background: var(--gray-light);
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-medium);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.4rem;
    min-height: 88px;
    position: relative;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    min-width: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.icon-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.6);
}

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

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--gray-medium);
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.nav-toggle:hover {
    border-color: var(--primary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--primary);
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at top right, #f0f7ff, #ffffff);
    overflow: hidden;
}

.hero.hero--page {
    padding: 160px 0 80px;
    background: var(--gray-light);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
} 

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

.hero-image img {
    aspect-ratio: auto !important;
    object-fit: contain !important;
    max-height: 720px;
    width: auto !important;
    height: auto !important;
    box-shadow: var(--shadow);
    border-radius: 14px;
}

.hero-brand-card {
    width: 100%;
    max-width: 560px;
    padding: 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f1012, #2a2d31);
    box-shadow: var(--shadow);
}

.hero-brand-card--plain {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.hero-brand-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.secondary-button {
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
    font-weight: 700;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.secondary-button:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Services Section */
.section {
    padding: 100px 0;
}

.section.section--alt {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    padding: 3rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
}

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

.insight-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 123, 255, 0.45);
    box-shadow: var(--shadow);
}

.insight-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.insight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
}

.insight-content h3 {
    font-size: 1.2rem;
}

.article-layout {
    max-width: 920px;
    display: grid;
    gap: 1.75rem;
}

.article-reading {
    max-width: 860px;
    margin: 0 auto;
}

.article-cover {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
    box-shadow: var(--shadow);
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.article-layout h2 {
    font-size: 1.85rem;
    margin-bottom: 0.7rem;
    line-height: 1.25;
}

.article-layout h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.article-layout p {
    font-size: 1.06rem;
    line-height: 1.8;
    color: #2b2f33;
}

.article-list {
    display: grid;
    gap: 0.75rem;
    margin-left: 1.15rem;
    list-style: disc;
}

.article-list li {
    line-height: 1.75;
}

.article-section {
    background: #fff;
    border: 1px solid var(--gray-medium);
    border-radius: 12px;
    padding: 1.5rem 1.6rem;
}

.article-highlight {
    background: linear-gradient(135deg, #f4f9ff, #ffffff);
    border: 1px solid rgba(0, 123, 255, 0.22);
    border-radius: 12px;
    padding: 1.25rem 1.35rem;
    line-height: 1.8;
}

.article-divider {
    height: 1px;
    border: 0;
    background: var(--gray-medium);
    margin: 0.4rem 0 0.25rem;
}

.service-thumb {
    width: 86px;
    height: 86px;
    margin-bottom: 1.25rem;
}

.partner-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.partner-card-logo img {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

.partner-hero-logo {
    height: 72px;
    width: auto;
    max-width: min(260px, 100%);
    object-fit: contain;
    display: block;
    margin: 1.25rem auto 0;
}

.partner-media {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.partner-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logos Section */
.logos-section {
    background: var(--gray-light);
    padding: 60px 0;
}

.logos-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    width: 100%;
    max-width: 340px;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 123, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.logo-item img {
    width: 100%;
    max-width: 260px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.logo-link:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.45);
    outline-offset: 4px;
    border-radius: 12px;
}

.logo-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    border: 1px solid var(--gray-medium);
    border-radius: 12px;
    padding: 1.75rem;
    background: var(--white);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.cta-strip {
    background: var(--secondary);
    color: var(--white);
    padding: 70px 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-inner > div {
    min-width: 260px;
    flex: 1 1 360px;
}

.cta-strip-inner .cta-button,
.cta-strip-inner .secondary-button,
.hero-btns .cta-button,
.hero-btns .secondary-button {
    min-height: 48px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 720px;
}

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

.newsletter p {
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    min-width: 240px;
}

.map-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-medium);
}

.map-embed {
    width: 100%;
    height: 450px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-link {
    position: relative;
    display: block;
}

.map-link img {
    width: 100%;
    height: auto;
}

.map-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.78);
    color: var(--white);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transform: translateY(0);
    transition: var(--transition);
}

.map-link:hover .map-badge {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.86);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-medium);
    padding: 3rem;
}

.contact-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-medium);
}

.info-item {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.35rem;
    margin-top: 0.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    font-family: inherit;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-brand-card {
        max-width: 620px;
        margin: 0 auto;
        padding: 2.5rem 2rem;
    }
    .hero-brand-card--plain {
        padding: 0;
    }
    .hero-image img {
        max-height: 500px;
        width: 100% !important;
    }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-btns { justify-content: center; }
    .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; padding: 2rem; }
    .map-embed { height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .nav-wrapper {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .cta-button {
        padding: 0.72rem 1.05rem;
        font-size: 0.84rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-wrapper {
        min-height: 80px;
        gap: 0.85rem;
    }

    .logo {
        min-width: 0;
        flex-shrink: 0;
    }

    .logo img {
        width: clamp(150px, 20vw, 210px);
        height: auto;
        max-height: 36px;
        object-fit: contain;
    }


    .nav-links {
        gap: 0.8rem;
    }


    .nav-links a {
        font-size: 0.88rem;
    }

    .cta-button {
        padding: 0.68rem 0.95rem;
        font-size: 0.8rem;
    }
}


@media (max-width: 768px) {

    .hero {
        padding: 120px 0 60px;
    }
    .container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        min-height: 74px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .logo {
        display: inline-flex;
        align-items: center;
        min-width: 0;
    }

    .logo img {
        width: clamp(138px, 42vw, 190px);
        height: auto;
        max-height: 34px;
        object-fit: contain;
    }

    .nav-actions .cta-button {
        display: none;
    }

    .nav-toggle { display: inline-flex; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--gray-medium);
        max-height: 0;
        overflow: hidden;
        padding: 0 2rem;
        transition: max-height 0.35s ease, padding 0.35s ease;
        z-index: 1001;
		
    }

    header.nav-open .nav-links {
		max-height: 70vh;
        padding: 1rem 2rem 1.5rem;
        overflow: auto;
    }

    .nav-links li {
        
		padding: 0.85rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .cta-button {
        padding: 0.75rem 1.2rem;
    }

    .hero-btns .cta-button,
    .hero-btns .secondary-button,
    .cta-strip-inner .cta-button,
    .cta-strip-inner .secondary-button {
        width: 100%;
    }

    .form-grid { grid-template-columns: 1fr; }
    .map-embed { height: 320px; }

    .footer-grid { grid-template-columns: 1fr; }

    .logos-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .logo-item {
        min-height: 118px;
        padding: 0.95rem 1rem;
    }

    .logo-item img {
        height: 64px;
    }
}

@media (max-width: 420px) {
    .logo img {
        width: clamp(126px, 48vw, 168px);
        max-height: 30px;
    }
}

@media (max-width: 420px) {
    .logos-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.9rem;
    }

    .logo-item {
        min-height: 110px;
        padding: 0.9rem 0.9rem;
    }

    .logo-item img {
        height: 56px;
    }

    .logo-label {
        font-size: 0.9rem;
    }
}

/* WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

.call-float-desktop {
    position: fixed;
    right: 108px;
    bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white) !important;
    border: 2px solid var(--primary);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0, 91, 179, 0.35);
    z-index: 9998;
}

.call-float-desktop:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.call-float-desktop i {
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .call-float-desktop {
        display: none !important;
    }
}
