@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --font-poppins: "Poppins", sans-serif;
    /* 🌟 Base Colors */
    --color-primary: #ffffff; /* Main background */
    --color-secondary: #e0f2fe; /* Section / card background */

    /* ✍️ Text Colors */
    --color-text-primary: #000000; /* Main text */
    --color-text-secondary: #475569; /* Paragraphs / labels / muted text */

    /* 💎 Accent Colors */
    --color-accent: #0f62fe; /* Buttons / links / icons */
    --color-accent-hover: #0043ce; /* Accent hover state */

    /* ⚙️ Utility Colors */
    --color-border: #cbd5e1; /* Card or section borders */
    --color-success: #10b981; /* Success or positive status */
    --color-error: #ef4444; /* Error or alert text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-poppins);
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    padding-top: 3rem;
}

.fade {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.fade.show {
    opacity: 1;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.heroBtn {
    position: relative;
    padding: 12px 35px;
    background: #4c83fa;
    font-size: 17px;
    font-weight: 1000;
    color: #ffffff;
    border: 3px solid #4c83fa;
    border-radius: 8px;
    box-shadow: 0 0 0 #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #4c83fa);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #4c83fa);
    z-index: -5;
    transition: all 1scubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #4c83fa);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #4c83fa);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #4c83fa);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #4c83fa);
    z-index: -5;
    transition: all 0.8s ease;
}

.heroBtn:hover {
    background: transparent;
    color: #4c83fa;
    box-shadow: 0 0 0px #4c83fa;
}

.heroBtn:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0px #4c83fa);
    z-index: 2;
}

.heroBtn:hover .star-2 {
    position: absolute;
    top: -0%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0px #4c83fa);
    z-index: 2;
}

.heroBtn:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0px #4c83fa);
    z-index: 2;
}

.heroBtn:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0px #4c83fa);
    z-index: 2;
}

.heroBtn:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0px #4c83fa);
    z-index: 2;
}

.heroBtn:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0px #4c83fa);
    z-index: 2;
}

.fil0 {
    fill: #4c83fa;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Screen Reader Only */
.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;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* .hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
} */

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-primary);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background-color: #f9fafb;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: #e9eff5;
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 15px 15px 30px #bebebe, -15px -15px 30px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* ========================================
   COMPANY SECTION
   ======================================== */
.company-section {
    padding: 3.5rem 0;
}

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

.company-text {
    padding-right: 2rem;
}

.company-visual {
    position: relative;
    overflow: hidden;
    background-image: url("/images/illustrations/about-page.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    border-radius: 1.5rem;
    padding: 2rem;
    min-height: 20rem;
    height: auto;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-visual:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.visual-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.visual-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.visual-text {
    color: #6b7280;
    font-weight: 500;
    font-size: 1.125rem;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, -20px) rotate(180deg);
    }
}

/* ========================================
   ANNOUNCEMENT SECTION
   ======================================== */
.announcement-section {
    padding: 3.5rem 0;
    background-color: #f9fafb;
}

.announcement-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.announcement-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.announcement-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.announcement-title::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
    border-radius: 2px;
}

.announcement-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
}

.announcement-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.announcement-content {
    position: relative;
    z-index: 1;
}

.announcement-salutation {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.announcement-body {
    margin-bottom: 2rem;
}

.announcement-body p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.announcement-body p:last-child {
    margin-bottom: 0;
}

.announcement-closing {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.announcement-signature-block {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.announcement-signoff {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.announcement-signature {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Announcement Section Responsive */
@media (max-width: 768px) {
    .announcement-section {
        padding: 2.5rem 0;
    }

    .announcement-card {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }

    .announcement-title {
        font-size: 1.75rem;
    }

    .announcement-salutation {
        font-size: 1rem;
    }

    .announcement-body p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .announcement-header {
        margin-bottom: 2rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background-color: #f9fafb;
    padding: 3.5rem 0;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.service-card .icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-accent), #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    flex-grow: 1;
}

/* ========================================
   EXPERTISE SECTION
   ======================================== */
.expertise-section {
    padding: 3.5rem 0;
}

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

.expertise-card {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.15) 0%,
        rgba(167, 139, 250, 0.2) 50%,
        rgba(196, 181, 253, 0.15) 100%
    );
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(167, 139, 250, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.25) 0%,
        rgba(167, 139, 250, 0.3) 50%,
        rgba(196, 181, 253, 0.25) 100%
    );
    box-shadow: 0 16px 24px -10px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    scale: 1.05;
}

.expertise-card h4 {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.expertise-media {
    width: 80px;
    height: 80px;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-media img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    display: block;
}

.expertise-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expertise-level.expert {
    background-color: #dcfce7;
    color: #166534;
}

.expertise-level.advanced {
    background-color: #dbeafe;
    color: #1e40af;
}

/* ========================================
   LEADERSHIP SECTION
   ======================================== */
.leadership-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.leadership-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 30% 20%,
            rgba(15, 98, 254, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(0, 67, 206, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.leadership-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateX(5deg) translateZ(20px);
}

.leadership-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-20px)
        translateZ(40px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 10px 20px -5px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(15, 98, 254, 0.1);
}

.leadership-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05);
    border-radius: 1.5rem 1.5rem 0 0;
    display: block;
    object-fit: contain;
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.08) translateZ(10px);
    filter: brightness(1.2) contrast(1.1);
}

.leadership-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.8) 0%,
        rgba(0, 67, 206, 0.8) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-card:hover .leadership-overlay {
    opacity: 1;
}

.leadership-social {
    display: flex;
    gap: 1rem;
}

.leadership-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.leadership-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.leadership-social i {
    font-size: 1.25rem;
}

.leadership-content {
    padding: 2rem;
}

.leadership-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.leadership-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leadership-bio {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background-color: #f9fafb;
    padding: 3.5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 80%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        );
    z-index: 0;
    pointer-events: none;
}

.cta-card > * {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: var(--color-accent);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-button:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-icon {
    font-size: 1.25rem;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   HOME PAGE LANDING STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3rem; /* careers-like height for non-home pages */
    display: flex;
    align-items: center;
}

/* About page hero background */
body[data-page="about"] .hero-section {
    background-image: url("/images/banners/banner-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 25rem;
    opacity: 0.8;
}

/* Home (landing) page keeps the larger hero */
body[data-page="home"] .hero-section {
    padding: 15rem 0 4rem;
    min-height: 90vh;
    align-items: flex-start;
    background-image: url("/images/banners/banner13.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    /* color: #2c2f34; */
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.hero-cta-btn.primary {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
}

.hero-cta-btn.primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.4);
}

.hero-cta-btn.secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.hero-cta-btn.secondary:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

/* Trusted By Section */
.trusted-section {
    padding: 3rem 0;
    background-color: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trusted-content {
    text-align: center;
}

.trusted-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trusted-logos-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.trusted-logos-scroll {
    display: flex;
    align-items: center;
    gap: 8rem;
    animation: scroll-horizontal 15s linear infinite;
    will-change: transform;
    /* width: fit-content; */
    flex-shrink: 0;
    /* margin: 0 auto; */
}

.trusted-logos-scroll:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    height: 60px;
    width: auto;
}

.client-logo {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
    display: block;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(calc(-25%));
    }
}

.logo-placeholder {
    padding: 0.75rem 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

/* Domains Section */
.domains-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.domain-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.domain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.domain-card:hover::before {
    transform: scaleX(1);
}

.domain-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 25px 50px -12px rgba(15, 98, 254, 0.25),
        0 10px 20px -5px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--color-accent);
    background: linear-gradient(145deg, #ffffff 0%, #e0f2fe 100%);
}

.domain-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-accent), #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.domain-card:hover .domain-icon {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 24px -4px rgba(15, 98, 254, 0.4);
}

.domain-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.domain-card p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: center;
    font-size: 0.9rem;
}

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
    background-color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 25px 50px -12px rgba(15, 98, 254, 0.25),
        0 10px 20px -5px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--color-accent);
    background: linear-gradient(145deg, #f8fafc 0%, #d3e8fd 100%);
}

.solution-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-accent), #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 24px -4px rgba(15, 98, 254, 0.4);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.solution-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.solution-features li {
    color: #6b7280;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: var(--color-accent-hover);
    transform: translateX(4px);
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card.featured {
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-status.available {
    background-color: #dcfce7;
    color: #166534;
}

.product-status.coming-soon {
    background-color: #fef3c7;
    color: #92400e;
}

.product-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.product-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background-color: #f1f5f9;
    color: #475569;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--color-accent-hover);
    transform: translateX(4px);
}

.product-link.disabled {
    color: #9ca3af;
    cursor: not-allowed;
}

.product-link.disabled:hover {
    transform: none;
}

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

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .company-text {
        padding-right: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Home page responsive */
    body[data-page="home"] .hero-section {
        padding: 5rem 0 3rem;
        min-height: 80vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trusted-logos-scroll {
        gap: 2rem;
    }

    .client-logo {
        max-height: 50px;
        max-width: 120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body[data-page="home"] .hero-section {
        padding: 2.5rem 0;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .company-section {
        padding: 2.5rem 0;
    }

    .company-visual {
        min-height: 16rem;
        padding: 1.5rem;
    }

    .visual-icon {
        font-size: 3rem;
    }

    .services-section {
        padding: 2.5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .expertise-section {
        padding: 2.5rem 0;
    }

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

    .leadership-section {
        padding: 2.5rem 0;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .leadership-card {
        transform: perspective(800px) rotateX(3deg) translateZ(15px);
    }

    .leadership-card:hover {
        transform: perspective(800px) rotateX(0deg) translateY(-15px)
            translateZ(30px);
    }

    .leadership-image {
        height: 300px;
    }

    .leadership-content {
        padding: 1.5rem;
    }

    .leadership-name {
        font-size: 1.25rem;
    }

    .leadership-title {
        font-size: 0.875rem;
    }

    .leadership-bio {
        font-size: 0.875rem;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-title {
        font-size: 1.875rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Home page mobile responsive */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .floating-elements {
        width: 200px;
        height: 200px;
    }

    .floating-element {
        width: 40px;
        height: 40px;
    }

    .floating-element i {
        font-size: 1rem;
    }

    .trusted-section {
        padding: 3rem 0;
    }

    .trusted-logos-scroll {
        gap: 1.5rem;
    }

    .client-logo {
        max-height: 45px;
        max-width: 100px;
    }

    .logo-placeholder {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .solutions-section,
    .products-section {
        padding: 3rem 0;
    }

    .solutions-grid,
    .domains-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-card,
    .domain-card,
    .product-card {
        padding: 2rem;
    }

    .solution-icon,
    .domain-icon,
    .product-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.25rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .company-visual {
        min-height: 12rem;
        padding: 1rem;
    }

    .visual-icon {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card .icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    /* Home page small mobile responsive */
    body[data-page="home"] .hero-section {
        padding: 2rem 0;
        min-height: 60vh;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .hero-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 160px;
    }

    .floating-elements {
        width: 150px;
        height: 150px;
    }

    .floating-element {
        width: 35px;
        height: 35px;
    }

    .floating-element i {
        font-size: 0.875rem;
    }

    .trusted-section {
        padding: 2rem 0;
    }

    .trusted-logos-scroll {
        gap: 1rem;
    }

    .client-logo {
        max-height: 40px;
        max-width: 80px;
    }

    .logo-placeholder {
        padding: 0.375rem 0.75rem;
        font-size: 0.625rem;
    }

    .solutions-section,
    .products-section {
        padding: 3rem 0;
    }

    .solution-card,
    .product-card {
        padding: 1.5rem;
    }

    .solution-icon,
    .product-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1rem;
        text-align: center;
    }

    .solution-card h3,
    .product-card h3 {
        font-size: 1.25rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.125rem 0.5rem;
    }
}

#demoText {
    background-color: var(--color-accent);
    color: var(--color-primary);
}
#demoText:hover {
    background-color: var(--color-accent-hover);
}

/* ===== HEADER STYLES ===== */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    z-index: 1010;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    max-width: 95vw;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    flex-shrink: 0;
}

.logo-link {
    position: relative;
    display: inline-block;
}

.logo {
    /* width: 125px; */
    height: 4rem;
    object-fit: contain;
    display: block;
}

/* Logo overlay for letter tooltips */
.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    pointer-events: none;
}

.letter-overlay {
    flex: 1;
    height: 100%;
    position: relative;
    pointer-events: auto;
    cursor: pointer;
}

.letter-overlay:hover {
    pointer-events: auto;
}

.letter-overlay .tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background-color: var(--color-text-primary);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.letter-overlay .tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--color-text-primary);
}

.letter-overlay:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link.active {
    color: var(--color-accent);
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 1px;
}

/* ===== DROPDOWN STYLES ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    min-width: 800px;
    max-width: 1200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 2rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-section {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dropdown-section + .dropdown-section {
    border-left: 1px solid var(--color-border);
    padding-left: 1.5rem;
}

.dropdown-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-accent);
    transform: translateX(4px);
}

.dropdown-link i {
    font-size: 1.125rem;
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

.dropdown-link:hover i {
    color: var(--color-accent-hover);
}

/* Language Selector - Creative Design */
.language-selector {
    display: flex;
    align-items: center;
    position: relative;
}

/* Hidden select for compatibility */
.lang-select-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Language Switcher Wrapper */
.lang-switcher-wrapper {
    position: relative;
}

/* Creative Language Switcher Button */
.lang-switcher-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    overflow: visible;
    z-index: 10;
}

.lang-switcher-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.98) 100%
    );
    border: 2px solid rgba(15, 98, 254, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(15, 98, 254, 0.08), 0 0 0 0 rgba(15, 98, 254, 0),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.lang-switcher-btn:hover .lang-switcher-content {
    border-color: rgba(15, 98, 254, 0.4);
    box-shadow: 0 8px 30px rgba(15, 98, 254, 0.2),
        0 0 0 4px rgba(15, 98, 254, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-2px) scale(1.02);
}

.lang-switcher-btn[aria-expanded="true"] .lang-switcher-content {
    border-color: rgba(15, 98, 254, 0.5);
    box-shadow: 0 12px 40px rgba(15, 98, 254, 0.25),
        0 0 0 6px rgba(15, 98, 254, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.02);
}

.lang-switcher-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(15, 98, 254, 0.15) 0%,
        rgba(15, 98, 254, 0) 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.lang-switcher-btn:hover .lang-switcher-bg {
    width: 120px;
    height: 120px;
}

.lang-switcher-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.lang-switcher-btn:hover .lang-switcher-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Flag Wrapper with Glow Effect */
.lang-flag-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(248, 250, 252, 0.9)
    );
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.lang-switcher-btn:hover .lang-flag-wrapper {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 16px rgba(15, 98, 254, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.lang-flag-emoji {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    position: relative;
}

.lang-switcher-btn:hover .lang-flag-emoji {
    transform: scale(1.1);
}

.lang-flag-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(15, 98, 254, 0.4) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.lang-switcher-btn:hover .lang-flag-glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.lang-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.lang-switcher-btn:hover .lang-name {
    color: var(--color-accent);
    transform: translateX(2px);
}

.lang-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.1),
        rgba(15, 98, 254, 0.05)
    );
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.lang-switcher-btn:hover .lang-arrow-container {
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.2),
        rgba(15, 98, 254, 0.1)
    );
    transform: scale(1.1);
}

.lang-arrow-icon {
    font-size: 0.9rem;
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-switcher-btn[aria-expanded="true"] .lang-arrow-icon {
    transform: rotate(180deg) scale(1.2);
}

/* Creative Dropdown */
.lang-dropdown-creative {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    min-width: 200px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.98) 100%
    );
    border: 2px solid rgba(15, 98, 254, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 8px 32px rgba(15, 98, 254, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.9) rotateX(-10deg);
    transform-origin: top right;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    overflow: hidden;
    perspective: 1000px;
}

.lang-dropdown-creative.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.lang-dropdown-header {
    position: relative;
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(15, 98, 254, 0.1);
    overflow: hidden;
}

.lang-dropdown-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s;
}

.lang-dropdown-creative.show .lang-dropdown-title {
    opacity: 1;
    transform: translateY(0);
}

.lang-dropdown-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), #4c83fa);
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lang-dropdown-creative.show .lang-dropdown-accent {
    width: 100%;
}

.lang-options-container {
    padding: 0.5rem;
}

/* Creative Language Option */
.lang-option-creative {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 0.25rem;
}

.lang-option-creative:last-child {
    margin-bottom: 0;
}

.lang-option-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.08) 0%,
        rgba(15, 98, 254, 0.04) 100%
    );
    border-radius: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.lang-option-creative:hover .lang-option-bg {
    opacity: 1;
    transform: scale(1);
}

.lang-option-creative.active .lang-option-bg {
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(
        135deg,
        rgba(15, 98, 254, 0.15) 0%,
        rgba(15, 98, 254, 0.08) 100%
    );
}

.lang-option-content {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    z-index: 2;
}

.lang-option-flag-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9),
        rgba(248, 250, 252, 0.9)
    );
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.lang-option-creative:hover .lang-option-flag-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(15, 98, 254, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.lang-option-flag {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    position: relative;
}

.lang-option-creative:hover .lang-option-flag {
    transform: scale(1.15);
}

.lang-option-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(15, 98, 254, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.lang-option-creative:hover .lang-option-ripple {
    width: 60px;
    height: 60px;
}

.lang-option-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.lang-option-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.lang-option-creative:hover .lang-option-name {
    color: var(--color-accent);
    transform: translateX(3px);
}

.lang-option-creative.active .lang-option-name {
    color: var(--color-accent);
}

.lang-option-code {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.lang-option-creative:hover .lang-option-code {
    color: var(--color-accent);
}

.lang-option-indicator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #4c83fa);
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(15, 98, 254, 0.3);
}

.lang-option-creative.active .lang-option-indicator {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.lang-option-creative:hover .lang-option-indicator {
    transform: scale(1.1);
}

/* Click outside to close */
.lang-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: transparent;
    display: none;
}

.lang-dropdown-overlay.show {
    display: block;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: var(--color-secondary);
}

/* Mobile Navigation */
.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-accent);
}

.mobile-nav-link.active {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-nav-link.active:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-primary);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* ===== MOBILE DROPDOWN STYLES ===== */
.mobile-dropdown {
    border-bottom: 1px solid var(--color-border);
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-dropdown-trigger:hover {
    background-color: var(--color-secondary);
    color: var(--color-accent);
}

.mobile-dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-secondary);
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-section {
    padding: 0.5rem 0;
}

.mobile-dropdown-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin: 0.75rem 1.5rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown-link:hover {
    background-color: rgba(15, 98, 254, 0.1);
    color: var(--color-accent);
    border-left-color: var(--color-accent);
}

.mobile-dropdown-link i {
    font-size: 1rem;
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

/* Mobile Language Selector */
.mobile-language-selector {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.mobile-lang-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    font-size: 1rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .language-selector {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .header-content {
        padding: 1rem;
    }

    .logo {
        height: 3rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .header-content {
        padding: 0.75rem;
    }
}

/* Hamburger Animation */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== CONTACT PAGE STYLES ===== */

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

/* Contact Hero Section */
.contact-hero {
    background-image: url("/images/banners/banner-4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0 3rem;
    text-align: center;
    height: 25rem;
    opacity: 0.8;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 1rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
    background-color: var(--color-primary);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-primary);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.form-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-label {
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--color-text-primary);
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    font-family: var(--font-poppins);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-input {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-text {
    color: var(--color-text-secondary);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-hover) 100%
    );
    color: var(--color-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Locations Section */
.locations-section {
    padding: 3rem 0;
    background-color: var(--color-secondary);
}

.locations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.locations-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background-color: var(--color-primary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card .location-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: saturate(0.9) contrast(0.9);
    z-index: 0;
}

.location-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-card > *:not(.location-bg) {
    position: relative;
    z-index: 1;
}

.location-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.location-address {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1.2rem;
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--color-accent);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background-color: var(--color-primary);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.map-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}

.google-map {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-title {
        font-size: 1.875rem;
    }

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

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .locations-title,
    .map-title {
        font-size: 2rem;
    }

    .google-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .location-card {
        padding: 1.25rem;
    }

    .location-name {
        font-size: 1.25rem;
    }

    .google-map {
        height: 250px;
    }
}

/* ===== CAREERS PAGE STYLES ===== */
.careers-hero {
    background-image: url("/images/banners/banner-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3rem;
    text-align: center;
    height: 25rem;
    opacity: 0.8;
}

.careers-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.careers-hero .hero-subtitle {
    color: var(--color-text-primary);
    line-height: 1.3;
}

.careers-hero .hero-description {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
}

.hero-cta-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.4);
    color: white;
}

.hero-cta-btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

/* Mission Section */
.mission-section {
    padding: 4.5rem 0;
    background-color: var(--color-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-accent), #3b82f6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.value-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4.5rem 0;
    background-color: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    z-index: 10;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-accent), #3b82f6);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.25rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Grid Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Technical Grid Section */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.technical-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.technical-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6d28d9);
}

.technical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.technical-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.technical-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.technical-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Positions Section */
.positions-section {
    padding: 4.5rem 0;
    background-color: var(--color-primary);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-accent),
        var(--color-accent-hover)
    );
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.job-header {
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.job-department,
.job-location,
.job-type {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-department {
    background-color: #dbeafe;
    color: #1e40af;
}

.job-location {
    background-color: #dcfce7;
    color: #166534;
}

.job-type {
    background-color: #fef3c7;
    color: #92400e;
}

.job-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-requirements h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.job-requirements {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.job-requirements li {
    color: #6b7280;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.job-requirements li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.apply-btn:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.apply-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.apply-btn:hover i {
    transform: translateX(4px);
}

/* Careers Contact Section */
.careers-contact-section {
    padding: 4.5rem 0;
    background-color: #f9fafb;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.careers-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.success-message {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 1px solid #22c55e;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
    animation: slideIn 0.5s ease;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #166534;
}

.success-icon {
    font-size: 1.5rem;
    color: #22c55e;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Careers */
@media (max-width: 1024px) {
    .careers-hero .hero-title {
        font-size: 3.5rem;
    }

    .careers-hero .hero-subtitle {
        font-size: 1.75rem;
    }

    .values-grid,
    .benefits-grid,
    .positions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 4rem 0 3rem;
    }

    .careers-hero .hero-title {
        font-size: 2.5rem;
    }

    .careers-hero .hero-subtitle {
        font-size: 1.5rem;
    }

    .careers-hero .hero-description {
        font-size: 1.125rem;
    }

    .mission-section,
    .benefits-section,
    .positions-section,
    .careers-contact-section {
        padding: 4rem 0;
    }

    .values-grid,
    .benefits-grid,
    .positions-grid,
    .features-grid,
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card,
    .benefit-card,
    .job-card,
    .feature-card,
    .technical-card {
        padding: 1.5rem;
    }

    .job-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .careers-hero .hero-title {
        font-size: 2rem;
    }

    .careers-hero .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .value-card,
    .benefit-card,
    .job-card {
        padding: 1.25rem;
    }

    .job-title {
        font-size: 1.25rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

/* Products Hero Section */
.products-hero {
    background-image: url("/images/banners/banner-3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0 3rem; /* align height with careers hero */
    position: relative;
    overflow: hidden;
    height: 25rem;
    opacity: 0.8;
}

.products-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.products-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.products-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    max-width: 48rem;
    margin: auto 0;
    line-height: 1.6;
}

.products-hero .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.products-hero .hero-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    justify-content: center;
}

.products-hero .hero-cta-btn:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.products-hero .hero-cta-btn.secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.products-hero .hero-cta-btn.secondary:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

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

/* Additional Services */
.additional-services {
    margin-top: 4rem;
    text-align: center;
}

.additional-services-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.additional-services-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.additional-services-text {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Products CTA Section */
.products-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f62fe 0%, #6366f1 50%, #8b5cf6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.products-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.products-cta-section .cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.products-cta-section .cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.products-cta-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background-color: white;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    justify-content: center;
}

.btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    min-width: 160px;
    justify-content: center;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--color-accent);
}

.product-image {
    flex-shrink: 0;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    margin: 1rem 0;
}

.product-content p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.product-content ul {
    margin-bottom: 1.5rem;
}

.product-content a {
    margin-top: auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--color-accent);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(
        135deg,
        var(--color-accent) 0%,
        var(--color-accent-hover) 100%
    );
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: white;
}

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

.service-card p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-card ul {
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-card a {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero {
        padding: 3rem 0;
    }

    .products-hero .hero-title {
        font-size: 2.5rem;
    }

    .products-hero .hero-subtitle {
        font-size: 1.125rem;
    }

    .products-hero .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .products-section,
    .services-section,
    .products-cta-section {
        padding: 3rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card,
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 4rem;
        height: 4rem;
    }

    .additional-services-card {
        padding: 2rem;
    }

    .products-cta-section .cta-title {
        font-size: 2rem;
    }

    .products-cta-section .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .products-hero .hero-title {
        font-size: 2rem;
    }

    .products-hero .hero-subtitle {
        font-size: 1rem;
    }

    .product-card,
    .service-card {
        padding: 1rem;
    }

    .service-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .additional-services-card {
        padding: 1.5rem;
    }

    .products-cta-section .cta-title {
        font-size: 1.75rem;
    }
}

/* Cloud Engineering Services Styles */
.overview-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.overview-text {
    max-width: 600px;
}

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

.visual-content {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.visual-icon {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
}

.visual-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.benefits-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Enhanced Service Cards for Cloud Engineering */
.services-section .service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-section .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
}

.services-section .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-section .service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.services-section .service-icon i {
    font-size: 2rem;
    color: white;
}

.services-section .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.services-section .service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-section .service-card ul {
    margin-bottom: 2rem;
}

.services-section .service-card li {
    font-size: 0.95rem;
    color: #475569;
}

/* Responsive Design for Cloud Engineering Services */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .overview-section {
        padding: 3rem 0;
    }

    .overview-content {
        gap: 2rem;
    }

    .visual-content {
        padding: 2rem;
    }

    .visual-icon {
        font-size: 3rem;
    }

    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-grid,
    .features-grid,
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card,
    .feature-card,
    .technical-card {
        padding: 1.5rem;
    }

    .services-section .service-card {
        padding: 2rem;
    }

    .services-section .service-icon {
        width: 4rem;
        height: 4rem;
    }

    .services-section .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .overview-section {
        padding: 2rem 0;
    }

    .visual-content {
        padding: 1.5rem;
    }

    .visual-icon {
        font-size: 2.5rem;
    }

    .visual-text {
        font-size: 1rem;
    }

    .benefits-section {
        padding: 2rem 0;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .benefit-icon i {
        font-size: 1.25rem;
    }

    .services-section .service-card {
        padding: 1.5rem;
    }

    .services-section .service-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .services-section .service-icon i {
        font-size: 1.25rem;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background-color: #000000;
    color: #ffffff;
    margin-top: 1rem;
    padding: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-link:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-social {
        margin-top: 1rem;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 2.5rem 1.25rem 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-section:last-child {
        grid-column: 1;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }
}
